File tree Expand file tree Collapse file tree 4 files changed +9
-7
lines changed
Expand file tree Collapse file tree 4 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ sudo apt-get install libeigen3-dev libboost-serialization-dev libboost-filesyste
2424For OSX with brew:
2525
2626``` bash
27- brew install eigen3
27+ brew install eigen
2828brew install boost
2929```
3030
Original file line number Diff line number Diff line change @@ -98,4 +98,4 @@ cd deps/robot_dart
9898./waf
9999./waf install
100100# go back to original directory
101- cd ../..
101+ cd ../..
Original file line number Diff line number Diff line change @@ -98,4 +98,4 @@ cd deps/robot_dart
9898./waf
9999./waf install
100100# go back to original directory
101- cd ../..
101+ cd ../..
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ echo "Detected OS: $OS"
55
66if [ $OS = " Darwin" ]; then
77 echo " Installing for OSX via brew"
8- brew install cmake eigen3 boost
8+ brew install cmake eigen boost tbb
99 brew install autoconf automake
1010else
1111 # check if we have Ubuntu or not
2020 echo " Installing for Ubuntu via apt-get"
2121 sudo apt-get -qq update
2222 # install Eigen 3, Boost
23- sudo apt-get --yes --force-yes install cmake libeigen3-dev libboost-serialization-dev libboost-filesystem-dev libboost-test-dev libboost-program-options-dev libboost-thread-dev libboost-regex-dev
23+ sudo apt-get --yes --force-yes install cmake libeigen3-dev libtbb-dev libboost-serialization-dev libboost-filesystem-dev libboost-test-dev libboost-program-options-dev libboost-thread-dev libboost-regex-dev
2424 # install google tests for libcmaes
2525 sudo apt-get --yes --force-yes install libgtest-dev autoconf automake libtool libgoogle-glog-dev libgflags-dev
2626fi
@@ -61,5 +61,7 @@ make install
6161# go back to original directory
6262cd ../..
6363
64- # just as fail-safe
65- sudo ldconfig
64+ # just as fail-safe in Linux
65+ if [ $OS = " Linux" ]; then
66+ sudo ldconfig
67+ fi
You can’t perform that action at this time.
0 commit comments