-
Notifications
You must be signed in to change notification settings - Fork 14
/
install.sh
48 lines (39 loc) · 1.68 KB
/
install.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
#!/bin/sh
sudo apt-get -y install git cmake build-essential libboost-system-dev libboost-program-options-dev libboost-thread-dev libboost-test-dev pkg-config libeigen3-dev libboost-filesystem-dev
# cmake makros
git clone https://github.com/rock-core/base-cmake.git
mkdir base-cmake/build && cd base-cmake/build
cmake .. && make -j8 && sudo make install && cd ../..
# Logging
git clone https://github.com/rock-core/base-logging.git
mkdir base-logging/build && cd base-logging/build
cmake .. && make -j8 && sudo make install && cd ../..
# Base Types
git clone https://github.com/rock-core/base-types.git
mkdir base-types/build && cd base-types/build
cmake .. -DUSE_SISL=OFF -DBINDINGS_RUBY=OFF -DROCK_VIZ_ENABLED=OFF
make -j8 && sudo make install && cd ../..
# URDF
sudo apt-get -y install liburdfdom-headers-dev liburdfdom-dev
# Clone WBC repo here to have the patches
git clone https://github.com/ARC-OPT/wbc.git
# Pinocchio
git clone --branch v2.6.8 --recurse-submodules https://github.com/stack-of-tasks/pinocchio.git
cd pinocchio
mkdir build && cd build
cmake .. -DBUILD_PYTHON_INTERFACE=OFF -DBUILD_UNIT_TESTS=OFF -DCMAKE_BUILD_TYPE=RELEASE
make -j8 && sudo make install && cd ../..
# If not done yet, setup a ssh key pair using the command `ssh-keygen` and add the
# key from `~/.ssh/id_rsa.pub `to the keys in your Gitlab account.
# qpOASES
git clone https://github.com/coin-or/qpOASES.git -b releases/3.2.0
cd qpOASES
mkdir patches && cp ../wbc/patches/qpOASES.patch patches
git apply patches/qpOASES.patch
mkdir build && cd build
cmake .. && make -j8 && sudo make install && cd ../..
# WBC
mkdir wbc/build && cd wbc/build
cmake .. -DCMAKE_BUILD_TYPE=RELEASE
make -j8 && sudo make install
sudo ldconfig