Skip to content

Commit

Permalink
build: treat aarch64 as arm64
Browse files Browse the repository at this point in the history
`Makefile` is now consistent with `configure` regarding
how we treat aarch64.

PR-URL: #5191
Fixes: #5175
Reviewed-By: Rod Vagg <r@va.gg>
Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl>
  • Loading branch information
jbergstroem authored and rvagg committed Feb 15, 2016
1 parent 69c544f commit 356acb3
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,9 @@ else
ifeq ($(DESTCPU),arm)
ARCH=arm
else
ifeq ($(DESTCPU),aarch64)
ARCH=arm64
else
ifeq ($(DESTCPU),ppc64)
ARCH=ppc64
else
Expand All @@ -283,6 +286,7 @@ endif
endif
endif
endif
endif

# enforce "x86" over "ia32" as the generally accepted way of referring to 32-bit intel
ifeq ($(ARCH),ia32)
Expand Down

0 comments on commit 356acb3

Please sign in to comment.