X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=2abe71128b1be71b3bf8b1124d8c331d45359b19;hb=2ca181a92610030e29f146c876c55fd5a5f46ba9;hp=72ce07b4497f7fd9d1bd770316c7100f1ea0019b;hpb=ec893ec614562b0d0408c2b8abc872acd1001412;p=pcsx_rearmed.git diff --git a/Makefile.libretro b/Makefile.libretro index 72ce07b4..2abe7112 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -203,6 +203,18 @@ else ifeq ($(platform), rpi2) ARCH = arm BUILTIN_GPU = neon USE_DYNAREC = 1 + +#Raspberry Pi 3 +else ifeq ($(platform), rpi3) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + SHARED := -shared -Wl,--no-undefined + CFLAGS += -marm -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + ASFLAGS += -mcpu=cortex-a53 -mfpu=neon-fp-armv8 -mfloat-abi=hard + HAVE_NEON = 1 + ARCH = arm + BUILTIN_GPU = neon + USE_DYNAREC = 1 # ARM else ifneq (,$(findstring armv,$(platform)))