Allow specification of the minimum supported iOS version.
This commit is contained in:
@@ -3,10 +3,11 @@
|
|||||||
PLATFORM_IOS=/Developer/Platforms/iPhoneOS.platform/
|
PLATFORM_IOS=/Developer/Platforms/iPhoneOS.platform/
|
||||||
PLATFORM_IOS_SIM=/Developer/Platforms/iPhoneSimulator.platform/
|
PLATFORM_IOS_SIM=/Developer/Platforms/iPhoneSimulator.platform/
|
||||||
SDK_IOS_VERSION="4.1"
|
SDK_IOS_VERSION="4.1"
|
||||||
|
MIN_IOS_VERSION="3.0"
|
||||||
|
|
||||||
mkdir -p "build-ios"
|
mkdir -p "build-ios"
|
||||||
pushd "build-ios"
|
pushd "build-ios"
|
||||||
export CC="${PLATFORM_IOS}"/Developer/usr/bin/gcc-4.2
|
export CC="${PLATFORM_IOS}"/Developer/usr/bin/gcc-4.2
|
||||||
export CFLAGS="-arch armv6 -isysroot ${PLATFORM_IOS}/Developer/SDKs/iPhoneOS${SDK_IOS_VERSION}.sdk/"
|
export CFLAGS="-arch armv6 -isysroot ${PLATFORM_IOS}/Developer/SDKs/iPhoneOS${SDK_IOS_VERSION}.sdk/ -miphoneos-version-min=${MIN_IOS_VERSION}"
|
||||||
../configure --host=arm-apple-darwin10 && make
|
../configure --host=arm-apple-darwin10 && make
|
||||||
popd
|
popd
|
||||||
|
|||||||
Reference in New Issue
Block a user