diff options
| author | Holger Freyther <zecke@selfish.org> | 2006-05-13 23:13:07 +0000 |
|---|---|---|
| committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2006-05-13 23:13:07 +0000 |
| commit | 79fab119b4a5f7c60ed7a4258e6e9edcec030dfe (patch) | |
| tree | 11865788dbe63185e8d3684d5e5c2ba2b910d54f /classes | |
| parent | 1278bc5aa577e5173dea17eac411021e62968291 (diff) | |
| parent | 256c08151ca26ef134d9ffc6919ba0b2bbdb4e62 (diff) | |
merge of 10e936f740ef32098dd4610aa27ba7185cd6085d
and 82c13a21dde3f0f2d3f5d69aa63c1c1f3b51d38e
Diffstat (limited to 'classes')
| -rw-r--r-- | classes/native.bbclass | 14 |
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}" |
