aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortwinaphex2013-03-22 16:51:13 +0100
committertwinaphex2013-03-22 16:51:13 +0100
commit0286c81237da184cd98afa96bf0215d0e9d2a596 (patch)
treeed804a98d55ac573683ef56947f563393346276b
parent6e1ff5d28d34660d3812c2160f498e0e35ef2483 (diff)
downloadpcsx_rearmed-0286c81237da184cd98afa96bf0215d0e9d2a596.tar.gz
pcsx_rearmed-0286c81237da184cd98afa96bf0215d0e9d2a596.tar.bz2
pcsx_rearmed-0286c81237da184cd98afa96bf0215d0e9d2a596.zip
(iOS) Use GCC (not working yet)
-rw-r--r--Makefile.libretro9
1 files changed, 5 insertions, 4 deletions
diff --git a/Makefile.libretro b/Makefile.libretro
index 213b409..435a7f7 100644
--- a/Makefile.libretro
+++ b/Makefile.libretro
@@ -42,10 +42,11 @@ ARCH := arm
fpic := -fPIC
SHARED := -dynamiclib
-CC = clang -arch armv7 -isysroot $(IOSSDK)
-CXX = clang++ -arch armv7 -isysroot $(IOSSDK)
-CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon
-ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon
+CC = $(IOSSDK)../../usr/bin/gcc
+CXX = $(IOSSDK)../../usr/bin/g++
+CFLAGS += -cpu=cortex-a8 -mfpu=neon
+ASFLAGS += -cpu=cortex-a8 -mfpu=neon
+
HAVE_NEON = 1
CFLAGS += -DIOS
else ifeq ($(platform), ps3)