mirror of
https://github.com/yquake2/zaero.git
synced 2024-11-22 03:51:13 +00:00
Normalize arm64
to aarch64
.
This ensures that we call ARM64 `aarch64` on all platform, which aren't MacOS or Windows. And it fixes the bug, that `arm64` was normalized to `arm`, making incompatible savegames between 32 bit and 64 bit ARM loadable. Leading to crashes.
This commit is contained in:
parent
a91b12a4af
commit
d52ee31d93
1 changed files with 1 additions and 1 deletions
2
Makefile
2
Makefile
|
@ -46,7 +46,7 @@ endif # windows but MINGW_CHOST not defined
|
||||||
else
|
else
|
||||||
ifneq ($(YQ2_OSTYPE), Darwin)
|
ifneq ($(YQ2_OSTYPE), Darwin)
|
||||||
# Normalize some abiguous YQ2_ARCH strings
|
# Normalize some abiguous YQ2_ARCH strings
|
||||||
YQ2_ARCH ?= $(shell uname -m | sed -e 's/i.86/i386/' -e 's/amd64/x86_64/' -e 's/^arm.*/arm/')
|
YQ2_ARCH ?= $(shell uname -m | sed -e 's/i.86/i386/' -e 's/amd64/x86_64/' -e 's/arm64/aarch64/' -e 's/^arm.*/arm/')
|
||||||
else
|
else
|
||||||
YQ2_ARCH ?= $(shell uname -m)
|
YQ2_ARCH ?= $(shell uname -m)
|
||||||
endif
|
endif
|
||||||
|
|
Loading…
Reference in a new issue