diff options
author | twinaphex | 2013-04-01 02:59:42 +0200 |
---|---|---|
committer | notaz | 2013-04-01 20:32:17 +0300 |
commit | 098fa5f57df4e86e4bdf699e626a76b24cd8075b (patch) | |
tree | 72c9a1605b59cbf57857e2ad0ed55bdb813f5b69 /Makefile.libretro | |
parent | 1f4e070a56a597038942d595b82476ca5dc249fd (diff) | |
download | pcsx_rearmed-098fa5f57df4e86e4bdf699e626a76b24cd8075b.tar.gz pcsx_rearmed-098fa5f57df4e86e4bdf699e626a76b24cd8075b.tar.bz2 pcsx_rearmed-098fa5f57df4e86e4bdf699e626a76b24cd8075b.zip |
(Libretro Makefile) Add ARM target
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index dc5c3aa..2424822 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -85,8 +85,17 @@ else ifeq ($(platform), qnx) ARCH = arm CFLAGS += -DBASE_ADDR_FIXED=0 -D__BLACKBERRY_QNX__ -marm -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp +else ifeq ($(platform), arm) + TARGET := libretro_pcsx_rearmed.so + HAVE_NEON = 1 + USE_DYNAREC = 1 + DRC_CACHE_BASE = 0 + BUILTIN_GPU = neon + ARCH = arm + CFLAGS += -DBASE_ADDR_FIXED=0 -marm -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -mfloat-abi=softfp + ASFLAGS += -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp else - TARGET := snes9x_next_retro.dll + TARGET := pcsx_rearmed_retro.dll CC = gcc fpic := -fPIC LD_FLAGS := -fPIC |