Skip to content

Instantly share code, notes, and snippets.

@sansumbrella
Created November 12, 2012 04:43
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sansumbrella/4057565 to your computer and use it in GitHub Desktop.
Save sansumbrella/4057565 to your computer and use it in GitHub Desktop.
Boost config for building with Clang and libc++ support
# --------------------
# Clang configuration.
# --------------------
using clang : osx
: xcrun clang -arch i386 -arch x86_64 -stdlib=libc++ -std=c++11
;
using clang : ios
: xcrun clang -arch armv7 -arch armv7s -stdlib=libc++ -std=c++11 -miphoneos-version-min=5.0 -isysroot
/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk
;
@sansumbrella
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment