xtensa-build-all.sh: remove $ARCH unused since CMake / January 2019

$ARCH was introduced in 2018 by commit b5af84deaa ("scripts: add smp
builds to xtensa-build-all.sh"). At the time used autotools and
`./configure --with-arch=$ARCH` were used.

In January 2019 the build system was migrated to CMake over several
commits, notably commit 9840ecbbfe ("cmake: update
xtensa-build-all.sh") that switched xtensa-build-all.sh to CMake and
removed its only use of ARCH. Also note commit 82b4da291b ("cmake:
defconfigs support") which added a few CONFIG_SMP defconfigs and
commit 905bad4252 ("scripts: xtensa-build-all: Add support to force
build UP Arch") using override.config.

Much more recently in June 2020: commit fd506970cc ("zephyr: kconfig:
rename CONFIG_SMP -> CONFIG_MULTICORE")

Zawinski's Law of Software Envelopment: adding lines of code is much
easier than removing the same amount and would be very impractical
without git. This one was easy enough.

Signed-off-by: Marc Herbert <marc.herbert@intel.com>
This commit is contained in:
Marc Herbert 2021-03-11 05:08:18 +00:00 committed by Daniel Baluta
parent 6541a86101
commit e6c3dda61a
1 changed files with 0 additions and 16 deletions

View File

@ -180,35 +180,30 @@ do
case $platform in
byt)
PLATFORM="baytrail"
ARCH="xtensa"
XTENSA_CORE="Intel_HiFiEP"
HOST="xtensa-byt-elf"
XTENSA_TOOLS_VERSION="RD-2012.5-linux"
;;
cht)
PLATFORM="cherrytrail"
ARCH="xtensa"
XTENSA_CORE="CHT_audio_hifiep"
HOST="xtensa-byt-elf"
XTENSA_TOOLS_VERSION="RD-2012.5-linux"
;;
bdw)
PLATFORM="broadwell"
ARCH="xtensa"
XTENSA_CORE="LX4_langwell_audio_17_8"
HOST="xtensa-hsw-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
hsw)
PLATFORM="haswell"
ARCH="xtensa"
XTENSA_CORE="LX4_langwell_audio_17_8"
HOST="xtensa-hsw-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
apl)
PLATFORM="apollolake"
ARCH="xtensa-smp"
XTENSA_CORE="X4H3I16w2D48w3a_2017_8"
# test APL compiler aliases and ignore set -e here
@ -223,7 +218,6 @@ do
;;
skl)
PLATFORM="skylake"
ARCH="xtensa"
XTENSA_CORE="X4H3I16w2D48w3a_2017_8"
# test APL compiler aliases and ignore set -e here
@ -238,7 +232,6 @@ do
;;
kbl)
PLATFORM="kabylake"
ARCH="xtensa"
XTENSA_CORE="X4H3I16w2D48w3a_2017_8"
# test APL compiler aliases and ignore set -e here
@ -253,7 +246,6 @@ do
;;
cnl)
PLATFORM="cannonlake"
ARCH="xtensa-smp"
XTENSA_CORE="X6H3CNL_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -261,7 +253,6 @@ do
;;
sue)
PLATFORM="suecreek"
ARCH="xtensa"
XTENSA_CORE="X6H3CNL_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -269,7 +260,6 @@ do
;;
icl)
PLATFORM="icelake"
ARCH="xtensa-smp"
XTENSA_CORE="X6H3CNL_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -277,7 +267,6 @@ do
;;
tgl)
PLATFORM="tgplp"
ARCH="xtensa-smp"
XTENSA_CORE="cavs2x_LX6HiFi3_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -290,7 +279,6 @@ do
;;
tgl-h)
PLATFORM="tgph"
ARCH="xtensa-smp"
XTENSA_CORE="cavs2x_LX6HiFi3_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -303,7 +291,6 @@ do
;;
jsl)
PLATFORM="jasperlake"
ARCH="xtensa-smp"
XTENSA_CORE="X6H3CNL_2017_8"
HOST="xtensa-cnl-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
@ -311,21 +298,18 @@ do
;;
imx8)
PLATFORM="imx8"
ARCH="xtensa"
XTENSA_CORE="hifi4_nxp_v3_3_1_2_dev"
HOST="xtensa-imx-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
imx8x)
PLATFORM="imx8x"
ARCH="xtensa"
XTENSA_CORE="hifi4_nxp_v3_3_1_2_dev"
HOST="xtensa-imx-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"
;;
imx8m)
PLATFORM="imx8m"
ARCH="xtensa"
XTENSA_CORE="hifi4_mscale_v0_0_2_prod"
HOST="xtensa-imx8m-elf"
XTENSA_TOOLS_VERSION="RG-2017.8-linux"