From 8f37dcac04da355430a7a319b955e5a4733516ec Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Tue, 28 Jan 2020 13:43:05 +0100 Subject: [PATCH] Remove duplicate -fembed-bitcode --- dist-build/ios.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist-build/ios.sh b/dist-build/ios.sh index 2a2122ab..ef1848ff 100755 --- a/dist-build/ios.sh +++ b/dist-build/ios.sh @@ -101,8 +101,8 @@ make distclean > /dev/null make -j${PROCESSORS} install || exit 1 ## 64-bit iOS -export CFLAGS="-fembed-bitcode -O2 -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN} -fembed-bitcode" -export LDFLAGS="-fembed-bitcode -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN} -fembed-bitcode" +export CFLAGS="-fembed-bitcode -O2 -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}" +export LDFLAGS="-fembed-bitcode -arch arm64 -isysroot ${SDK} -mios-version-min=${IOS_VERSION_MIN}" make distclean > /dev/null