We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ab6f31 commit 79bfa95Copy full SHA for 79bfa95
install.sh
@@ -1,5 +1,6 @@
1
#!/bin/bash
2
-sudo apt-get install -y build-essential libcap-dev cmake
+sudo apt-get install -y build-essential libcap-dev cmake libboost-all-dev libcapstone-dev
3
+
4
# Install z3
5
python2 -c "import z3"
6
NOT_INSTALLED=$?
@@ -27,5 +28,12 @@ then
27
28
sudo make -j $(grep processor < /proc/cpuinfo | wc -l) install
29
cd ../..
30
fi
31
32
+# Install python modules
33
+if [ !$(which pip2) ]; then
34
+ sudo apt install python-pip
35
+fi
36
sudo pip2 install --upgrade -r requirements.txt
37
38
+# Build gdb
39
./build.sh
0 commit comments