aboutsummaryrefslogtreecommitdiffhomepage
path: root/scripts/prepare-icu4c-ios.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/prepare-icu4c-ios.sh')
-rwxr-xr-xscripts/prepare-icu4c-ios.sh19
1 files changed, 13 insertions, 6 deletions
diff --git a/scripts/prepare-icu4c-ios.sh b/scripts/prepare-icu4c-ios.sh
index 31cb13d7..2e01c2db 100755
--- a/scripts/prepare-icu4c-ios.sh
+++ b/scripts/prepare-icu4c-ios.sh
@@ -1,11 +1,14 @@
#!/bin/sh
-if xcodebuild -showsdks|grep iphoneos8.0 >/dev/null ; then
+if xcodebuild -showsdks|grep iphoneos8.1 >/dev/null ; then
+ sdkversion=8.1
+ archs="armv7 armv7s arm64 i386 x86_64"
+elif xcodebuild -showsdks|grep iphoneos8.0 >/dev/null ; then
sdkversion=8.0
archs="armv7 armv7s arm64 i386 x86_64"
elif xcodebuild -showsdks|grep iphoneos7.1 >/dev/null ; then
- sdkversion=7.1
- archs="armv7 armv7s arm64 i386 x86_64"
+ sdkversion=7.1
+ archs="armv7 armv7s arm64 i386 x86_64"
elif xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
sdkversion=7.0
archs="armv7 armv7s arm64 i386 x86_64"
@@ -95,7 +98,13 @@ make # >> "$logdir/icu4c-build.log"
make install "prefix=$tmpdir/crossbuild/icu4c-$MARCH" # >> "$logdir/icu4c-build.log"
ARCH=arm
-if xcodebuild -showsdks|grep iphoneos7.1 >/dev/null ; then
+if xcodebuild -showsdks|grep iphoneos8.1 >/dev/null ; then
+ sdkversion=8.1
+ MARCHS="armv7 armv7s arm64"
+elif xcodebuild -showsdks|grep iphoneos8.0 >/dev/null ; then
+ sdkversion=8.0
+ MARCHS="armv7 armv7s arm64"
+elif xcodebuild -showsdks|grep iphoneos7.1 >/dev/null ; then
sdkversion=7.1
MARCHS="armv7 armv7s arm64"
elif xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
@@ -103,8 +112,6 @@ elif xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
MARCHS="armv7 armv7s arm64"
elif xcodebuild -showsdks|grep iphoneos6.1 >/dev/null ; then
MARCHS="armv7 armv7s"
-elif xcodebuild -showsdks|grep iphoneos8.0 >/dev/null ; then
- MARCHS="armv7 armv7s arm64"
else
echo SDK not found
exit 1