iOS fixes

This commit is contained in:
Anthony Green
2011-02-12 12:29:36 -05:00
parent 71c792f51b
commit 90af15ef5c
10 changed files with 4702 additions and 14 deletions

View File

@@ -20,3 +20,4 @@ irix
sparc-abi-check
remove-debug-code
ungccify
ios-fixes

0
.pc/ios-fixes/.timestamp Normal file
View File

4528
.pc/ios-fixes/ChangeLog Normal file

File diff suppressed because it is too large Load Diff

12
.pc/ios-fixes/build-ios.sh Executable file
View File

@@ -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=arm-apple-darwin10 && make
popd