Skip to content

Commit 79bfa95

Browse files
committed
Update install script
1 parent 5ab6f31 commit 79bfa95

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

install.sh

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/bin/bash
2-
sudo apt-get install -y build-essential libcap-dev cmake
2+
sudo apt-get install -y build-essential libcap-dev cmake libboost-all-dev libcapstone-dev
3+
34
# Install z3
45
python2 -c "import z3"
56
NOT_INSTALLED=$?
@@ -27,5 +28,12 @@ then
2728
sudo make -j $(grep processor < /proc/cpuinfo | wc -l) install
2829
cd ../..
2930
fi
31+
32+
# Install python modules
33+
if [ !$(which pip2) ]; then
34+
sudo apt install python-pip
35+
fi
3036
sudo pip2 install --upgrade -r requirements.txt
37+
38+
# Build gdb
3139
./build.sh

0 commit comments

Comments
 (0)