From: twinaphex <autechre1024@hotmail.com>
Date: Mon, 1 Jul 2013 10:39:40 +0000 (+0200)
Subject: Add armv6 target
X-Git-Tag: v1.85~65
X-Git-Url: https://notaz.gp2x.de/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=70b8542adb8568711a0627acfb53b590080c08ac;p=picodrive.git

Add armv6 target
---

diff --git a/Makefile.libretro b/Makefile.libretro
index ac9c0e92..83f0902d 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -102,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