aboutsummaryrefslogtreecommitdiffstats
path: root/conf/bitbake.conf
diff options
context:
space:
mode:
authorTom Rini <trini@embeddedalley.com>2009-01-16 21:53:13 -0500
committerTom Rini <trini@embeddedalley.com>2009-01-16 21:53:13 -0500
commitb987a6e62b85d6f50b5a802e12c170ca269a1f2e (patch)
treeb9af8fcc43bda1c049a699bd63042af88388e79b /conf/bitbake.conf
parent3532e24edd8090b53f3bc7eea888349e5845f291 (diff)
parent00f5fabc4b27f0c458b02b12e2fd340b6d5087a4 (diff)
downloadopenembedded-b987a6e62b85d6f50b5a802e12c170ca269a1f2e.tar.gz
Merge branch 'rpurdie/canadian-sofar' into org.openembedded.dev
Diffstat (limited to 'conf/bitbake.conf')
-rw-r--r--conf/bitbake.conf6
1 files changed, 6 insertions, 0 deletions
diff --git a/conf/bitbake.conf b/conf/bitbake.conf
index 87081739fb..3646522d93 100644
--- a/conf/bitbake.conf
+++ b/conf/bitbake.conf
@@ -71,6 +71,7 @@ BUILD_VENDOR = ""
BUILD_SYS = "${BUILD_ARCH}${BUILD_VENDOR}-${BUILD_OS}"
BUILD_PREFIX = ""
BUILD_CC_ARCH = ""
+BUILD_EXEEXT = ""
HOST_ARCH = "${TARGET_ARCH}"
HOST_OS = "${TARGET_OS}"
@@ -78,6 +79,7 @@ HOST_VENDOR = "${TARGET_VENDOR}"
HOST_SYS = "${HOST_ARCH}${HOST_VENDOR}-${HOST_OS}"
HOST_PREFIX = "${TARGET_PREFIX}"
HOST_CC_ARCH = "${TARGET_CC_ARCH}"
+HOST_EXEEXT = ""
TARGET_ARCH ?= "INVALID"
TARGET_OS = "INVALID"
@@ -85,6 +87,10 @@ TARGET_VENDOR = "${BUILD_VENDOR}"
TARGET_SYS = "${TARGET_ARCH}${TARGET_VENDOR}${@['-' + bb.data.getVar('TARGET_OS', d, 1), ''][bb.data.getVar('TARGET_OS', d, 1) == ('' or 'custom')]}"
TARGET_PREFIX = "${TARGET_SYS}-"
TARGET_CC_ARCH = ""
+TARGET_EXEEXT = ""
+
+# A shortcut for the commonly used value
+EXEEXT = "${HOST_EXEEXT}"
BASE_PACKAGE_ARCH = "${HOST_ARCH}"
PACKAGE_ARCH = "${BASE_PACKAGE_ARCH}"