From: Martin Storsjö Date: Fri, 24 Mar 2017 09:33:34 +0000 (+0200) Subject: aarch64: Skip invoking gas-preprocessor for iOS X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=a84e6a486b991bffb2cc9f86b6e236978d251d2c;p=libx264 aarch64: Skip invoking gas-preprocessor for iOS Clang can handle all the constructs used there these days, working since Xcode 6 at least. --- diff --git a/configure b/configure index 07de5fa8..9751def8 100755 --- a/configure +++ b/configure @@ -777,11 +777,9 @@ case $host_cpu in aarch64) ARCH="AARCH64" stack_alignment=16 + AS="${AS-${CC}}" if [ "$SYS" = MACOSX ] ; then - AS="${AS-${SRCPATH}/tools/gas-preprocessor.pl -arch aarch64 -- ${CC}}" ASFLAGS="$ASFLAGS -DPREFIX -DPIC" - else - AS="${AS-${CC}}" fi ;; s390|s390x)