summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--meta/classes-recipe/native.bbclass28
1 files changed, 14 insertions, 14 deletions
diff --git a/meta/classes-recipe/native.bbclass b/meta/classes-recipe/native.bbclass
index febb4b6001..625975a694 100644
--- a/meta/classes-recipe/native.bbclass
+++ b/meta/classes-recipe/native.bbclass
@@ -53,20 +53,20 @@ PTEST_ENABLED = "0"
53export CONFIG_SITE = "${COREBASE}/meta/site/native" 53export CONFIG_SITE = "${COREBASE}/meta/site/native"
54 54
55# set the compiler as well. It could have been set to something else 55# set the compiler as well. It could have been set to something else
56export CC = "${BUILD_CC}" 56CC = "${BUILD_CC}"
57export CXX = "${BUILD_CXX}" 57CXX = "${BUILD_CXX}"
58export FC = "${BUILD_FC}" 58FC = "${BUILD_FC}"
59export CPP = "${BUILD_CPP}" 59CPP = "${BUILD_CPP}"
60export LD = "${BUILD_LD}" 60LD = "${BUILD_LD}"
61export CCLD = "${BUILD_CCLD}" 61CCLD = "${BUILD_CCLD}"
62export AR = "${BUILD_AR}" 62AR = "${BUILD_AR}"
63export AS = "${BUILD_AS}" 63AS = "${BUILD_AS}"
64export RANLIB = "${BUILD_RANLIB}" 64RANLIB = "${BUILD_RANLIB}"
65export STRIP = "${BUILD_STRIP}" 65STRIP = "${BUILD_STRIP}"
66export NM = "${BUILD_NM}" 66NM = "${BUILD_NM}"
67export OBJCOPY = "${BUILD_OBJCOPY}" 67OBJCOPY = "${BUILD_OBJCOPY}"
68export OBJDUMP = "${BUILD_OBJDUMP}" 68OBJDUMP = "${BUILD_OBJDUMP}"
69export READELF = "${BUILD_READELF}" 69READELF = "${BUILD_READELF}"
70 70
71# Path prefixes 71# Path prefixes
72base_prefix = "${STAGING_DIR_NATIVE}" 72base_prefix = "${STAGING_DIR_NATIVE}"