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 <Hyounggyu.Choi@ibm.com>
This commit is contained in:
Hyounggyu Choi 2024-01-31 13:20:35 +01:00
parent 8fcee6e6ec
commit bb6f5073aa

View File

@ -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"