aboutsummaryrefslogtreecommitdiff
path: root/variants
diff options
context:
space:
mode:
authorRyan Harkin <ryan.harkin@linaro.org>2015-05-22 16:48:21 +0100
committerRyan Harkin <ryan.harkin@linaro.org>2015-05-22 17:23:08 +0100
commite73c6e7d8e7960ea3c7c1fe62e61faa486599c8a (patch)
tree45d9b8fa3419b6e50431bb56e3f88105e8431467 /variants
parent0dd468e262265926e0684a6f9234a187b1664f2c (diff)
Use CROSS_COMPILE instead of LINUX_COMPILERarmlt-20150522gcc-path15.05
Use the "standard" CROSS_COMPILE prefix, with a sensible default, rather than the LINUX_COMPILER variable. If the user has the Linaro compiler on their path, it should "just work". Signed-off-by: Ryan Harkin <ryan.harkin@linaro.org>
Diffstat (limited to 'variants')
-rw-r--r--variants/juno-oe6
1 files changed, 4 insertions, 2 deletions
diff --git a/variants/juno-oe b/variants/juno-oe
index fbdda7b..81f1d1c 100644
--- a/variants/juno-oe
+++ b/variants/juno-oe
@@ -28,8 +28,10 @@
VARIANT_DESC="Juno LSK kernel for OpenEmbedded Software Stack"
-# Path to the aarch64 GCC compoiler binaries (plus prefix) relative to the workspace root
-LINUX_COMPILER=../tools/gcc/gcc-linaro-4.9-2014.11-x86_64_aarch64-linux-gnu/bin/aarch64-linux-gnu-
+# Absolute path to the aarch64 GCC compoiler binaries (plus prefix)
+# If you wish to specify a path relative to the workspace root, prefix it with "$TOP_DIR/"
+# If your compiler is on your path, you can simply add the prefix, as per the default example.
+export CROSS_COMPILE=${CROSS_COMPILE:-aarch64-linux-gnu-}
BUILD_SCRIPTS=""
LINUX_BUILD_ENABLED=1