Martin L Roth has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/69626 )
Change subject: DO NOT MERGE: Disable clang cros build ......................................................................
DO NOT MERGE: Disable clang cros build
Signed-off-by: Martin Roth gaumless@gmail.com Change-Id: Ie92c0144481562b7579bced6ac23813b914b10c5 --- M util/abuild/abuild 1 file changed, 16 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/26/69626/1
diff --git a/util/abuild/abuild b/util/abuild/abuild index 43dd833..75dda18 100755 --- a/util/abuild/abuild +++ b/util/abuild/abuild @@ -750,6 +750,9 @@ clang=true customizing="${customizing}, clang" configoptions="${configoptions}CONFIG_COMPILER_LLVM_CLANG=y\n# CONFIG_COMPILER_GCC is not set\n" + if [ "${chromeos}" = "true" ]; then + exit 0 + fi ;; -z|--clean) shift customizing="${customizing}, clean" @@ -767,6 +770,9 @@ testclass=chromeos customizing="${customizing}, chromeos" configoptions="${configoptions}CONFIG_CHROMEOS=y\nCONFIG_VBOOT_MEASURED_BOOT=y\n" + if [ "${clang}" = "true" ]; then + exit 0 + fi ;; -X|--xmlfile) shift; XMLFILE=$1; REAL_XMLFILE=$1; shift;; -I|--recursive) shift; recursive=true;;