aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authornotaz2013-04-01 19:29:41 +0300
committernotaz2013-04-01 19:29:41 +0300
commitaf32009fd9f5ea7a846b6509774bac1d4a6772ae (patch)
treeb735e99dbe846a0ce5567de01f202cccbe75d167 /Makefile.libretro
parent8184d7c5f6db0b05fafeaaed69ef18d22a60c451 (diff)
downloadpcsx_rearmed-af32009fd9f5ea7a846b6509774bac1d4a6772ae.tar.gz
pcsx_rearmed-af32009fd9f5ea7a846b6509774bac1d4a6772ae.tar.bz2
pcsx_rearmed-af32009fd9f5ea7a846b6509774bac1d4a6772ae.zip
libretro: enable gpu_neon
Diffstat (limited to 'Makefile.libretro')
-rw-r--r--Makefile.libretro7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index b10aa43..dc5c3aa 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -38,8 +38,7 @@ ARCH := arm
CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon -marm
ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon
HAVE_NEON = 1
-#TODO
-# BUILTIN_GPU = neon
+ BUILTIN_GPU = neon
USE_DYNAREC = 1
CFLAGS += -DIOS
else ifeq ($(platform), ps3)
@@ -117,3 +116,7 @@ include Makefile
# Apple LLVM version 4.2 (clang-425.0.27) (based on LLVM 3.2svn)
libpcsxcore/new_dynarec/pcsxmem.o: libpcsxcore/new_dynarec/pcsxmem.c
$(CC) -c -o $@ $< $(CPPFLAGS) $(CFLAGS) -Os
+
+# no special AS needed for gpu_neon
+plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.o: plugins/gpu_neon/psx_gpu/psx_gpu_arm_neon.S
+ $(CC) $(CFLAGS) -c $^ -o $@