[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[risu PATCH v3 5/7] s390x: Update the configure script for s390x support
From: |
Thomas Huth |
Subject: |
[risu PATCH v3 5/7] s390x: Update the configure script for s390x support |
Date: |
Thu, 14 Sep 2023 13:33:09 +0200 |
Auto-detect s390x hosts and add s390x information to the help text.
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
configure | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/configure b/configure
index ca2d7db..2f7c580 100755
--- a/configure
+++ b/configure
@@ -58,6 +58,8 @@ guess_arch() {
ARCH="m68k"
elif check_define __powerpc64__ ; then
ARCH="ppc64"
+ elif check_define __s390x__ ; then
+ ARCH="s390x"
else
echo "This cpu is not supported by risu. Try -h. " >&2
exit 1
@@ -139,7 +141,7 @@ Some influential environment variables:
prefixed with the given string.
ARCH force target architecture instead of trying to detect it.
- Valid values=[arm|aarch64|ppc64|ppc64le|m68k]
+ Valid values=[arm|aarch64|m68k|ppc64|ppc64le|s390x]
CC C compiler command
CFLAGS C compiler flags
--
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, 2023/09/14
- [risu PATCH v3 5/7] s390x: Update the configure script for s390x support,
Thomas Huth <=
- [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