aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-09-17 21:35:16 -0700
committerGravatar Hoa V. DINH <dinh.viet.hoa@gmail.com>2014-09-17 21:35:16 -0700
commit4dd5824bd6eac0694a5ba1d2213f9bced1dceaf3 (patch)
tree48c906248136431babc6c36afa769d157104f254
parent81cdb16aafd093aeb71e45a03b13714b8489308f (diff)
fixed build of ICU
-rwxr-xr-xscripts/prepare-icu4c-ios.sh5
1 files changed, 4 insertions, 1 deletions
diff --git a/scripts/prepare-icu4c-ios.sh b/scripts/prepare-icu4c-ios.sh
index 1e84686a..31cb13d7 100755
--- a/scripts/prepare-icu4c-ios.sh
+++ b/scripts/prepare-icu4c-ios.sh
@@ -95,7 +95,10 @@ make # >> "$logdir/icu4c-build.log"
make install "prefix=$tmpdir/crossbuild/icu4c-$MARCH" # >> "$logdir/icu4c-build.log"
ARCH=arm
-if xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
+if xcodebuild -showsdks|grep iphoneos7.1 >/dev/null ; then
+ sdkversion=7.1
+ MARCHS="armv7 armv7s arm64"
+elif xcodebuild -showsdks|grep iphoneos7.0 >/dev/null ; then
sdkversion=7.0
MARCHS="armv7 armv7s arm64"
elif xcodebuild -showsdks|grep iphoneos6.1 >/dev/null ; then