]> Cypherpunks repositories - gostls13.git/commitdiff
build: fix darwin/arm broken on macOS 10.12 with Xcode 8.0
authorKoichi Shiraishi <zchee.io@gmail.com>
Wed, 21 Dec 2016 06:50:26 +0000 (15:50 +0900)
committerDavid Crawshaw <crawshaw@golang.org>
Wed, 21 Dec 2016 12:27:41 +0000 (12:27 +0000)
Xcode 8.0 has been donen't support the iOS 5 anymore

Fixes #18390.

Change-Id: Icc97e09424780c610a8fe173d0cf461d76b06da4
Reviewed-on: https://go-review.googlesource.com/34673
Reviewed-by: David Crawshaw <crawshaw@golang.org>
misc/ios/clangwrap.sh

index 9cad49fe7d86f5fda9a6fff0497e2d092a9baaff..9141c8c4474c22360de932545f3881e204a490a3 100755 (executable)
@@ -17,4 +17,4 @@ else
        exit 1
 fi
 
-exec $CLANG -arch $CLANGARCH -isysroot $SDK_PATH "$@"
+exec $CLANG -arch $CLANGARCH -isysroot $SDK_PATH -mios-version-min=6.0 "$@"