Commit 0f4ce731 authored by Felix Paul Kühne's avatar Felix Paul Kühne

contrib: add the correct -mcpu flag when compiling for iOS on ARM

parent 55f9dac0
...@@ -160,7 +160,7 @@ LD=xcrun ld ...@@ -160,7 +160,7 @@ LD=xcrun ld
STRIP=xcrun strip STRIP=xcrun strip
RANLIB=xcrun ranlib RANLIB=xcrun ranlib
ifeq ($(ARCH), arm) ifeq ($(ARCH), arm)
EXTRA_CFLAGS += -arch armv7 -mno-thumb EXTRA_CFLAGS += -arch armv7 -mno-thumb -mcpu=cortex-a8
EXTRA_LDFLAGS += -arch armv7 EXTRA_LDFLAGS += -arch armv7
else else
EXTRA_CFLAGS += -m32 EXTRA_CFLAGS += -m32
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment