diff options
author | hizzlekizzle | 2020-02-29 17:23:57 -0600 |
---|---|---|
committer | GitHub | 2020-02-29 17:23:57 -0600 |
commit | 3f2f57c982ffead643957db5b26931df4913596f (patch) | |
tree | e87ebc1ef6ed9d4b93e399d4d9e2e003a0e3386b /Makefile | |
parent | c513ecee59b088014369ab30af634a1cc06fda37 (diff) | |
parent | 6a50b8a68d5a0595dc78c90f5d0969021beb7ea1 (diff) | |
download | picogpsp-3f2f57c982ffead643957db5b26931df4913596f.tar.gz picogpsp-3f2f57c982ffead643957db5b26931df4913596f.tar.bz2 picogpsp-3f2f57c982ffead643957db5b26931df4913596f.zip |
Merge pull request #64 from justinweiss/3ds-fix-prefetch-abort
[3DS] Fix dynarec prefetch aborts
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -251,7 +251,6 @@ else ifeq ($(platform), ctr) CFLAGS += -fomit-frame-pointer -ffast-math CXXFLAGS = $(CFLAGS) -fno-rtti -fno-exceptions -std=gnu++11 CPU_ARCH := arm - # dynarec unavailable with the HBL on FW > 9.2 HAVE_DYNAREC = 1 STATIC_LINKING = 1 @@ -469,7 +468,7 @@ endif ifeq ($(platform), ctr) ifeq ($(HAVE_DYNAREC), 1) -OBJECTS += 3ds/3ds_utils.o +OBJECTS += 3ds/3ds_utils.o 3ds/3ds_cache_utils.o ifeq ($(strip $(CTRULIB)),) $(error "Please set CTRULIB in your environment. export CTRULIB=<path to>ctrulib") |