ctf-tools/libheap/install
2017-01-12 11:24:09 +01:00

26 lines
510 B
Bash
Executable file

#!/bin/bash -e
# move to ctftools virtual env
source ctf-tools-venv-activate
git clone --depth 1 https://github.com/cloudburst/libheap
pip install -e libheap
# make sure gdbinit exists
touch ~/.gdbinit
# check if init command exits
if ! grep "init-libheap" ~/.gdbinit; then
cat >> ~/.gdbinit <<EOF
####
# added by ctf-tools
define init-libheap
python from libheap import *
end
document init-libheap
Initializes the libheap gdb extension (https://github.com/cloudburst/libheap)
end
####
EOF
fi