ctf-tools/gdb-heap/install

23 lines
438 B
Text
Raw Normal View History

#!/bin/bash -ex
2017-01-12 10:10:47 +00:00
2017-10-21 19:25:02 +00:00
git clone --depth=1 https://github.com/rogerhu/gdb-heap || true
2017-01-12 10:10:47 +00:00
cd gdb-heap
# make sure gdbinit exists
touch ~/.gdbinit
if ! grep "init-gdb-heap" ~/.gdbinit; then
cat >> ~/.gdbinit <<EOF
####
# added by ctf-tools
define init-gdb-heap
python import sys; sys.path.append("$PWD"); import heap
end
document init-gdb-heap
2017-10-21 19:25:02 +00:00
Initializes the gdb-heap extension (https://github.com/rogerhu/gdb-heap)
2017-01-12 10:10:47 +00:00
end
####
EOF
fi