it appears that two of the boost libraries fail (one of them is threading-multi) but I guess ogre doesn't use them so thats fine.
Create a user configuration file
/Users/User-Name/user-config.jam
using darwin : 6.0~iphone
: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2 -arch armv7 -mthumb -fvisibility=hidden -fvisibility-inlines-hidden
: <striper>
: <architecture>arm <target-os>iphone
;
using darwin : 6.0~iphonesim
: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-gcc-4.2 -arch i386 -fvisibility=hidden -fvisibility-inlines-hidden
: <striper>
: <architecture>x86 <target-os>iphone
;
Actually use this one for now
using darwin : 6.0~iphone
: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin/llvm-gcc-4.2 -arch armv7
: <striper>
: <architecture>arm <target-os>iphone
;
using darwin : 6.0~iphonesim
: /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin/llvm-gcc-4.2 -arch i386
: <striper>
: <architecture>x86 <target-os>iphone
;
run bootstrap.sh
./bootstrap.sh
build armv7
export SDK_VERSION="6.0"
./bjam --prefix=/users/User_Name/boost_arm_output toolset=darwin variant=release architecture=arm target-os=iphone macosx-version=iphone-${SDK_VERSION} define=_LITTLE_ENDIAN link=static install
build i386
export SDK_VERSION="6.0"
./bjam --prefix=/users/User_Name/boost_i386_output toolset=darwin variant=release architecture=x86 target-os=iphone macosx-version=iphonesim-${SDK_VERSION} link=static install