From 5e4290996415d5ac927ac108aefad286248ca21d Mon Sep 17 00:00:00 2001
From: Dirk Hohndel <dirk@hohndel.org>
Date: Sun, 17 Apr 2016 22:36:29 -0700
Subject: [PATCH] iOS build: include the libraries for the phone simulator

Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
---
 packaging/ios/build.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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