aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Freyther <zecke@selfish.org>2006-05-13 23:10:32 +0000
committerOpenEmbedded Project <openembedded-devel@lists.openembedded.org>2006-05-13 23:10:32 +0000
commit256c08151ca26ef134d9ffc6919ba0b2bbdb4e62 (patch)
treedb290a4636db9791518d1dc929679668d6e2ca6c
parent3a91da80ac6061e46fe4b407035936995a2e86ff (diff)
downloadopenembedded-256c08151ca26ef134d9ffc6919ba0b2bbdb4e62.tar.gz
classes/native.bbclass:
Change the CC, CXX, CPP... variables back to gcc. Someone could have changed them in the bitbake.conf to use a specific version of any of these tools. e.g. when using a provided toolchain instead of compiling one with OpenEmbedded.
-rw-r--r--classes/native.bbclass14
1 files changed, 14 insertions, 0 deletions
diff --git a/classes/native.bbclass b/classes/native.bbclass
index 011e48cf62..04ff7d92d1 100644
--- a/classes/native.bbclass
+++ b/classes/native.bbclass
@@ -36,6 +36,20 @@ CXXFLAGS = "${BUILD_CFLAGS}"
LDFLAGS = "${BUILD_LDFLAGS}"
LDFLAGS_build-darwin = "-L${STAGING_DIR}/${BUILD_SYS}/lib "
+
+# set the compiler as well. 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"
+
+
# Path prefixes
base_prefix = "${exec_prefix}"
prefix = "${STAGING_DIR}"