mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 22:42:38 +00:00
7 lines
197 B
Bash
Executable file
7 lines
197 B
Bash
Executable file
#!/bin/bash
|
|
|
|
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz | tar xz
|
|
cd gdb-7.11.1
|
|
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
|
|
make -j $(nproc)
|
|
make install
|