summaryrefslogtreecommitdiffstats
path: root/packaging/ios
diff options
context:
space:
mode:
authorGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-17 22:36:29 -0700
committerGravatar Dirk Hohndel <dirk@hohndel.org>2016-04-17 22:36:29 -0700
commit5e4290996415d5ac927ac108aefad286248ca21d (patch)
treeb483cfb22f13c8f6075feda5f48a05054c223c30 /packaging/ios
parentecf44bb2faccf080215ccb2f660b36316169ec60 (diff)
downloadsubsurface-5e4290996415d5ac927ac108aefad286248ca21d.tar.gz
iOS build: include the libraries for the phone simulator
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'packaging/ios')
-rw-r--r--packaging/ios/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/ios/build.sh b/packaging/ios/build.sh
index be313f094..dd1531792 100644
--- a/packaging/ios/build.sh
+++ b/packaging/ios/build.sh
@@ -357,5 +357,5 @@ done
cp -a install-root-arm64 install-root
cd install-root/lib
for LIB in $(find . -type f -name \*.a); do
- lipo ../../install-root-armv7/lib/$LIB ../../install-root-arm64/lib/$LIB -create -output $LIB
+ lipo ../../install-root-armv7/lib/$LIB ../../install-root-arm64/lib/$LIB ../../install-root-x86_64/lib/$LIB -create -output $LIB
done