Merge pull request #613 from misakano7545/master
Add s390x architecture support
This commit is contained in:
commit
14002e44e1
2
Makefile
2
Makefile
|
@ -63,6 +63,8 @@ else ifeq ($(LOCAL_ARCH),arm64)
|
||||||
TARGET_ARCH ?= arm64
|
TARGET_ARCH ?= arm64
|
||||||
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
|
else ifeq ($(shell echo $(LOCAL_ARCH) | head -c 4),armv)
|
||||||
TARGET_ARCH ?= arm
|
TARGET_ARCH ?= arm
|
||||||
|
else ifeq ($(LOCAL_ARCH),s390x)
|
||||||
|
TARGET_ARCH ?= s390x
|
||||||
else
|
else
|
||||||
$(error This system's architecture $(LOCAL_ARCH) isn't supported)
|
$(error This system's architecture $(LOCAL_ARCH) isn't supported)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in New Issue