mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-14 06:52:36 +00:00
ffc6561748
Forgot the .1
12 lines
292 B
Bash
Executable file
12 lines
292 B
Bash
Executable file
#!/bin/bash -ex
|
|
set -e -o pipefail
|
|
|
|
curl https://ftp.gnu.org/gnu/gdb/gdb-7.12.1.tar.gz | tar xz
|
|
cd gdb-7.12.1
|
|
|
|
# move to ctftools virtual env
|
|
source ctf-tools-venv-activate
|
|
|
|
./configure --prefix=$(dirname $PWD) --with-python=$(which python) --enable-targets=all
|
|
make -j $(nproc)
|
|
make install
|