diff options
author | twinaphex | 2014-12-20 07:59:41 +0100 |
---|---|---|
committer | twinaphex | 2014-12-20 07:59:41 +0100 |
commit | 9929bc0bd8591e955bd3a7ed1df29250e843b61a (patch) | |
tree | 92db11c0775fff2e0a85c103fef5604f53262513 /Makefile | |
parent | d3aacd7b6a3bd2d16ea61408996a518f326b9286 (diff) | |
download | snes9x2005-9929bc0bd8591e955bd3a7ed1df29250e843b61a.tar.gz snes9x2005-9929bc0bd8591e955bd3a7ed1df29250e843b61a.tar.bz2 snes9x2005-9929bc0bd8591e955bd3a7ed1df29250e843b61a.zip |
LOAD_FROM_MEMORY_TEST - enable it for every target but PSP
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -1,7 +1,7 @@ DEBUG = 0 PERF_TEST = 0 HAVE_GRIFFIN = 0 -LOAD_FROM_MEMORY_TEST = 0 +LOAD_FROM_MEMORY_TEST = 1 USE_BLARGG_APU = 1 ifeq ($(platform),) @@ -107,6 +107,7 @@ else ifeq ($(platform), psp1) CXX = psp-g++$(EXE_EXT) AR = psp-ar$(EXE_EXT) STATIC_LINKING = 1 + LOAD_FROM_MEMORY_TEST = 0 FLAGS += -G0 CFLAGS += -march=allegrex -mno-abicalls -fno-pic -fno-builtin \ -fno-exceptions -ffunction-sections -mno-long-calls \ |