aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/build-mailcore2-ios.sh
diff options
context:
space:
mode:
authorGravatar George Nachman <georgen@google.com>2014-07-24 12:02:23 -0700
committerGravatar George Nachman <georgen@google.com>2014-07-24 12:02:23 -0700
commit1f243bb124f03e2b8710dc70f31010ab42cdf964 (patch)
tree4a056c057871f1b7ee8e20982ce2881ab3675e2d /scripts/build-mailcore2-ios.sh
parent75a1a0c4f7a3105b061de787be0c257544d20ffd (diff)
Add sdk 7.1 and 8 to build-mailcore2-ios
Diffstat (limited to 'scripts/build-mailcore2-ios.sh')
-rwxr-xr-xscripts/build-mailcore2-ios.sh10
1 files changed, 8 insertions, 2 deletions
diff --git a/scripts/build-mailcore2-ios.sh b/scripts/build-mailcore2-ios.sh
index e04755b3..b6d3bfe7 100755
--- a/scripts/build-mailcore2-ios.sh
+++ b/scripts/build-mailcore2-ios.sh
@@ -2,10 +2,16 @@
if xcodebuild -showsdks|grep iphoneos6.1 >/dev/null ; then
sdkversion=6.1
- devicearchs="armv7 armv7s"
+ devicearchs="armv7 armv7s"
elif xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
sdkversion=7.0
- devicearchs="armv7 armv7s arm64"
+ devicearchs="armv7 armv7s arm64"
+elif xcodebuild -showsdks|grep iphoneos7.1 >/dev/null ; then
+ sdkversion=7.1
+ devicearchs="armv7 armv7s arm64"
+elif xcodebuild -showsdks|grep iphoneos8.0 >/dev/null ; then
+ sdkversion=8.0
+ devicearchs="armv7 armv7s arm64"
else
echo SDK not found
exit 1