mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-13 14:32:34 +00:00
Merge pull request #98 from LosFuzzys/updatedtools
Updated qemu and gdb to latest versions
This commit is contained in:
commit
4760669b78
2 changed files with 4 additions and 4 deletions
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e -o pipefail
|
set -e -o pipefail
|
||||||
|
|
||||||
curl https://ftp.gnu.org/gnu/gdb/gdb-7.11.1.tar.gz | tar xz
|
curl https://ftp.gnu.org/gnu/gdb/gdb-7.12.tar.gz | tar xz
|
||||||
cd gdb-7.11.1
|
cd gdb-7.12
|
||||||
|
|
||||||
# move to ctftools virtual env
|
# move to ctftools virtual env
|
||||||
source ctf-tools-venv-activate
|
source ctf-tools-venv-activate
|
||||||
|
|
|
@ -1,8 +1,8 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
set -e -o pipefail
|
set -e -o pipefail
|
||||||
|
|
||||||
curl http://wiki.qemu-project.org/download/qemu-2.6.1.tar.bz2 | tar xvj
|
curl http://wiki.qemu-project.org/download/qemu-2.8.0.tar.bz2 | tar xvj
|
||||||
cd qemu-2.6.1
|
cd qemu-2.8.0
|
||||||
|
|
||||||
source ctf-tools-venv-activate
|
source ctf-tools-venv-activate
|
||||||
./configure "--prefix=$(dirname $PWD)" "--python=$(which python)"
|
./configure "--prefix=$(dirname $PWD)" "--python=$(which python)"
|
||||||
|
|
Loading…
Reference in a new issue