diff options
author | twinaphex | 2013-07-13 18:44:43 +0200 |
---|---|---|
committer | notaz | 2013-11-04 00:42:04 +0200 |
commit | 1af4c28167d5b0e64e90b3d30697cf15c6a91991 (patch) | |
tree | c2d22542edae0ddf46025c9ed421adaef7f30617 | |
parent | 4615b0757d557465551b76d163c4c16d2aae9efa (diff) | |
download | pcsx_rearmed-1af4c28167d5b0e64e90b3d30697cf15c6a91991.tar.gz pcsx_rearmed-1af4c28167d5b0e64e90b3d30697cf15c6a91991.tar.bz2 pcsx_rearmed-1af4c28167d5b0e64e90b3d30697cf15c6a91991.zip |
(Makefile libretro) Make more generic ARM target
-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 |