[OE-core] [oe-commits] Richard Purdie : cross-canadian: Handle powerpc linux verses linux-gnuspe

David Nyström david.nystrom at enea.com
Fri Jan 10 12:51:27 UTC 2014


On 2013-11-01 18:49, git at git.openembedded.org wrote:
> Module: openembedded-core.git
> Branch: master-next
> Commit: a1d6331238982b0c5d39b0a18794f6654b00d46a
> URL:    http://git.openembedded.org/?p=openembedded-core.git&a=commit;h=a1d6331238982b0c5d39b0a18794f6654b00d46a
>
> Author: Richard Purdie <richard.purdie at linuxfoundation.org>
> Date:   Thu Oct 17 12:22:35 2013 +0100
>
> cross-canadian: Handle powerpc linux verses linux-gnuspe
>
> PowerPC toolchains can use the OS "linux" or "linux-gnuspe". This
> patch links them together so the one cross-canadian toolchain can support
> both.
>
> GCC_FOR_TARGET is set for the GCC recipe as otherwise configure
> can pick up an incorrect value.
>
> [YOCTO #5354]
>
> Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
> Signed-off-by: Saul Wold <sgw at linux.intel.com>
>

> --- a/meta/classes/cross-canadian.bbclass
> +++ b/meta/classes/cross-canadian.bbclass
> @@ -15,12 +15,30 @@ STAGING_BINDIR_TOOLCHAIN = "${STAGING_DIR_NATIVE}${bindir_native}/${SDK_ARCH}${S
>   # Update BASE_PACKAGE_ARCH and PACKAGE_ARCHS
>   #
>   PACKAGE_ARCH = "${SDK_ARCH}-${SDKPKGSUFFIX}"
> +CANADIANEXTRAOS = ""
>   python () {
>       archs = d.getVar('PACKAGE_ARCHS', True).split()
>       sdkarchs = []
>       for arch in archs:
>           sdkarchs.append(arch + '-${SDKPKGSUFFIX}')
>       d.setVar('PACKAGE_ARCHS', " ".join(sdkarchs))
> +
> +    # PowerPC can build "linux" and "linux-gnuspe"
> +    tarch = d.getVar("TARGET_ARCH", True)
> +    if tarch == "powerpc":
> +        tos = d.getVar("TARGET_OS", True)
> +        if (tos != "linux" and tos != "linux-gnuspe"):
> +            bb.fatal("Building cross-candian powerpc for an unknown TARGET_SYS (%s), please update cross-canadian.bbclass" % d.getVar("TARGET_SYS", True))
> +        # Have to expand DEPENDS before we change the extensions
> +        d.setVar("DEPENDS", d.getVar("DEPENDS", True))
> +        d.setVar("STAGING_BINDIR_TOOLCHAIN", d.getVar("STAGING_BINDIR_TOOLCHAIN", True))
> +        for prefix in ["AR", "AS", "DLLTOOL", "CC", "CXX", "GCC", "LD", "LIPO", "NM", "OBJDUMP", "RANLIB", "STRIP", "WINDRES"]:
> +            n = prefix + "_FOR_TARGET"
> +            d.setVar(n, d.getVar(n, True))
> +
> +        d.setVar("LIBCEXTENSION", "")
> +        d.setVar("ABIEXTENSION", "")
> +        d.setVar("CANADIANEXTRAOS", "linux-gnuspe")
>   }


Hi,

I believe this commit is the cause of some problems I'm seeing with ppc 
SDK toolchain tarballs on poky master.

1. Looks like the relocation scripts fails for environments:

~/tests/poky [master]
$ cat /opt/oel/2014-01-01/environment-setup-ppce500v2-oel-linux | grep "#"
export SDKTARGETSYSROOT=##SDKTARGETSYSROOT##

~/tests/poky [master]
$ cat /opt/oel/2014-01-01/environment-setup-ppce500v2-oel-linux-gnuspe | 
grep "#"

2. SDK gnuspe compiler does not allow -mabi=spe
ABIEXTENSION is zeroed both for linux-gnuspe and linux

3. Compiler can't create executables.
I think this is due to libgcc_s.so from the SDK target sysroot is in 
mabi=spe.

4. -mspe is included in CC var for both linux and gnuspe.

cat /opt/oel/2014-01-01/environment-setup-ppce500v2-oel-linux | grep mabi
export CC="powerpc-oel-linux-gcc  -m32 -mcpu=8548 -mabi=spe -mspe 
-mfloat-gprs=double --sysroot=$SDKTARGETSYSROOT"
export CXX="powerpc-oel-linux-g++  -m32 -mcpu=8548 -mabi=spe -mspe 
-mfloat-gprs=double --sysroot=$SDKTARGETSYSROOT"
export CPP="powerpc-oel-linux-gcc -E  -m32 -mcpu=8548 -mabi=spe -mspe 
-mfloat-gprs=double --sysroot=$SDKTARGETSYSROOT"

Seems to work in dora though,

Any thoughts on this ?

Br,
David




More information about the Openembedded-core mailing list