[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[risu PATCH v3 6/7] build-all-archs: Add s390x to the script that builds
From: |
Thomas Huth |
Subject: |
[risu PATCH v3 6/7] build-all-archs: Add s390x to the script that builds all architectures |
Date: |
Thu, 14 Sep 2023 13:33:10 +0200 |
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>
---
build-all-archs | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
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"
--
2.41.0
- [risu PATCH v3 0/7] Add support for s390x to RISU, Thomas Huth, 2023/09/14
- [risu PATCH v3 2/7] s390x: Add basic s390x support to the C code, Thomas Huth, 2023/09/14
- [risu PATCH v3 1/7] Pass siginfo_t->si_addr to the reginfo_init() function, Thomas Huth, 2023/09/14
- [risu PATCH v3 3/7] s390x: Add simple s390x.risu file, Thomas Huth, 2023/09/14
- [risu PATCH v3 4/7] s390x: Add basic risugen perl module for s390x, Thomas Huth, 2023/09/14
- [risu PATCH v3 6/7] build-all-archs: Add s390x to the script that builds all architectures,
Thomas Huth <=
- [risu PATCH v3 5/7] s390x: Update the configure script for s390x support, Thomas Huth, 2023/09/14
- [risu RFC PATCH v3 7/7] Add a travis.yml file for testing RISU in the Travis-CI, Thomas Huth, 2023/09/14
- Re: [risu PATCH v3 0/7] Add support for s390x to RISU, Peter Maydell, 2023/09/18