summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--package/gdb/Makefile6
-rw-r--r--package/gdbserver/Makefile4
-rw-r--r--target/config/Config.in.gdb6
-rw-r--r--toolchain/gdb/Makefile.inc6
4 files changed, 12 insertions, 10 deletions
diff --git a/package/gdb/Makefile b/package/gdb/Makefile
index 9c8ed0130..f69d139f0 100644
--- a/package/gdb/Makefile
+++ b/package/gdb/Makefile
@@ -4,9 +4,9 @@
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= gdb
-PKG_VERSION:= 8.3.1
+PKG_VERSION:= 9.1
PKG_RELEASE:= 1
-PKG_HASH:= 1e55b4d7cdca7b34be12f4ceae651623aa73b2fd640152313f9f66a7149757c4
+PKG_HASH:= 699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
PKG_DESCR:= programm debugger
PKG_SECTION:= app/debug
PKG_SITES:= ${MASTER_SITE_GNU:=gdb/}
@@ -22,6 +22,8 @@ $(eval $(call PKG_template,GDB,gdb,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},
XAKE_FLAGS+= MAKEINFO=true
+WRKBUILD= $(WRKDIR)/$(PKG_NAME)-obj
+
# --enable-static is required to build libbfd.a
CONFIGURE_ARGS+= --enable-static \
--without-uiout \
diff --git a/package/gdbserver/Makefile b/package/gdbserver/Makefile
index 24999d77e..933315523 100644
--- a/package/gdbserver/Makefile
+++ b/package/gdbserver/Makefile
@@ -4,9 +4,9 @@
include ${ADK_TOPDIR}/rules.mk
PKG_NAME:= gdbserver
-PKG_VERSION:= 8.3.1
+PKG_VERSION:= 9.1
PKG_RELEASE:= 1
-PKG_HASH:= 1e55b4d7cdca7b34be12f4ceae651623aa73b2fd640152313f9f66a7149757c4
+PKG_HASH:= 699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
PKG_DESCR:= remote programm debugger utility
PKG_SECTION:= app/debug
PKG_NEEDS:= c++
diff --git a/target/config/Config.in.gdb b/target/config/Config.in.gdb
index bcac346ae..2fdd78db5 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_8_3
+default ADK_TOOLCHAIN_GDB_9_3
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_8_3
- bool "8.3.1"
+config ADK_TOOLCHAIN_GDB_9_1
+ bool "9.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 4e13fa354..7dea3adf2 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_8_3),y)
-PKG_VERSION:= 8.3.1
+ifeq ($(ADK_TOOLCHAIN_GDB_9_1),y)
+PKG_VERSION:= 9.1
PKG_RELEASE:= 1
-PKG_HASH:= 1e55b4d7cdca7b34be12f4ceae651623aa73b2fd640152313f9f66a7149757c4
+PKG_HASH:= 699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
PKG_SITES:= ${MASTER_SITE_GNU:=gdb/}
DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
endif