From 8ad07683d79468d24a5adf3eaf8150cd63982aeb Mon Sep 17 00:00:00 2001 From: notaz Date: Sun, 24 Mar 2013 22:04:35 +0100 Subject: use gas-preprocessor for ios imported from https://github.com/yuvi/gas-preprocessor --- Makefile.libretro | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'Makefile.libretro') diff --git a/Makefile.libretro b/Makefile.libretro index d8288f5..f006409 100644 --- a/Makefile.libretro +++ b/Makefile.libretro @@ -27,6 +27,7 @@ endif CC ?= gcc CXX ?= g++ AS ?= as +CC_AS ?= $(CC) ifeq ($(platform), unix) TARGET := snes9x_next_libretro.so @@ -44,6 +45,7 @@ ARCH := arm CC = clang -arch armv7 -isysroot $(IOSSDK) CXX = clang++ -arch armv7 -isysroot $(IOSSDK) +CC_AS = perl ./tools/gas-preprocessor.pl $(CC) CFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon ASFLAGS += -mcpu=cortex-a8 -mtune=cortex-a8 -mfpu=neon HAVE_NEON = 1 @@ -228,7 +230,7 @@ frontend/revision.h: FORCE @rm $@_ %.o: %.S - $(CC) $(CFLAGS) -c $^ -o $@ + $(CC_AS) $(CFLAGS) -c $^ -o $@ %.o: %.s $(CC) $(ASFLAGS) -c $^ -o $@ -- cgit v1.2.3