Commit a5051b22 authored by Felix Paul Kühne's avatar Felix Paul Kühne

contrib: don't use the gas-preprocessor when compiling for the iOS simulator

parent 3900a730
...@@ -130,10 +130,11 @@ CC=xcrun clang ...@@ -130,10 +130,11 @@ CC=xcrun clang
CXX=xcrun clang++ CXX=xcrun clang++
ifeq ($(ARCH), arm) ifeq ($(ARCH), arm)
AS=perl $(abspath ../../extras/tools/build/bin/gas-preprocessor.pl) $(CC) AS=perl $(abspath ../../extras/tools/build/bin/gas-preprocessor.pl) $(CC)
CCAS=gas-preprocessor.pl $(CC) -c
else else
CCAS=$(CC) -c
AS=xcrun as AS=xcrun as
endif endif
CCAS=gas-preprocessor.pl $(CC) -c
AR=xcrun ar AR=xcrun ar
LD=xcrun ld LD=xcrun ld
STRIP=xcrun strip STRIP=xcrun strip
......
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