Skip to content

Commit f244fb6

Browse files
committed
Define all other architectures as "not x86"
This allows the build to proceed for AArch64 (mentioned in #10791) and others.
1 parent cb211a0 commit f244fb6

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

Make.inc

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -591,14 +591,9 @@ ISX86:=1
591591
else ifeq ($(ARCH),x86_64)
592592
BINARY:=64
593593
ISX86:=1
594-
else ifneq (,$(findstring arm,$(ARCH)))
595-
ISX86:=0
596-
else ifneq (,$(findstring powerpc,$(ARCH)))
597-
ISX86:=0
598-
else ifneq (,$(findstring ppc,$(ARCH)))
599-
ISX86:=0
600594
else
601-
$(error "unknown word-size for arch: $(ARCH)")
595+
# For all other architectures (ARM, PPC, AArch64, etc.)
596+
ISX86:=0
602597
endif
603598

604599
# If we are running on ARM, set certain options automatically

0 commit comments

Comments
 (0)