Skip to content

Commit

Permalink
Minor update to Boost building doc to reflect paring down to filesyst…
Browse files Browse the repository at this point in the history
…em,system
  • Loading branch information
andrewfb committed Feb 21, 2015
1 parent ed32b23 commit 03f2c34
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs/doxygen/docsrc/guides/cinderboost/CinderBoost.dox
Expand Up @@ -22,11 +22,11 @@ You'll need to replace <em>tools/build/v2/user-config.jam</em> with the followin

\code
using clang : osx
: xcrun clang -arch i386 -arch x86_64 -stdlib=libc++ -std=c++11 -mmacosx-version-min=10.7 -fvisibility-inlines-hidden
: xcrun clang -arch i386 -arch x86_64 -stdlib=libc++ -std=c++11 -mmacosx-version-min=10.8 -fvisibility-inlines-hidden
;

using clang : ios
: xcrun clang -arch armv7 -arch armv7s -stdlib=libc++ -std=c++11 -miphoneos-version-min=5.0 -fvisibility-inlines-hidden -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/
: xcrun clang -arch armv7 -arch arm64 -stdlib=libc++ -std=c++11 -miphoneos-version-min=5.0 -fvisibility-inlines-hidden -isysroot /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS6.0.sdk/
;

using clang : ios_sim
Expand All @@ -37,7 +37,7 @@ using clang : ios_sim
<b>MacOS X</b>\n
<tt>
cd cinder/boost\n
./bootstrap.sh --with-libraries=filesystem,system,date_time
./bootstrap.sh --with-libraries=filesystem,system
./b2 -a -j4 toolset=clang-osx link=static stage
cp stage/lib/*.a ../lib/macosx\n
</tt>
Expand All @@ -59,7 +59,7 @@ From the Visual Studio 2012 Command Prompt:\n
<tt>
cd cinder\\boost\n
bootstrap\n
b2 runtime-link=static debug-symbols=off optimization=space --with-filesystem --with-date_time --with-system --with-thread\n
b2 runtime-link=static debug-symbols=off optimization=space --with-filesystem --with-system\n
copy stage\\lib\\*.lib ..\\lib\\msw\\x86\n
</tt>
\n
Expand All @@ -68,23 +68,23 @@ From the Visual Studio 2012 Command Prompt:\n
<tt>
cd cinder\\boost\n
bootstrap\n
b2 runtime-link=static address-model=64 debug-symbols=off optimization=space --with-filesystem --with-date_time --with-system --with-thread\n
b2 runtime-link=static address-model=64 debug-symbols=off optimization=space --with-filesystem --with-system\n
</tt>
\n
<b>Visual C++ 2013</b>:\n
From the Command Prompt, start by running <tt>C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat</tt>:\n
<tt>
cd cinder\\boost\n
bootstrap\n
b2 runtime-link=static debug-symbols=off optimization=space --with-filesystem --with-date_time --with-system --with-thread\n
b2 runtime-link=static debug-symbols=off optimization=space --with-filesystem --with-system\n
</tt>
\n
<b>Visual C++ 2013 x64</b>:\n
From the Command Prompt, start by running <tt>C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat x86_amd64</tt>:\n
<tt>
cd cinder\\boost\n
bootstrap\n
b2 runtime-link=static address-model=64 debug-symbols=off optimization=space --with-filesystem --with-date_time --with-system --with-thread\n
b2 runtime-link=static address-model=64 debug-symbols=off optimization=space --with-filesystem --with-system\n
</tt>
\n
\n
Expand Down

0 comments on commit 03f2c34

Please sign in to comment.