aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKoichi Shiraishi <zchee.io@gmail.com>2016-12-21 15:50:26 +0900
committerDavid Crawshaw <crawshaw@golang.org>2016-12-21 12:27:41 +0000
commit0ef4815150782a47cde25937349f9c4441b0e78e (patch)
treedc26a8591978332dc870b86d436c24dbcdfe6394
parent8599c0da1f7ffc1f230ee49ddb9838a5caff358a (diff)
downloadgo-0ef4815150782a47cde25937349f9c4441b0e78e.tar.gz
go-0ef4815150782a47cde25937349f9c4441b0e78e.zip
build: fix darwin/arm broken on macOS 10.12 with Xcode 8.0
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>
-rwxr-xr-xmisc/ios/clangwrap.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/ios/clangwrap.sh b/misc/ios/clangwrap.sh
index 9cad49fe7d..9141c8c447 100755
--- a/misc/ios/clangwrap.sh
+++ b/misc/ios/clangwrap.sh
@@ -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 "$@"