From 511f82398e1cf8fb368be0668b69a19906810484 Mon Sep 17 00:00:00 2001 From: Patrick Georgi Date: Fri, 31 Oct 2014 16:48:00 +0100 Subject: 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 Reviewed-on: http://review.coreboot.org/7297 Tested-by: build bot (Jenkins) Reviewed-by: Edward O'Callaghan --- util/abuild/abuild | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util/abuild') diff --git a/util/abuild/abuild b/util/abuild/abuild index b72e2127a8..72606c185b 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -286,8 +286,8 @@ function build_target create_buildenv $VENDOR $MAINBOARD $CONFIG required_arches=`egrep "^CONFIG_ARCH_(BOOTBLOCK|R.MSTAGE)" $TARGET/${VENDOR}_${MAINBOARD}/config.build | \ - sed "s,^CONFIG_ARCH_[^_]*_\([^=]*\)=.*$,\1," |sort -u |tr 'A-Z' 'a-z'` - missing_arches=`printf 'include .xcompile\nall: ; @echo $(foreach arch,'$required_arches',$(if $(filter $(arch),$(ARCH_SUPPORTED)),,$(arch)))' | make -f -` + sed "s,^CONFIG_ARCH_[^_]*_\([^=]*\)=.*$,\1," |sort -u |tr 'A-Z\n\r' 'a-z '` + missing_arches=`printf 'include .xcompile\nall: ; @echo $(foreach arch,'"$required_arches"',$(if $(filter $(arch),$(SUBARCH_SUPPORTED)),,$(arch)))' | make -f -` if [ -n "$missing_arches" ]; then printf "skipping $VENDOR/$MAINBOARD because we're missing compilers for ($missing_arches)\n" return -- cgit v1.2.3