Commit a82e6c354ea805114642a6e440abd0832cb1d23f

Landon Fuller 2010-09-18T14:44:24

Add a stub iOS build script to drive autoconf

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
diff --git a/build-iphone.sh b/build-iphone.sh
new file mode 100755
index 0000000..a3593aa
--- /dev/null
+++ b/build-iphone.sh
@@ -0,0 +1,12 @@
+#!/bin/sh
+
+PLATFORM_IOS=/Developer/Platforms/iPhoneOS.platform/
+PLATFORM_IOS_SIM=/Developer/Platforms/iPhoneSimulator.platform/
+SDK_IOS_VERSION="4.1"
+
+mkdir -p "build-ios"
+pushd "build-ios"
+export CC="${PLATFORM_IOS}"/Developer/usr/bin/gcc-4.2
+export CFLAGS="-arch armv6 -isysroot ${PLATFORM_IOS}/Developer/SDKs/iPhoneOS${SDK_IOS_VERSION}.sdk/"
+../configure --host=armv6-apple-darwin && make
+popd