From f67ce5033d0a01292c9ef156b95c025a3e1edcbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Thomas=20P=C3=B6chtrager?= Date: Mon, 19 Aug 2019 20:48:23 +0200 Subject: [PATCH] build.sh: Make Clang the default assembler for GCC --- build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sh b/build.sh index ef85f23..1872038 100755 --- a/build.sh +++ b/build.sh @@ -120,7 +120,7 @@ if [ $f_res -eq 1 ]; then CONFFLAGS+="--with-libtapi=$TARGET_DIR " fi CONFFLAGS+="--with-libxar=$TARGET_DIR " - [ -z "$USE_CLANG_AS" ] && CONFFLAGS+="--disable-clang-as " + [ -n "$DISABLE_CLANG_AS" ] && CONFFLAGS+="--disable-clang-as " [ -n "$DISABLE_LTO_SUPPORT" ] && CONFFLAGS+="--disable-lto-support " # https://github.com/tpoechtrager/osxcross/issues/156 CXX="$CXX -DNDEBUG" ./configure $CONFFLAGS