diff options
author | Sakitoshi | 2019-01-23 21:51:34 -0300 |
---|---|---|
committer | GitHub | 2019-01-23 21:51:34 -0300 |
commit | e424c297b7b714cf2f25582cf9b4fc30cba5599f (patch) | |
tree | ea7e23977f5403d1c5ed3e18b27d03e53e778810 /Makefile.libretro | |
parent | de95fedd6981b4608cb78180e3bddde7e675223c (diff) | |
parent | c8e850f3584ba1eea367373d76d8b768a58d6d2c (diff) | |
download | pcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.tar.gz pcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.tar.bz2 pcsx_rearmed-e424c297b7b714cf2f25582cf9b4fc30cba5599f.zip |
Merge pull request #1 from libretro/master
catch up to libretro repo
Diffstat (limited to 'Makefile.libretro')
-rw-r--r-- | Makefile.libretro | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/Makefile.libretro b/Makefile.libretro index cb514b7..a8c8c4a 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -1,6 +1,7 @@ # Makefile for PCSX ReARMed (libretro) DEBUG=0 +WANT_ZLIB=1 ifeq ($(platform),) platform = unix @@ -26,7 +27,9 @@ GIT_VERSION := " $(shell git rev-parse --short HEAD || echo unknown)" ifneq ($(GIT_VERSION)," unknown") CFLAGS += -DGIT_VERSION=\"$(GIT_VERSION)\" endif +ifneq ($(WANT_ZLIB),1) LIBZ := -lz +endif LIBPTHREAD := -lpthread ifneq ($(findstring Haiku,$(shell uname -s)),) LIBDL := -lroot -lnetwork @@ -235,6 +238,41 @@ else ifeq ($(platform), rpi3) BUILTIN_GPU = neon USE_DYNAREC = 1 +# Classic Platforms #################### +# Platform affix = classic_<ISA>_<µARCH> +# Help at https://modmyclassic.com/comp + +# (armv7 a7, hard point, neon based) ### +# NESC, SNESC, C64 mini +else ifeq ($(platform), classic_armv7_a7) + TARGET := $(TARGET_NAME)_libretro.so + fpic := -fPIC + CFLAGS += -Ofast \ + -flto=4 -fwhole-program -fuse-linker-plugin \ + -fdata-sections -ffunction-sections -Wl,--gc-sections \ + -fno-stack-protector -fno-ident -fomit-frame-pointer \ + -falign-functions=1 -falign-jumps=1 -falign-loops=1 \ + -fno-unwind-tables -fno-asynchronous-unwind-tables -fno-unroll-loops \ + -fmerge-all-constants -fno-math-errno \ + -marm -mtune=cortex-a7 -mfpu=neon-vfpv4 -mfloat-abi=hard + CXXFLAGS += $(CFLAGS) + CPPFLAGS += $(CFLAGS) + ASFLAGS += $(CFLAGS) + HAVE_NEON = 1 + ARCH = arm + BUILTIN_GPU = neon + USE_DYNAREC = 1 + ifeq ($(shell echo `$(CC) -dumpversion` "< 4.9" | bc -l), 1) + CFLAGS += -march=armv7-a + else + CFLAGS += -march=armv7ve + # If gcc is 5.0 or later + ifeq ($(shell echo `$(CC) -dumpversion` ">= 5" | bc -l), 1) + LDFLAGS += -static-libgcc -static-libstdc++ + endif + endif +####################################### + # ARM else ifneq (,$(findstring armv,$(platform))) TARGET := $(TARGET_NAME)_libretro.so |