This commit is contained in:
ifsheldon 2025-03-22 21:11:45 +08:00 committed by GitHub
commit 2cb8f6fae1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,8 @@ else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
TARGET_ARCH ?= arm TARGET_ARCH ?= arm
else ifeq ($(LOCAL_ARCH),s390x) else ifeq ($(LOCAL_ARCH),s390x)
TARGET_ARCH ?= s390x TARGET_ARCH ?= s390x
else ifeq ($(LOCAL_ARCH),riscv64)
TARGET_ARCH ?= riscv64
else else
$(error This system's architecture $(LOCAL_ARCH) isn't supported) $(error This system's architecture $(LOCAL_ARCH) isn't supported)
endif endif