ctf-tools/gdb/install

8 lines
191 B
Text
Raw Normal View History

2015-05-07 11:02:00 +00:00
#!/bin/bash
2015-05-08 02:09:14 +00:00
curl http://ftp.gnu.org/gnu/gdb/gdb-7.9.tar.gz | tar xvz
2015-05-07 11:02:00 +00:00
cd gdb-7.9
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
2015-05-07 11:02:00 +00:00
make -j $(nproc)
make install