build-gcc.sh 668 B

1234567891011121314151617
  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 <include>/usr/local/include ;
  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 "$@" OPTJ=-j20 \
  12. BOOST_DEFINES="-sICU_PATH=/opt/local cxxflags=\"-I/opt/local/include\" linkflags=\"-L/opt/local/lib\""