diff options
author | twinaphex | 2013-07-13 18:44:43 +0200 |
---|---|---|
committer | twinaphex | 2013-07-13 18:44:43 +0200 |
commit | 5d0bfd318877166df186565fb9a2a940c241a43f (patch) | |
tree | 466e8b8fba435290a50510d18db2d36b7a387d21 /Makefile.libretro | |
parent | cbe0561f7794ced67ba38d0aa0f118fca21e367d (diff) | |
download | pcsx_rearmed-5d0bfd318877166df186565fb9a2a940c241a43f.tar.gz pcsx_rearmed-5d0bfd318877166df186565fb9a2a940c241a43f.tar.bz2 pcsx_rearmed-5d0bfd318877166df186565fb9a2a940c241a43f.zip |
(Makefile libretro) Make more generic ARM target
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 28 |
1 files changed, 23 insertions, 5 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 9436c8a..450860d 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -90,15 +90,33 @@ else ifeq ($(platform), qnx) ARCH = arm CFLAGS += -DBASE_ADDR_FIXED=0 -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a9 -mtune=cortex-a9 -mfpu=neon -mfloat-abi=softfp ASFLAGS += -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp -else ifeq ($(platform), arm) +else ifneq (,$(findstring armv,$(platform))) TARGET := $(TARGET_NAME)_libretro.so - HAVE_NEON = 1 - USE_DYNAREC = 1 + SHARED := -shared -Wl,--no-undefined DRC_CACHE_BASE = 0 +ifneq (,$(findstring cortexa8,$(platform))) + CFLAGS += -marm -mcpu=cortex-a8 + ASFLAGS += -mcpu=cortex-a8 +else ifneq (,$(findstring cortexa9,$(platform))) + CFLAGS += -marm -mcpu=cortex-a9 + ASFLAGS += -mcpu=cortex-a9 +endif + CFLAGS += -marm +ifneq (,$(findstring neon,$(platform))) + CFLAGS += -mfpu=neon + ASFLAGS += -mfpu=neon + HAVE_NEON = 1 BUILTIN_GPU = neon +endif +ifneq (,$(findstring softfloat,$(platform))) + CFLAGS += -mfloat-abi=softfp + ASFLAGS += -mfloat-abi=softfp +else ifneq (,$(findstring hardfloat,$(platform))) + CFLAGS += -mfloat-abi=hard + ASFLAGS += -mfloat-abi=hard +endif ARCH = arm - CFLAGS += -marm -mcpu=cortex-a8 -mfpu=neon - ASFLAGS += -mcpu=cortex-a8 -mfpu=neon + USE_DYNAREC = 1 else TARGET := $(TARGET_NAME)_retro.dll CC = gcc |