diff options
author | bloodstalker <thabogre@gmail.com> | 2018-02-11 20:39:13 +0000 |
---|---|---|
committer | bloodstalker <thabogre@gmail.com> | 2018-02-11 20:39:13 +0000 |
commit | 7983e03eff40b0f3e793f68ce595e1116ab4a22b (patch) | |
tree | 1423aa4cf0f5e12f09e7e9252a80a5f4b5b804c2 /extra-tools/capstoneubuntu14.sh | |
parent | 2 major bug fixed for bruiser, a lot of little improvements and bug fixed her... (diff) | |
download | mutator-7983e03eff40b0f3e793f68ce595e1116ab4a22b.tar.gz mutator-7983e03eff40b0f3e793f68ce595e1116ab4a22b.zip |
for building capstone on ubuntu 14
Diffstat (limited to '')
-rwxr-xr-x | extra-tools/capstoneubuntu14.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/extra-tools/capstoneubuntu14.sh b/extra-tools/capstoneubuntu14.sh new file mode 100755 index 0000000..85caab5 --- /dev/null +++ b/extra-tools/capstoneubuntu14.sh @@ -0,0 +1,10 @@ +#!/bin/bash + +cd $(dirname $0) + +"wget" https://github.com/aquynh/capstone/archive/3.0.5-rc2.tar.gz +"tar" -xvzf capstone-3.0.5-rc2.tar.gz +"cd" capstone-3.0.5-rc2.tar.gz +"make" +sudo make install +"cd" .. |