[vlc-commits] contrib: don' t use the gas-preprocessor when compiling for the iOS simulator
Felix Paul Kühne
git at videolan.org
Wed Nov 6 23:31:27 CET 2013
vlc/vlc-2.1 | branch: master | Felix Paul Kühne <fkuehne at videolan.org> | Wed Nov 6 23:29:17 2013 +0100| [d735d2209a621b9c4c191e8fe235edabab77d864] | committer: Felix Paul Kühne
contrib: don't use the gas-preprocessor when compiling for the iOS simulator
(cherry picked from commit a5051b22cd0efa480b3bc35a391364d723262db0)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-2.1.git/?a=commit;h=d735d2209a621b9c4c191e8fe235edabab77d864
---
contrib/src/main.mak | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/contrib/src/main.mak b/contrib/src/main.mak
index 4cc0a8f..4e568ec 100644
--- a/contrib/src/main.mak
+++ b/contrib/src/main.mak
@@ -130,10 +130,11 @@ CC=xcrun clang
CXX=xcrun clang++
ifeq ($(ARCH), arm)
AS=perl $(abspath ../../extras/tools/build/bin/gas-preprocessor.pl) $(CC)
+CCAS=gas-preprocessor.pl $(CC) -c
else
+CCAS=$(CC) -c
AS=xcrun as
endif
-CCAS=gas-preprocessor.pl $(CC) -c
AR=xcrun ar
LD=xcrun ld
STRIP=xcrun strip
More information about the vlc-commits
mailing list