mirror of
https://github.com/golang/go
synced 2024-11-07 05:46:17 -07:00
e457cc38af
Recent Xcode versions started to complain about the current min version: ld: warning: OS version (6.0.0) too small, changing to 7.0.0 Change-Id: Ieb525dd3e57429fe226b9d30d584b073c5e4768c Reviewed-on: https://go-review.googlesource.com/c/go/+/204663 Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com> Run-TryBot: Elias Naur <mail@eliasnaur.com> TryBot-Result: Gobot Gobot <gobot@golang.org>
21 lines
630 B
Bash
Executable File
21 lines
630 B
Bash
Executable File
#!/bin/sh
|
|
# This uses the latest available iOS SDK, which is recommended.
|
|
# To select a specific SDK, run 'xcodebuild -showsdks'
|
|
# to see the available SDKs and replace iphoneos with one of them.
|
|
SDK=iphoneos
|
|
SDK_PATH=`xcrun --sdk $SDK --show-sdk-path`
|
|
export IPHONEOS_DEPLOYMENT_TARGET=5.1
|
|
# cmd/cgo doesn't support llvm-gcc-4.2, so we have to use clang.
|
|
CLANG=`xcrun --sdk $SDK --find clang`
|
|
|
|
if [ "$GOARCH" == "arm" ]; then
|
|
CLANGARCH="armv7"
|
|
elif [ "$GOARCH" == "arm64" ]; then
|
|
CLANGARCH="arm64"
|
|
else
|
|
echo "unknown GOARCH=$GOARCH" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec $CLANG -arch $CLANGARCH -isysroot $SDK_PATH -mios-version-min=10.0 "$@"
|