summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2023-02-23 10:44:13 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2023-02-24 09:25:51 +0100
commit0afc574804b710c8c72970539537fdbdf0fecc87 (patch)
tree7efaa1a6efe226d1c9cc092af0f699190668ab91
parent77d39a5d217f409405b7517ff738969e7b06f1d1 (diff)
gdb: update to 13.1
-rw-r--r--package/gdb/Makefile5
-rw-r--r--package/gdbserver/Makefile4
-rw-r--r--target/config/Config.in.gdb6
-rw-r--r--toolchain/gdb/Makefile.inc6
4 files changed, 11 insertions, 10 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile
index 84348165b..46679ead3 100644
--- a/package/gdb/Makefile
+++ b/package/gdb/Makefile
@@ -4,9 +4,9 @@
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= gdb
-PKG_VERSION:= 12.1
+PKG_VERSION:= 13.1
PKG_RELEASE:= 1
-PKG_HASH:= 0e1793bf8f2b54d53f46dea84ccfd446f48f81b297b28c4f7fc017b818d69fed
+PKG_HASH:= 115ad5c18d69a6be2ab15882d365dda2a2211c14f480b3502c6eba576e2e95a0
PKG_DESCR:= program debugger
PKG_SECTION:= app/debug
PKG_SITES:= ${MASTER_SITE_GNU:=gdb/}
@@ -27,6 +27,7 @@ WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj
CONFIGURE_ENV+= host_configargs='--with-libgmp-prefix="${STAGING_TARGET_DIR}/usr"'
# --enable-static is required to build libbfd.a
CONFIGURE_ARGS+= --enable-static \
+ --disable-shared \
--without-uiout \
--disable-tui \
--disable-gdbtk \
diff --git a/package/gdbserver/Makefile b/package/gdbserver/Makefile
index 71422e55d..fdfa6564d 100644
--- a/package/gdbserver/Makefile
+++ b/package/gdbserver/Makefile
@@ -4,9 +4,9 @@
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= gdbserver
-PKG_VERSION:= 11.2
+PKG_VERSION:= 13.1
PKG_RELEASE:= 1
-PKG_HASH:= 1497c36a71881b8671a9a84a0ee40faab788ca30d7ba19d8463c3cc787152e32
+PKG_HASH:= 115ad5c18d69a6be2ab15882d365dda2a2211c14f480b3502c6eba576e2e95a0
PKG_DESCR:= remote program debugger utility
PKG_SECTION:= app/debug
PKG_NEEDS:= c++
diff --git a/target/config/Config.in.gdb b/target/config/Config.in.gdb
index fa1c1a992..74d351c01 100644
--- a/target/config/Config.in.gdb
+++ b/target/config/Config.in.gdb
@@ -21,7 +21,7 @@ choice
prompt "GNU debugger version"
depends on ADK_TOOLCHAIN_WITH_GDB
default ADK_TOOLCHAIN_GDB_H8300_GIT if ADK_TARGET_ARCH_H8300
-default ADK_TOOLCHAIN_GDB_11_2
+default ADK_TOOLCHAIN_GDB_13_1
config ADK_TOOLCHAIN_GDB_GIT
bool "git"
@@ -33,8 +33,8 @@ config ADK_TOOLCHAIN_GDB_H8300_GIT
bool "h8300-git"
depends on ADK_TARGET_ARCH_H8300
-config ADK_TOOLCHAIN_GDB_11_2
- bool "11.2"
+config ADK_TOOLCHAIN_GDB_13_1
+ bool "13.1"
depends on !ADK_TARGET_ARCH_AVR32
depends on !ADK_TARGET_ARCH_H8300
depends on !ADK_TARGET_ARCH_NDS32
diff --git a/toolchain/gdb/Makefile.inc b/toolchain/gdb/Makefile.inc
index 220b14383..8aacab300 100644
--- a/toolchain/gdb/Makefile.inc
+++ b/toolchain/gdb/Makefile.inc
@@ -2,10 +2,10 @@
# material, please see the LICENCE file in the top-level directory.
PKG_NAME:= gdb
-ifeq ($(ADK_TOOLCHAIN_GDB_11_2),y)
-PKG_VERSION:= 11.2
+ifeq ($(ADK_TOOLCHAIN_GDB_13_1),y)
+PKG_VERSION:= 13.1
PKG_RELEASE:= 1
-PKG_HASH:= 1497c36a71881b8671a9a84a0ee40faab788ca30d7ba19d8463c3cc787152e32
+PKG_HASH:= 115ad5c18d69a6be2ab15882d365dda2a2211c14f480b3502c6eba576e2e95a0
PKG_SITES:= ${MASTER_SITE_GNU:=gdb/}
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
endif