diff options
author | Wes Smith | 2019-05-12 14:27:06 -0400 |
---|---|---|
committer | hizzlekizzle | 2019-05-12 13:27:06 -0500 |
commit | 5ffd1f23eb970679dfe8b540bc3df8e776dc9e17 (patch) | |
tree | 41101f8f98630b032f5cd25e8314957d0d047f42 /Makefile.libretro | |
parent | ecfbcc12986314a68dd768631afb7008f92b1b94 (diff) | |
download | pcsx_rearmed-5ffd1f23eb970679dfe8b540bc3df8e776dc9e17.tar.gz pcsx_rearmed-5ffd1f23eb970679dfe8b540bc3df8e776dc9e17.tar.bz2 pcsx_rearmed-5ffd1f23eb970679dfe8b540bc3df8e776dc9e17.zip |
Added PSClassic to makefile (#278)
* Committer: Wes Smith <wraith@smithmedia.wraithbox.com>
On branch master
Your branch is up to date with 'origin/master'.
Changes to be committed:
modified: Makefile.libretro
Added v8a35 to Makefile
* modified makefile with libretro changes
* New makefile format from libretro
* Updated with PSClassic Make again
* Updated PSC config
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index 2cda1d0..c40f64b 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -285,6 +285,20 @@ else ifeq ($(platform), classic_armv7_a7) LDFLAGS += -static-libgcc -static-libstdc++ endif endif + +# (armv8 a35, hard point, neon based) ### +# PlayStation Classic +else ifeq ($(platform), classic_armv8_a35) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + CFLAGS += -marm -mtune=cortex-a35 -mfpu=neon-fp-armv8 -mfloat-abi=hard + HAVE_NEON = 1 + ARCH = arm + BUILTIN_GPU = neon + USE_DYNAREC = 1 + CFLAGS += -march=armv8-a + LDFLAGS += -static-libgcc -static-libstdc++ -fPIC + ####################################### # ARM |