mirror of
https://github.com/zardus/ctf-tools
synced 2024-12-12 14:02:33 +00:00
29 lines
743 B
Bash
Executable file
29 lines
743 B
Bash
Executable file
#!/bin/bash -ex
|
|
set -e -o pipefail
|
|
|
|
find_latest_gdb_version() {
|
|
git ls-remote --tags git://sourceware.org/git/binutils-gdb.git \
|
|
| grep -v users \
|
|
| grep -v '{}' \
|
|
| grep -oh 'gdb-[0-9]\{1,2\}.[0-9]\{1,2\}.[0-9]\{1,2\}\(\.[0-9]\{1,2\}\)\?-release' \
|
|
| sort --version-sort -r \
|
|
| sed 's/gdb-//g' \
|
|
| sed 's/-release//g' \
|
|
| head -n 1
|
|
}
|
|
|
|
VERSION=$(find_latest_gdb_version)
|
|
|
|
curl "https://ftp.gnu.org/gnu/gdb/gdb-$VERSION.tar.gz" | tar xz
|
|
cd "gdb-$VERSION"
|
|
|
|
# move to ctftools virtual env
|
|
source ctf-tools-venv-activate
|
|
|
|
./configure \
|
|
--prefix=$(dirname $PWD) \
|
|
--with-python=$(which python) \
|
|
--enable-targets=all \
|
|
--with-guile=guile-2.0
|
|
make -j $(nproc)
|
|
make install
|