X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=Makefile.libretro;h=83f0902d07258f568e066070f8b3878fe48484a2;hb=00a725a87c3d796e373a14238582085afdd9c305;hp=05b8e6079676b780ec356e817694eb8e4be06995;hpb=2446536be520914616403876d7e49621ac6f4b95;p=picodrive.git diff --git a/Makefile.libretro b/Makefile.libretro index 05b8e60..83f0902 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -39,8 +39,24 @@ else ifeq ($(platform), ios) CFLAGS += -DIOS ARCH := arm - HAVE_NEON = 1 - USE_DYNAREC = 1 + HAVE_NEON = 0 + USE_DYNAREC = 0 + + use_fame = 1 + use_cz80 = 1 + use_sh2mame = 1 + use_cyclone = 0 + use_drz80 = 0 + use_sh2drc = 0 + use_svpdrc = 0 + + asm_memory = 0 + asm_render = 0 + asm_ym2612 = 0 + asm_misc = 0 + asm_cdpico = 0 + asm_cdmemory = 0 + asm_mix = 0 else ifeq ($(platform), ps3) TARGET := $(TARGET_NAME)_libretro_ps3.a CC = $(CELL_SDK)/host-win32/ppu/bin/ppu-lv2-gcc.exe @@ -86,7 +102,15 @@ else ifeq ($(platform), qnx) ARCH = arm HAVE_NEON = 1 USE_DYNAREC = 1 -else ifeq ($(platform), arm) +else ifeq ($(platform), armv6) + TARGET := $(TARGET_NAME)_libretro.so + SHARED := -shared -Wl,--no-undefined + CFLAGS += -marm -mfloat-abi=softfp + ASFLAGS += -mfloat-abi=softfp + + ARCH = arm + USE_DYNAREC = 1 +else ifeq ($(platform), armv7) TARGET := $(TARGET_NAME)_libretro.so SHARED := -shared -Wl,--no-undefined CFLAGS += -marm -mcpu=cortex-a8 -mfpu=neon -mfloat-abi=softfp