aboutsummaryrefslogtreecommitdiff
path: root/Makefile.libretro
diff options
context:
space:
mode:
authortwinaphex2013-04-01 19:04:38 +0200
committertwinaphex2013-04-01 19:04:38 +0200
commit98dacc2f457677c6f4460971bd838d0e13ba5ca3 (patch)
tree2f7c1d1021e714cceaa28f73934b706d094fb5a2 /Makefile.libretro
parentde9b02263c0ffa3ccdb41d2fdee3bbf8d1287825 (diff)
parent1f4e070a56a597038942d595b82476ca5dc249fd (diff)
downloadpcsx_rearmed-98dacc2f457677c6f4460971bd838d0e13ba5ca3.tar.gz
pcsx_rearmed-98dacc2f457677c6f4460971bd838d0e13ba5ca3.tar.bz2
pcsx_rearmed-98dacc2f457677c6f4460971bd838d0e13ba5ca3.zip
Merge git://github.com/notaz/pcsx_rearmed
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 21abefc..c062048 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)
@@ -128,3 +127,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 $@