diff options
author | don bright <hugh.m.bright@gmail.com> | 2012-08-18 22:50:45 (GMT) |
---|---|---|
committer | don bright <hugh.m.bright@gmail.com> | 2012-08-18 22:50:45 (GMT) |
commit | e7ebf47d9b3afe36a1c68619ca6be78fa153aad1 (patch) | |
tree | f3bee420432ea94f44d71c1601a3dd76b0dd5349 /scripts/linux-build-dependencies.sh | |
parent | 526ed73ec20c222ab64824c95eae36da3bbf2e57 (diff) |
fix bug in build script for boost
Diffstat (limited to 'scripts/linux-build-dependencies.sh')
-rwxr-xr-x | scripts/linux-build-dependencies.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/linux-build-dependencies.sh b/scripts/linux-build-dependencies.sh index 8bdba4c..154545f 100755 --- a/scripts/linux-build-dependencies.sh +++ b/scripts/linux-build-dependencies.sh @@ -124,7 +124,7 @@ build_boost() # We only need certain portions of boost ./bootstrap.sh --prefix=$DEPLOYDIR --with-libraries=thread,program_options,filesystem,system,regex if [ $CXX ]; then - if [ $CXX = "clang" ]; then + if [ $CXX = "clang++" ]; then ./b2 -j$NUMCPU toolset=clang install # ./b2 -j$NUMCPU toolset=clang cxxflags="-stdlib=libc++" linkflags="-stdlib=libc++" install fi @@ -326,9 +326,9 @@ fi # edit version numbers here as needed. # -build_eigen 3.1.1 -build_gmp 5.0.5 -build_mpfr 3.1.1 +#build_eigen 3.1.1 +#build_gmp 5.0.5 +#build_mpfr 3.1.1 build_boost 1.50.0 # NB! For CGAL, also update the actual download URL in the function build_cgal 4.0.2 |