mirror of
https://github.com/yquake2/rogue.git
synced 2024-11-10 06:42:21 +00:00
Merge pull request #91 from devnexen/build_macos_arm_fix
Forcing proper native arch build on darwin mainly due to arm64
This commit is contained in:
commit
ca5e278670
1 changed files with 4 additions and 0 deletions
4
Makefile
4
Makefile
|
@ -47,8 +47,12 @@ YQ2_ARCH ?= $(PROCESSOR_ARCHITECTURE)
|
||||||
endif
|
endif
|
||||||
endif # windows but MINGW_CHOST not defined
|
endif # windows but MINGW_CHOST not defined
|
||||||
else
|
else
|
||||||
|
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/^arm.*/arm/')
|
||||||
|
else
|
||||||
|
YQ2_ARCH ?= $(shell uname -m)
|
||||||
|
endif
|
||||||
endif
|
endif
|
||||||
|
|
||||||
# On Windows / MinGW $(CC) is undefined by default.
|
# On Windows / MinGW $(CC) is undefined by default.
|
||||||
|
|
Loading…
Reference in a new issue