mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-27 20:58:47 +00:00
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>
This commit is contained in:
parent
e3a83dcc90
commit
7bdd968e05
1 changed files with 1 additions and 1 deletions
|
@ -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"
|
||||
|
||||
|
|
Loading…
Reference in a new issue