diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2020-12-16 16:47:11 -0800 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2020-12-17 09:17:54 -0800 |
commit | 7bdd968e05a3ec11ab9f207e7bd32ff7bffc34a8 (patch) | |
tree | a4d9a6de13d1c07545dca614995331f97d1a0bb0 /packaging | |
parent | e3a83dcc90d4aa490dab45272edb1d87150480b0 (diff) | |
download | subsurface-7bdd968e05a3ec11ab9f207e7bd32ff7bffc34a8.tar.gz |
build-system/iOS: fix minimum iOS version supported
Qt requires iOS 10, let's not pretend that we can support ancient iOS 6.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging')
-rwxr-xr-x | packaging/ios/build.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh index b4706770b..51cb66d9a 100755 --- a/packaging/ios/build.sh +++ b/packaging/ios/build.sh @@ -118,7 +118,7 @@ for ARCH in $ARCHS; do declare -x CC=$(xcrun -sdk $SDK_NAME -find clang) declare -x CXX=$(xcrun -sdk $SDK_NAME -find clang++) declare -x LD=$(xcrun -sdk $SDK_NAME -find ld) - declare -x CFLAGS="-arch $ARCH_NAME -isysroot $SDK_DIR -miphoneos-version-min=6.0 -I$SDK_DIR/usr/include -fembed-bitcode" + declare -x CFLAGS="-arch $ARCH_NAME -isysroot $SDK_DIR -miphoneos-version-min=10.0 -I$SDK_DIR/usr/include -fembed-bitcode" declare -x CXXFLAGS="$CFLAGS" declare -x LDFLAGS="$CFLAGS -lsqlite3 -lpthread -lc++ -L$SDK_DIR/usr/lib -fembed-bitcode" |