diff options
author | Landon Fuller <landonf@bikemonkey.org> | 2010-09-18 18:02:25 -0700 |
---|---|---|
committer | Landon Fuller <landonf@bikemonkey.org> | 2010-09-18 18:02:25 -0700 |
commit | be72fbab29b7190c702d8e1ac3d149855e95879d (patch) | |
tree | e6c882e2b19ddbbf58a98fd08769ba43b0a53e82 | |
parent | 70150bdf4509269965c72f2032bf74f285767afe (diff) | |
download | libffi-be72fbab29b7190c702d8e1ac3d149855e95879d.tar.gz |
Use the correct host triple for arm/darwin
-rwxr-xr-x | build-iphone.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/build-iphone.sh b/build-iphone.sh index a3593aa..d9010af 100755 --- a/build-iphone.sh +++ b/build-iphone.sh @@ -8,5 +8,5 @@ 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 +../configure --host=arm-apple-darwin10 && make popd |