From ae36fa5c9133b271a0f5ea0a8b6e531321b692f3 Mon Sep 17 00:00:00 2001 From: Marc Herbert Date: Thu, 25 Nov 2021 06:44:47 +0000 Subject: [PATCH] xtensa-build-zephyr: build ICL by default again ICL linking overlap issue has been fixed by https://github.com/zephyrproject-rtos/zephyr/pull/39603 This is a logical revert of commit d4b8a01f206c ("xtensa-build-zephyr: temporarily exclude ICL") Signed-off-by: Marc Herbert --- scripts/xtensa-build-zephyr.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/scripts/xtensa-build-zephyr.sh b/scripts/xtensa-build-zephyr.sh index cda3659c7..834bb75e3 100755 --- a/scripts/xtensa-build-zephyr.sh +++ b/scripts/xtensa-build-zephyr.sh @@ -18,10 +18,9 @@ SUPPORTED_PLATFORMS+=(imx8 imx8x imx8m) # -a DEFAULT_PLATFORMS=("${SUPPORTED_PLATFORMS[@]}") -# REVERTME: temporarily exclude ICL because of .noinit/.cached section -# overlap and build failure -# https://github.com/zephyrproject-rtos/zephyr/pull/40319 -unset DEFAULT_PLATFORMS[2] +# How to exclude one platform from the default builds while leaving it +# possible to build individually: +# unset DEFAULT_PLATFORMS[2] BUILD_JOBS=$(nproc --all) PLATFORMS=()