Got it working on arm :)

This commit is contained in:
Dale Weiler 2012-12-28 08:59:41 +00:00
parent ba25970f27
commit cfa7119fdb

View file

@ -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