ctf-tools/taintgrind/install
raildex1 7c1c8f0920 Update valgrind to 3.11, make github use https
Should work - compiled on Kali 1.10 haven't tested it yet.
2015-10-29 00:13:36 +11:00

24 lines
392 B
Bash
Executable file

#!/bin/bash -e
INST_DIR=$PWD
curl http://valgrind.org/downloads/valgrind-3.11.0.tar.bz2 | tar xvj
cd valgrind-3.11.0
./autogen.sh
./configure --prefix=$INST_DIR
make -j $(nproc)
make install
git clone https://github.com/wmkhoo/taintgrind.git
cd taintgrind
../autogen.sh
./configure --prefix=$INST_DIR
make -j $(nproc)
make install
cd ../../
cd bin
for i in *
do
mv $i taintgrind-$i
done