diff options
author | Richard Purdie <richard@openedhand.com> | 2007-11-23 10:07:56 +0000 |
---|---|---|
committer | Richard Purdie <richard@openedhand.com> | 2007-11-23 10:07:56 +0000 |
commit | 8ec24bc6ec123e505cf2621a160614bc3a69756f (patch) | |
tree | 4c7a4bb9979e7ad5fc9456d3db4e7fb3b7dc9518 /meta/classes | |
parent | e50291290b0b2a2fa3698d35750546b80a5c9fea (diff) | |
download | openembedded-core-8ec24bc6ec123e505cf2621a160614bc3a69756f.tar.gz openembedded-core-8ec24bc6ec123e505cf2621a160614bc3a69756f.tar.bz2 openembedded-core-8ec24bc6ec123e505cf2621a160614bc3a69756f.zip |
cross.bbclass: Explicitly set the compiler in the same way as native.bbclass, otherwise TOOLCHAIN_OPTIONS can interfer
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@3212 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'meta/classes')
-rw-r--r-- | meta/classes/cross.bbclass | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/meta/classes/cross.bbclass b/meta/classes/cross.bbclass index 6e5480a2a0..42a6253723 100644 --- a/meta/classes/cross.bbclass +++ b/meta/classes/cross.bbclass @@ -20,6 +20,19 @@ CXXFLAGS = "${BUILD_CFLAGS}" LDFLAGS = "${BUILD_LDFLAGS}" LDFLAGS_build-darwin = "-L${STAGING_LIBDIR_NATIVE}" +# Set the compiler. It could have been set to something else +export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}" +export CXX = "${CCACHE}${HOST_PREFIX}g++ ${HOST_CC_ARCH}" +export F77 = "${CCACHE}${HOST_PREFIX}g77 ${HOST_CC_ARCH}" +export CPP = "${HOST_PREFIX}gcc -E" +export LD = "${HOST_PREFIX}ld" +export CCLD = "${CC}" +export AR = "${HOST_PREFIX}ar" +export AS = "${HOST_PREFIX}as" +export RANLIB = "${HOST_PREFIX}ranlib" +export STRIP = "${HOST_PREFIX}strip" + + # Overrides for paths # Path prefixes |