From 213df97b55f83889e405f84b294a1c754be4b184 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Sat, 19 Mar 2022 10:44:58 -0700 Subject: [PATCH] Ports/gdb: Upgrade gdb to version 11.2 --- Ports/AvailablePorts.md | 2 +- Ports/gdb/package.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Ports/AvailablePorts.md b/Ports/AvailablePorts.md index 6b5b330cd8..2950adea4c 100644 --- a/Ports/AvailablePorts.md +++ b/Ports/AvailablePorts.md @@ -52,7 +52,7 @@ Please make sure to keep this list up to date when adding and updating ports. :^ | [`freetype`](freetype/) | FreeType | 2.10.4 | https://www.freetype.org/ | | [`frotz`](frotz/) | Frotz | 2.53 | https://gitlab.com/DavidGriffith/frotz | | [`gawk`](gawk/) | GNU awk | 5.1.0 | https://www.gnu.org/software/gawk/ | -| [`gdb`](gdb/) | GNU Project Debugger | 11.1 | https://sourceware.org/gdb | +| [`gdb`](gdb/) | GNU Project Debugger | 11.2 | https://sourceware.org/gdb | | [`gcc`](gcc/) | GNU Compiler Collection | 11.2.0 | https://gcc.gnu.org/ | | [`genemu`](genemu/) | Genesis / MegaDrive Emulator | 3bf6f7c | https://github.com/rasky/genemu | | [`gettext`](gettext/) | GNU gettext | 0.21 | https://www.gnu.org/software/gettext/ | diff --git a/Ports/gdb/package.sh b/Ports/gdb/package.sh index 81c775d721..d31b870481 100755 --- a/Ports/gdb/package.sh +++ b/Ports/gdb/package.sh @@ -1,9 +1,9 @@ #!/usr/bin/env -S bash ../.port_include.sh port=gdb -version=11.1 +version=11.2 useconfigure=true configopts=("--target=${SERENITY_ARCH}-pc-serenity" "--with-sysroot=/" "--with-build-sysroot=${SERENITY_INSTALL_ROOT}" "--with-newlib" "--enable-languages=c,c++" "--disable-lto" "--disable-nls" "--enable-shared" "--enable-default-pie" "--enable-host-shared" "--enable-threads=posix") -files="https://ftpmirror.gnu.org/gnu/gdb/gdb-${version}.tar.xz gdb-${version}.tar.xz cccfcc407b20d343fb320d4a9a2110776dd3165118ffd41f4b1b162340333f94" +files="https://ftpmirror.gnu.org/gnu/gdb/gdb-${version}.tar.xz gdb-${version}.tar.xz 1497c36a71881b8671a9a84a0ee40faab788ca30d7ba19d8463c3cc787152e32" makeopts+=("all") installopts=("DESTDIR=${SERENITY_INSTALL_ROOT}") depends=("gmp" "binutils")