diff options
author | Francisco José García García | 2016-08-14 18:30:14 +0200 |
---|---|---|
committer | Francisco José García García | 2016-08-14 18:30:14 +0200 |
commit | 5051773104f5ca1e846858ff543f4438ab662da9 (patch) | |
tree | 26babf9697edc110f5416916b465149930834bde /Makefile | |
parent | a14242482333eeda66ae5471ad00ac5fd9023d9c (diff) | |
download | picogpsp-5051773104f5ca1e846858ff543f4438ab662da9.tar.gz picogpsp-5051773104f5ca1e846858ff543f4438ab662da9.tar.bz2 picogpsp-5051773104f5ca1e846858ff543f4438ab662da9.zip |
(VITA) Set thumb mode
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -195,11 +195,12 @@ else ifeq ($(platform), vita) TARGET := $(TARGET_NAME)_libretro_$(platform).a CC = arm-vita-eabi-gcc$(EXE_EXT) AR = arm-vita-eabi-ar$(EXE_EXT) - CFLAGS += -DVITA - CFLAGS += -marm -mcpu=cortex-a9 - ASFLAGS += -mcpu=cortex-a9 + CFLAGS += -DVITA -g + CFLAGS += -mthumb -mcpu=cortex-a9 -mfloat-abi=hard + CFLAGS += -Wall -mword-relocations + CFLAGS += -fomit-frame-pointer -ffast-math + ASFLAGS += -mthumb -mcpu=cortex-a9 STATIC_LINKING = 1 - HAVE_DYNAREC = 1 CPU_ARCH := arm # CTR(3DS) |