Browse Source

gdb: update to 9.2

Waldemar Brodkorb 3 years ago
parent
commit
55bd62825a
4 changed files with 10 additions and 10 deletions
  1. 2 2
      package/gdb/Makefile
  2. 2 2
      package/gdbserver/Makefile
  3. 3 3
      target/config/Config.in.gdb
  4. 3 3
      toolchain/gdb/Makefile.inc

+ 2 - 2
package/gdb/Makefile

@@ -4,9 +4,9 @@
 include ${ADK_TOPDIR}/rules.mk
 
 PKG_NAME:=		gdb
-PKG_VERSION:=		9.1
+PKG_VERSION:=		9.2
 PKG_RELEASE:=		1
-PKG_HASH:=		699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
+PKG_HASH:=		360cd7ae79b776988e89d8f9a01c985d0b1fa21c767a4295e5f88cb49175c555
 PKG_DESCR:=		program debugger
 PKG_SECTION:=		app/debug
 PKG_SITES:=		${MASTER_SITE_GNU:=gdb/}

+ 2 - 2
package/gdbserver/Makefile

@@ -4,9 +4,9 @@
 include ${ADK_TOPDIR}/rules.mk
 
 PKG_NAME:=		gdbserver
-PKG_VERSION:=		9.1
+PKG_VERSION:=		9.2
 PKG_RELEASE:=		1
-PKG_HASH:=		699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
+PKG_HASH:=		360cd7ae79b776988e89d8f9a01c985d0b1fa21c767a4295e5f88cb49175c555
 PKG_DESCR:=		remote program debugger utility
 PKG_SECTION:=		app/debug
 PKG_NEEDS:=		c++

+ 3 - 3
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_9_3
+default ADK_TOOLCHAIN_GDB_9_2
 
 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_9_1
-	bool "9.1"
+config ADK_TOOLCHAIN_GDB_9_2
+	bool "9.2"
 	depends on !ADK_TARGET_ARCH_AVR32
 	depends on !ADK_TARGET_ARCH_H8300
 	depends on !ADK_TARGET_ARCH_NDS32

+ 3 - 3
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_9_1),y)
-PKG_VERSION:=		9.1
+ifeq ($(ADK_TOOLCHAIN_GDB_9_2),y)
+PKG_VERSION:=		9.2
 PKG_RELEASE:=		1
-PKG_HASH:=		699e0ec832fdd2f21c8266171ea5bf44024bd05164fdf064e4d10cc4cf0d1737
+PKG_HASH:=		360cd7ae79b776988e89d8f9a01c985d0b1fa21c767a4295e5f88cb49175c555
 PKG_SITES:=		${MASTER_SITE_GNU:=gdb/}
 DISTFILES:=		${PKG_NAME}-${PKG_VERSION}.tar.xz
 endif