Ross, I suppose you mean "
icc_is_allarch()" ?
Ok , so this recipe does inherit allarch but it is sort of
nativesdk, and when the test icc_is_allarch() checks for the value
of 'PACKAGE_ARCH', it gets "buildtools-dummy-${SDKPKGSUFFIX}" (which
should expand to 'buildtools-dummy-nativesdk', but doesn't) instead
of the expected "all".
I am now modifying this test to check for an inherit of allarch, and
playing a bit with this. I'll keep you posted.
Other stuff to consider:
- Expand the value of PACKAGE_ARCH if necessary? I am doing it now
as part of my tests but not sure I will be committing this:
package_arch = d.getVar("PACKAGE_ARCH", False)
if '${' in package_arch:
package_arch = d.expand(package_arch)
...
- All of these functions in the icecc.bbclass that incude "icc" in
their names, should probably be modified to say "icecc" instead. As
it stands now, it can cause confusion as some people might think
we're talking about the intel c compiler rather than the icecream
compiler - I wonder if there's a bug for this already
Alex Franco
On 03/22/2016 10:45 AM, Burton, Ross
wrote: