updated gdb install to use ctf-tools-venv-activate

This commit is contained in:
Michael Rodler 2016-10-13 10:29:08 +02:00 committed by Yan
parent 65e76d4087
commit df69ea4b75

View file

@ -4,9 +4,8 @@ curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz | tar xz
cd gdb-7.11.1
# move to ctftools virtual env
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
source ctf-tools-venv-activate
./configure --prefix=$(dirname $PWD) --with-python=python2 --enable-targets=all
./configure --prefix=$(dirname $PWD) --with-python=$(which python) --enable-targets=all
make -j $(nproc)
make install