Skip to content

Commit

Permalink
Update install script
Browse files Browse the repository at this point in the history
  • Loading branch information
bananaappletw committed Jul 28, 2017
1 parent 5ab6f31 commit 79bfa95
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
#!/bin/bash
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

# Install z3
python2 -c "import z3"
NOT_INSTALLED=$?
Expand Down Expand Up @@ -27,5 +28,12 @@ then
sudo make -j $(grep processor < /proc/cpuinfo | wc -l) install
cd ../..
fi

# Install python modules
if [ !$(which pip2) ]; then
sudo apt install python-pip
fi
sudo pip2 install --upgrade -r requirements.txt

# Build gdb
./build.sh

0 comments on commit 79bfa95

Please sign in to comment.