X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=0544aabf2160326e410c3ff0793467b1c0caf9ce;hb=17d0c85faeebaa34037445f5d0f80072c98dc915;hp=c1e40519d52ddb970284f450f2b356a488680a36;hpb=778ad9ceb24770bfb4d3b9d697429475c55009ee;p=pcsx_rearmed.git diff --git a/Makefile.libretro b/Makefile.libretro index c1e40519..0544aabf 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -28,7 +28,11 @@ ifneq ($(GIT_VERSION)," unknown") endif LIBZ := -lz LIBPTHREAD := -lpthread +ifneq ($(findstring Haiku,$(shell uname -s)),) +LIBDL := -lroot -lnetwork +else LIBDL := -ldl +endif MMAP_WIN32=0 EXTRA_LDFLAGS = @@ -36,6 +40,9 @@ EXTRA_LDFLAGS = ifeq ($(platform), unix) TARGET := $(TARGET_NAME)_libretro.so fpic := -fPIC +ifneq ($(findstring SunOS,$(shell uname -s)),) + CC = gcc +endif else ifeq ($(platform), linux-portable) TARGET := $(TARGET_NAME)_libretro.so @@ -53,7 +60,7 @@ else ifeq ($(platform), osx) fpic += -mmacosx-version-min=10.1 # iOS -else ifeq ($(platform),$(filter $(platform),ios9 ios-arm64)) +else ifeq ($(platform),$(filter $(platform),ios-arm64)) ARCH := arm64 USE_DYNAREC = 0 HAVE_NEON = 0 @@ -66,7 +73,7 @@ else ifneq (,$(findstring ios,$(platform))) HAVE_NEON = 1 BUILTIN_GPU = neon TARGET := $(TARGET_NAME)_libretro_ios.dylib -ifeq ($(USE_DYNAREC),0) +ifeq ($(USE_DYNAREC),1) # Override TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib endif @@ -236,6 +243,10 @@ else ifneq (,$(findstring armv,$(platform))) ifneq (,$(findstring cortexa8,$(platform))) CFLAGS += -marm -mcpu=cortex-a8 ASFLAGS += -mcpu=cortex-a8 + else ifneq (,$(findstring cortexa7,$(platform))) + CFLAGS += -marm -mcpu=cortex-a7 + ASFLAGS += -mcpu=cortex-a7 + LIBZ := else ifneq (,$(findstring cortexa9,$(platform))) CFLAGS += -marm -mcpu=cortex-a9 ASFLAGS += -mcpu=cortex-a9