summaryrefslogtreecommitdiffstats
path: root/package/gdb
diff options
context:
space:
mode:
authorThomas Petazzoni <thomas.petazzoni@free-electrons.com>2014-09-15 22:50:03 +0200
committerPeter Korsgaard <peter@korsgaard.com>2014-09-16 22:20:41 +0200
commit775cffcdc1b999755583cf4e8217a363dbd74c82 (patch)
treeaec295f3acb73c2bc8676a278355b4636a0bedb5 /package/gdb
parent1bf55a8e1c0282147e911430b15307c02c79ec42 (diff)
downloadbuildroot-775cffcdc1b999755583cf4e8217a363dbd74c82.tar.gz
buildroot-775cffcdc1b999755583cf4e8217a363dbd74c82.zip
gdb: add version 7.8
This commit adds support for the 7.8 version of gdb. Note that the tarball of this version is not available as a .tar.bz2, so we have to add a special case and download the .tar.xz for this version. Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'package/gdb')
-rw-r--r--package/gdb/Config.in.host4
-rw-r--r--package/gdb/gdb.mk4
2 files changed, 8 insertions, 0 deletions
diff --git a/package/gdb/Config.in.host b/package/gdb/Config.in.host
index 10d16b9e54..f51b5b1fcb 100644
--- a/package/gdb/Config.in.host
+++ b/package/gdb/Config.in.host
@@ -39,6 +39,9 @@ choice
config BR2_GDB_VERSION_7_7
bool "gdb 7.7.x"
+ config BR2_GDB_VERSION_7_8
+ bool "gdb 7.8.x"
+
endchoice
endif
@@ -53,3 +56,4 @@ config BR2_GDB_VERSION
default "6be65fb56ea6694a9260733a536a023a1e2d4d57" if BR2_microblaze
default "7.6.2" if BR2_GDB_VERSION_7_6 || !BR2_PACKAGE_HOST_GDB
default "7.7.1" if BR2_GDB_VERSION_7_7 || BR2_powerpc64le
+ default "7.8" if BR2_GDB_VERSION_7_8
diff --git a/package/gdb/gdb.mk b/package/gdb/gdb.mk
index 85b78832b5..07f6ba3936 100644
--- a/package/gdb/gdb.mk
+++ b/package/gdb/gdb.mk
@@ -23,6 +23,10 @@ ifeq ($(GDB_VERSION),6.7.1-avr32-2.1.5)
GDB_SITE = ftp://www.at91.com/pub/buildroot
endif
+ifeq ($(GDB_VERSION),7.8)
+GDB_SOURCE = gdb-$(GDB_VERSION).tar.xz
+endif
+
GDB_SOURCE ?= gdb-$(GDB_VERSION).tar.bz2
GDB_LICENSE = GPLv2+ LGPLv2+ GPLv3+ LGPLv3+
GDB_LICENSE_FILES = COPYING COPYING.LIB COPYING3 COPYING3.LIB
OpenPOWER on IntegriCloud