ctf-tools/gdb/install

8 lines
193 B
Text
Raw Normal View History

2015-05-07 11:02:00 +00:00
#!/bin/bash
2016-02-25 01:13:07 +00:00
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.tar.gz | tar xz
cd gdb-7.11
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
2015-05-07 11:02:00 +00:00
make -j $(nproc)
make install