summaryrefslogtreecommitdiffstats
path: root/openembedded/classes/native.bbclass
diff options
context:
space:
mode:
authorRichard Purdie <richard@openedhand.com>2006-05-27 21:49:50 +0000
committerRichard Purdie <richard@openedhand.com>2006-05-27 21:49:50 +0000
commit3097ab0f62233dc336dfe611fef4b8b633355190 (patch)
tree8173abc003c9703cf625d4e100f57d3d5141177d /openembedded/classes/native.bbclass
parentb77fcc05cacdf70819cc226d53156a9e70e84e04 (diff)
downloadpoky-3097ab0f62233dc336dfe611fef4b8b633355190.tar.gz
Sync conf and classes with OE - changes have been tested and don't affect poky
git-svn-id: https://svn.o-hand.com/repos/poky/trunk@446 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/classes/native.bbclass')
-rw-r--r--openembedded/classes/native.bbclass14
1 files changed, 14 insertions, 0 deletions
diff --git a/openembedded/classes/native.bbclass b/openembedded/classes/native.bbclass
index 011e48cf62..04ff7d92d1 100644
--- a/openembedded/classes/native.bbclass
+++ b/openembedded/classes/native.bbclass
@@ -36,6 +36,20 @@ CXXFLAGS = "${BUILD_CFLAGS}"
36LDFLAGS = "${BUILD_LDFLAGS}" 36LDFLAGS = "${BUILD_LDFLAGS}"
37LDFLAGS_build-darwin = "-L${STAGING_DIR}/${BUILD_SYS}/lib " 37LDFLAGS_build-darwin = "-L${STAGING_DIR}/${BUILD_SYS}/lib "
38 38
39
40# set the compiler as well. It could have been set to something else
41export CC = "${CCACHE}${HOST_PREFIX}gcc ${HOST_CC_ARCH}"
42export CXX = "${CCACHE}${HOST_PREFIX}g++ ${HOST_CC_ARCH}"
43export F77 = "${CCACHE}${HOST_PREFIX}g77 ${HOST_CC_ARCH}"
44export CPP = "${HOST_PREFIX}gcc -E"
45export LD = "${HOST_PREFIX}ld"
46export CCLD = "${CC}"
47export AR = "${HOST_PREFIX}ar"
48export AS = "${HOST_PREFIX}as"
49export RANLIB = "${HOST_PREFIX}ranlib"
50export STRIP = "${HOST_PREFIX}strip"
51
52
39# Path prefixes 53# Path prefixes
40base_prefix = "${exec_prefix}" 54base_prefix = "${exec_prefix}"
41prefix = "${STAGING_DIR}" 55prefix = "${STAGING_DIR}"