Generate dynarec AND interpreter on iOS (with single invocation!)
authorT. Joseph Carter <iKarith@users.noreply.github.com>
Thu, 12 Mar 2015 11:46:35 +0000 (04:46 -0700)
committerT. Joseph Carter <iKarith@users.noreply.github.com>
Thu, 12 Mar 2015 11:46:35 +0000 (04:46 -0700)
Makefile.libretro

index 70a7c14..1efb7f9 100644 (file)
@@ -56,7 +56,12 @@ else ifeq ($(platform), osx)
 # iOS
 else ifeq ($(platform), ios)
        ARCH := arm
+       USE_DYNAREC ?= 1
        TARGET := $(TARGET_NAME)_libretro_ios.dylib
+ifeq ($(USE_DYNAREC),0)
+       # Override
+       TARGET := $(TARGET_NAME)_interpreter_libretro_ios.dylib
+endif
        fpic := -fPIC
        SHARED := -dynamiclib
 
@@ -71,7 +76,6 @@ else ifeq ($(platform), ios)
        ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon
        HAVE_NEON = 1
        BUILTIN_GPU = neon
-       USE_DYNAREC = 1
        CFLAGS += -DIOS
        OSXVER = `sw_vers -productVersion | cut -d. -f 2`
        OSX_LT_MAVERICKS = `(( $(OSXVER) <= 9)) && echo "YES"`
@@ -201,6 +205,14 @@ SOUND_DRIVERS = libretro
 PLUGINS =
 NO_CONFIG_MAK = yes
 
+libretro_all: all
+ifeq ($(platform),ios)
+ifeq ($(USE_DYNAREC),1)
+       make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform) clean
+       make -f Makefile.libretro USE_DYNAREC=0 platform=$(platform)
+endif
+endif
+
 include Makefile
 
 # no special AS needed for gpu_neon