Skip to content

Commit e4a3141

Browse files
committed
Merge branch 'master' into dev
2 parents 374bf94 + 1a4c003 commit e4a3141

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

docs/advanced_installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ sudo apt-get install libeigen3-dev libboost-serialization-dev libboost-filesyste
2424
For OSX with brew:
2525

2626
```bash
27-
brew install eigen3
27+
brew install eigen
2828
brew install boost
2929
```
3030

scripts/install_deps.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 ../..

scripts/install_deps_all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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 ../..

scripts/install_deps_req.sh

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ echo "Detected OS: $OS"
55

66
if [ $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
1010
else
1111
# check if we have Ubuntu or not
@@ -20,7 +20,7 @@ else
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
2626
fi
@@ -61,5 +61,7 @@ make install
6161
# go back to original directory
6262
cd ../..
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

0 commit comments

Comments
 (0)