Now install gdb with support for debugging multiple architectures

This commit is contained in:
Nick 'mpizza' Stephens 2015-05-12 12:16:46 -07:00
parent 9f5152f687
commit 7b938942f4

View file

@ -2,6 +2,6 @@
curl http://ftp.gnu.org/gnu/gdb/gdb-7.9.tar.gz | tar xvz
cd gdb-7.9
./configure --prefix=$(dirname $PWD) --with-python=python2
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
make -j $(nproc)
make install