aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2023-09-14 13:33:10 +0200
committerPeter Maydell <peter.maydell@linaro.org>2023-09-18 13:24:07 +0100
commitcb1597fd391e467a0479eb077cf5de9a16fd4412 (patch)
tree98d82a43ff9f4590de82d3a2b99d52ea5f821ece
parentfd134645793f25895cac916ce8bd1532e9586a35 (diff)
build-all-archs: Add s390x to the script that builds all architectures
To avoid regressions, let's check s390x also via this file. Suggested-by: Peter Maydell <peter.maydell@linaro.org> Signed-off-by: Thomas Huth <thuth@redhat.com> Message-id: 20230914113311.379537-7-thuth@redhat.com Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
-rwxr-xr-xbuild-all-archs3
1 files changed, 2 insertions, 1 deletions
diff --git a/build-all-archs b/build-all-archs
index e5dcfc8..e89851b 100755
--- a/build-all-archs
+++ b/build-all-archs
@@ -91,7 +91,8 @@ program_exists() {
for triplet in i386-linux-gnu i686-linux-gnu x86_64-linux-gnu \
aarch64-linux-gnu arm-linux-gnueabihf \
m68k-linux-gnu \
- powerpc64le-linux-gnu powerpc64-linux-gnu ; do
+ powerpc64le-linux-gnu powerpc64-linux-gnu \
+ s390x-linux-gnu ; do
if ! program_exists "${triplet}-gcc"; then
echo "Skipping ${triplet}: no compiler found"