X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=87360482531512e7790949ce7b882655d8cd2cac;hb=2d6460655c774462193bbc893dce5a43e04b4ed7;hp=1c7207c30475f642a9ed84f739a623fc1af539f0;hpb=34e7fb0ba59c846fc483fd8340884641f4390252;p=picodrive.git diff --git a/Makefile.libretro b/Makefile.libretro index 1c7207c..8736048 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -47,14 +47,11 @@ else ifeq ($(platform), ios) CFLAGS += -DIOS ARCH := arm - HAVE_NEON = 0 - USE_DYNAREC = 0 - use_fame = 1 - use_cz80 = 1 - use_sh2mame = 1 use_cyclone = 0 + use_fame = 1 use_drz80 = 0 + use_cz80 = 1 use_sh2drc = 1 use_svpdrc = 1 @@ -101,9 +98,7 @@ else ifeq ($(platform), qnx) ASFLAGS += -mcpu=cortex-a9 -mfpu=neon -mfloat-abi=softfp ARCH = arm - HAVE_NEON = 1 ARM_ASM = 1 - USE_DYNAREC = 1 else ifneq (,$(findstring armv,$(platform))) TARGET := $(TARGET_NAME)_libretro.so SHARED := -shared -Wl,--no-undefined @@ -118,7 +113,6 @@ endif ifneq (,$(findstring neon,$(platform))) CFLAGS += -mfpu=neon ASFLAGS += -mfpu=neon - HAVE_NEON = 1 endif ifneq (,$(findstring softfloat,$(platform))) CFLAGS += -mfloat-abi=softfp @@ -131,7 +125,6 @@ ifneq (,$(findstring armasm,$(platform))) ARM_ASM = 1 endif ARCH = arm - USE_DYNAREC = 1 else TARGET := $(TARGET_NAME)_retro.dll CC = gcc