assimp/port/iOS
sth519 4050f42ef1 Default to latest installed iOS SDK by default
The iOS 7.1 SDK isn't available anymore in the current version of Xcode, so the script doesn't work without modification.
By setting IOS_SDK_VERSION to an empty value, the script will default to a symlink* which always points to the latest installed SDK.

* /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS.sdk
2014-11-27 14:37:46 +01:00
..
IPHONEOS_ARM64_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
IPHONEOS_ARMV6_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
IPHONEOS_ARMV7S_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
IPHONEOS_ARMV7_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
IPHONEOS_I386_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
IPHONEOS_X86_64_TOOLCHAIN.cmake Fixed half-width from the full-width double quotes. 2014-04-14 23:04:36 +09:00
README.md Readme and cosmetics 2014-03-20 17:25:35 -07:00
build.sh Default to latest installed iOS SDK by default 2014-11-27 14:37:46 +01:00

README.md

assimp for iOS-SDK 7.1

(deployment target 6.0+, 32/64bit)

Builds assimp libraries for several iOS CPU architectures at once, and outputs a fat binary from the result.

Run the build.sh script from the ./port/iOS/ directory. See ./build.sh --help for information about command line options.

shadeds-Mac:iOS arul$ ./build.sh --help
[!] ./build.sh - assimp iOS build script
 - don't build fat library (--no-fat)
 - supported architectures(--archs): armv7, armv7s, arm64, i386, x86_64
 - supported C++ STD libs.(--stdlib): libc++, libstdc++

Example:

cd ./port/iOS/
./build.sh --stdlib=libc++ --archs="armv7 arm64 i386"

Supported architectures/devices:

Simulator

  • i386
  • x86_64

Device

  • ARMv6 (dropped after iOS 6.0)
  • ARMv7
  • ARMv7-s
  • ARM64