build.sh 985 B

123456789101112131415161718
  1. #!/bin/sh
  2. # This build script is for OS X Lion users who have compiled openmpi and
  3. # clang-3.1 from MacPorts. I build my own Boost instead of using MacPorts'
  4. # Boost in order to get better debugging support, and to link with libc++.
  5. #export PATH=$PATH:/opt/local/lib/openmpi/bin
  6. cat > ~/user-config.jam <<EOF
  7. using clang-darwin : : "/usr/local/bin/clang++" : <cxxflags>-std=c++11 ;
  8. EOF
  9. # jww (2012-04-24): This is still linking against /usr/lib/libc++.1.dylib
  10. # instead of /usr/local/lib/libc++.1.dylib
  11. make CXX=clang++ LD=clang++ CC=clang OPTJ=-j20 \
  12. BOOST_TOOLSET=clang-darwin DIR_SUFFIX=clang31 \
  13. BOOST_DEFINES="-sHAVE_ICONV=1 -sHAVE_ICU=1 -sICU_PATH=/usr/local/opt/icu4c cxxflags=\"-g -std=c++11 $* -nostdlibinc -isystem /usr/local/include -isystem /usr/local/include/c++/v1 -isystem /usr/include -stdlib=libc++\" linkflags=\"-g $* -L/usr/local/lib -L/usr/lib /usr/local/lib/libc++.dylib -stdlib=libc++\""