Skip to content

Commit 4a6e2b2

Browse files
jbergstroemMyles Borins
authored and
Myles Borins
committed
build: treat aarch64 as arm64
`Makefile` is now consistent with `configure` regarding how we treat aarch64. PR-URL: #5191 Fixes: #5175 Reviewed-By: Rod Vagg <[email protected]> Reviewed-By: Ben Noordhuis <[email protected]>
1 parent 5c49604 commit 4a6e2b2

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

Makefile

+4
Original file line numberDiff line numberDiff line change
@@ -272,6 +272,9 @@ else
272272
ifeq ($(DESTCPU),arm)
273273
ARCH=arm
274274
else
275+
ifeq ($(DESTCPU),aarch64)
276+
ARCH=arm64
277+
else
275278
ifeq ($(DESTCPU),ppc64)
276279
ARCH=ppc64
277280
else
@@ -283,6 +286,7 @@ endif
283286
endif
284287
endif
285288
endif
289+
endif
286290

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

0 commit comments

Comments
 (0)