summaryrefslogtreecommitdiff
path: root/dist-build/ios.sh
diff options
context:
space:
mode:
Diffstat (limited to 'dist-build/ios.sh')
-rwxr-xr-xdist-build/ios.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/dist-build/ios.sh b/dist-build/ios.sh
new file mode 100755
index 0000000..cd8384a
--- /dev/null
+++ b/dist-build/ios.sh
@@ -0,0 +1,16 @@
+#! /bin/sh
+
+export XCODEDIR=$(xcode-select -p)
+export BASEDIR="${XCODEDIR}/Platforms/iPhoneOS.platform/Developer"
+export PATH="${BASEDIR}/usr/bin:$BASEDIR/usr/sbin:$PATH"
+export SDK="${BASEDIR}/SDKs/iPhoneOS8.0.sdk"
+export CFLAGS="-Oz -mthumb -arch armv7 -isysroot ${SDK}"
+export LDFLAGS="-mthumb -arch armv7 -isysroot ${SDK}"
+export PREFIX="$(pwd)/libsodium-ios"
+
+./configure --host=arm-apple-darwin10 \
+ --disable-shared \
+ --prefix="$PREFIX" && \
+make clean && \
+make -j3 install && \
+echo "libsodium has been installed into $PREFIX"