diff options
author | Twinaphex | 2020-02-27 05:48:54 +0100 |
---|---|---|
committer | GitHub | 2020-02-27 05:48:54 +0100 |
commit | fa5e72593d53107d966daea66898c25dce553dc8 (patch) | |
tree | a2744f8a833ccaa868198fa04070b1998b732200 /Makefile.libretro | |
parent | 58e485d6efcecfe0fb7d072d705cf658e6162b4e (diff) | |
parent | eca6163f53a2df69d0c42caaa45b2e4432c47a1c (diff) | |
download | pcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.tar.gz pcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.tar.bz2 pcsx_rearmed-fa5e72593d53107d966daea66898c25dce553dc8.zip |
Merge pull request #392 from justinweiss/ctr-use-floatmath
[3DS] Tweak compile-time options to increase performance
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index d9b528a..8f48a32 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -206,10 +206,10 @@ else ifeq ($(platform), ctr) CC = $(DEVKITARM)/bin/arm-none-eabi-gcc$(EXE_EXT) CXX = $(DEVKITARM)/bin/arm-none-eabi-g++$(EXE_EXT) AR = $(DEVKITARM)/bin/arm-none-eabi-ar$(EXE_EXT) - CFLAGS += -DARM11 -D_3DS -DNO_OS -DNO_DYLIB -DNO_SOCKET + CFLAGS += -DARM11 -D_3DS -DNO_OS -DNO_DYLIB -DNO_SOCKET -DGPU_UNAI_USE_FLOATMATH -DGPU_UNAI_USE_FLOAT_DIV_MULTINV CFLAGS += -march=armv6k -mtune=mpcore -mfloat-abi=hard -marm -mfpu=vfp -mtp=soft CFLAGS += -Wall -mword-relocations - CFLAGS += -fomit-frame-pointer -ffast-math + CFLAGS += -fomit-frame-pointer -ffast-math -funroll-loops CFLAGS += -Ifrontend/3ds CFLAGS += -Werror=implicit-function-declaration |