mirror of
https://github.com/DarkPlacesEngine/gmqcc.git
synced 2025-02-21 02:40:56 +00:00
Got it working on arm :)
This commit is contained in:
parent
ba25970f27
commit
cfa7119fdb
1 changed files with 6 additions and 0 deletions
6
Makefile
6
Makefile
|
@ -54,6 +54,12 @@ ifneq ("$(MINGW)", "")
|
|||
GMQCC = gmqcc.exe
|
||||
TESTSUITE = testsuite.exe
|
||||
else
|
||||
#arm support for linux .. we need to allow unaligned accesses
|
||||
#to memory otherwise we just segfault everywhere
|
||||
ifneq (, $(findstring $(shell uname -m), "arm"))
|
||||
CFLAGS += -munaligned-access
|
||||
endif
|
||||
|
||||
QCVM = qcvm
|
||||
GMQCC = gmqcc
|
||||
TESTSUITE = testsuite
|
||||
|
|
Loading…
Reference in a new issue