From 79bfa95c3972ff4fdcb270b31c2807ee76a0f003 Mon Sep 17 00:00:00 2001 From: bananaappletw Date: Fri, 28 Jul 2017 15:54:43 +0800 Subject: [PATCH] Update install script --- install.sh | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index a5233b5..e970257 100755 --- a/install.sh +++ b/install.sh @@ -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=$? @@ -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