diff options
author | Patrick Georgi <pgeorgi@google.com> | 2014-10-31 16:48:00 +0100 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2014-11-04 17:28:42 +0100 |
commit | 511f82398e1cf8fb368be0668b69a19906810484 (patch) | |
tree | bf0a6cfe17609c9b81d17c12d38b36c357aa43e3 /util/xcompile | |
parent | ae6685fe4fb35d751fd56658517ac07068e52b3f (diff) |
abuild: fix cross compiler test
Actually abort if a cross compiler is missing, but also handle
subarchitectures (currently: armv4 and armv7 for arm)
properly.
Change-Id: Idf37fb029178df6f2ac029466c66aaa2010bdbd2
Signed-off-by: Patrick Georgi <pgeorgi@google.com>
Reviewed-on: http://review.coreboot.org/7297
Tested-by: build bot (Jenkins)
Reviewed-by: Edward O'Callaghan <eocallaghan@alterapraxis.com>
Diffstat (limited to 'util/xcompile')
-rwxr-xr-x | util/xcompile/xcompile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/util/xcompile/xcompile b/util/xcompile/xcompile index e498cc0829..7bb6e4c93d 100755 --- a/util/xcompile/xcompile +++ b/util/xcompile/xcompile @@ -151,6 +151,7 @@ report_arch_toolchain() { cat <<EOF # elf${TWIDTH}-${TBFDARCH} toolchain (${GCCPREFIX}gcc) ARCH_SUPPORTED+=${TARCH} +SUBARCH_SUPPORTED+=${TSUPP-${TARCH}} CC_${TARCH}:=${GCCPREFIX}gcc CFLAGS_${TARCH}:=${CFLAGS} CPP_${TARCH}:=${GCCPREFIX}cpp @@ -174,6 +175,7 @@ arch_config_arm() { TBFDARCH="littlearm" TCLIST="armv7a armv7-a" TWIDTH="32" + TSUPP="arm armv4 armv7" TABI="eabi" } |