diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2016-04-17 22:36:29 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2016-04-17 22:36:29 -0700 |
commit | 5e4290996415d5ac927ac108aefad286248ca21d (patch) | |
tree | b483cfb22f13c8f6075feda5f48a05054c223c30 /packaging/ios | |
parent | ecf44bb2faccf080215ccb2f660b36316169ec60 (diff) | |
download | subsurface-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.sh | 2 |
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 |