From bb6f5073aa42b3e3ea2796c496b13e2e79bdc06a Mon Sep 17 00:00:00 2001 From: Hyounggyu Choi Date: Wed, 31 Jan 2024 13:20:35 +0100 Subject: [PATCH] runtime-rs: Allow compilation for s390x Until now, runtime-rs couldn't be compiled on s390x. We need to lift those restrictions in Makefile first. Fixes: #8446 Signed-off-by: Hyounggyu Choi --- src/runtime-rs/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/runtime-rs/Makefile b/src/runtime-rs/Makefile index 66d32c1fc0..eee60818a3 100644 --- a/src/runtime-rs/Makefile +++ b/src/runtime-rs/Makefile @@ -26,15 +26,11 @@ ARCH_FILE_SUFFIX = -options.mk ARCH_FILE = $(ARCH_DIR)/$(ARCH)$(ARCH_FILE_SUFFIX) ifeq ($(ARCH), s390x) -default: - @echo "s390x is not currently supported" - exit 0 +default: runtime show-header test: @echo "s390x is not currently supported" exit 0 -install: - @echo "s390x is not currently supported" - exit 0 +install: install-runtime install-configs else ifeq ($(ARCH), powerpc64le) default: @echo "PowerPC 64 LE is not currently supported"