All of lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default.
@ 2013-01-24 11:33 Will Newton
  2013-01-24 13:42 ` Peter Korsgaard
  2013-01-24 18:56 ` Arnout Vandecappelle
  0 siblings, 2 replies; 4+ messages in thread
From: Will Newton @ 2013-01-24 11:33 UTC (permalink / raw)
  To: buildroot

Signed-off-by: Will Newton <will.newton@imgtec.com>
---
 toolchain/gdb/Config.in |    9 ++++++++-
 1 files changed, 8 insertions(+), 1 deletions(-)

I'm imagine a few of those older version could be safely removed but I am not
sure which versions people are using. Aside from avr32 and bfin is anyone
using a non-7.4 version?

diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in
index 6a8e48e..53dcb93 100644
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -45,7 +45,7 @@ choice
 	prompt "GDB debugger Version"
 	default BR2_GDB_VERSION_6_6 if BR2_bfin
 	default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32
-	default BR2_GDB_VERSION_7_4
+	default BR2_GDB_VERSION_7_5
 	depends on BR2_PACKAGE_GDB || BR2_PACKAGE_GDB_SERVER || BR2_PACKAGE_GDB_HOST
 	help
 	  Select the version of gdb you wish to use.
@@ -95,6 +95,12 @@ choice
 		depends on BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED
 		select BR2_PTHREAD_DEBUG if (BR2_TOOLCHAIN_BUILDROOT && !BR2_PTHREADS_NONE)

+	config BR2_GDB_VERSION_7_5
+		bool "gdb 7.5.x"
+		depends on !BR2_bfin
+		depends on BR2_TOOLCHAIN_HAS_THREADS_DEBUG_IF_NEEDED
+		select BR2_PTHREAD_DEBUG if (BR2_TOOLCHAIN_BUILDROOT && !BR2_PTHREADS_NONE)
+
 endchoice

 comment "gdb support needs pthread debug support in toolchain"
@@ -110,3 +116,4 @@ config BR2_GDB_VERSION
 	default "7.2a"     if BR2_GDB_VERSION_7_2
 	default "7.3.1"    if BR2_GDB_VERSION_7_3
 	default "7.4.1"    if BR2_GDB_VERSION_7_4
+	default "7.5.1"    if BR2_GDB_VERSION_7_5
-- 
1.7.1
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 0001-gdb-Add-support-for-gdb-7.5.1-and-make-it-the-defaul.patch
Type: application/octet-stream
Size: 1558 bytes
Desc: not available
URL: <http://lists.busybox.net/pipermail/buildroot/attachments/20130124/ad467cac/attachment.obj>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default.
  2013-01-24 11:33 [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default Will Newton
@ 2013-01-24 13:42 ` Peter Korsgaard
  2013-01-24 18:56 ` Arnout Vandecappelle
  1 sibling, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-01-24 13:42 UTC (permalink / raw)
  To: buildroot

>>>>> "Will" == Will Newton <will.newton@gmail.com> writes:

 Will> Signed-off-by: Will Newton <will.newton@imgtec.com>

Committed, thanks.

 Will> ---
 Will>  toolchain/gdb/Config.in |    9 ++++++++-
 Will>  1 files changed, 8 insertions(+), 1 deletions(-)

 Will> I'm imagine a few of those older version could be safely removed
 Will> but I am not sure which versions people are using. Aside from
 Will> avr32 and bfin is anyone using a non-7.4 version?

Yes, I think we could probably remove some of the deprecated versions
(6.8/7.0/7.1).

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default.
  2013-01-24 11:33 [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default Will Newton
  2013-01-24 13:42 ` Peter Korsgaard
@ 2013-01-24 18:56 ` Arnout Vandecappelle
  2013-01-24 20:09   ` Peter Korsgaard
  1 sibling, 1 reply; 4+ messages in thread
From: Arnout Vandecappelle @ 2013-01-24 18:56 UTC (permalink / raw)
  To: buildroot

On 01/24/13 12:33, Will Newton wrote:
>   	prompt "GDB debugger Version"
>   	default BR2_GDB_VERSION_6_6 if BR2_bfin
>   	default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32

  Not related but I see it now: does gdb 7.* actually work for avr32? If 
so, why do we keep this old version around?

  Regards,
  Arnout

-- 
Arnout Vandecappelle                          arnout at mind be
Senior Embedded Software Architect            +32-16-286500
Essensium/Mind                                http://www.mind.be
G.Geenslaan 9, 3001 Leuven, Belgium           BE 872 984 063 RPR Leuven
LinkedIn profile: http://www.linkedin.com/in/arnoutvandecappelle
GPG fingerprint:  7CB5 E4CC 6C2E EFD4 6E3D A754 F963 ECAB 2450 2F1F

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default.
  2013-01-24 18:56 ` Arnout Vandecappelle
@ 2013-01-24 20:09   ` Peter Korsgaard
  0 siblings, 0 replies; 4+ messages in thread
From: Peter Korsgaard @ 2013-01-24 20:09 UTC (permalink / raw)
  To: buildroot

>>>>> "Arnout" == Arnout Vandecappelle <arnout@mind.be> writes:

 Arnout> On 01/24/13 12:33, Will Newton wrote:
 >> prompt "GDB debugger Version"
 >> default BR2_GDB_VERSION_6_6 if BR2_bfin
 >> default BR2_GDB_VERSION_6_7_1_AVR32_2_1_5 if BR2_avr32

 Arnout>  Not related but I see it now: does gdb 7.* actually work for avr32?
 Arnout> If so, why do we keep this old version around?

I believe it doesn't, but I've never tried. All the 7.x versions
shouldn't be selectable for avr32 (unless I'm wrong and they do work).

-- 
Bye, Peter Korsgaard

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2013-01-24 20:09 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-01-24 11:33 [Buildroot] [PATCH] gdb: Add support for gdb 7.5.1 and make it the default Will Newton
2013-01-24 13:42 ` Peter Korsgaard
2013-01-24 18:56 ` Arnout Vandecappelle
2013-01-24 20:09   ` Peter Korsgaard

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.