Buildroot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [Buildroot] [PATCH] gdb: bump to 7.3.1
@ 2011-09-30  6:49 Yegor Yefremov
  2011-09-30 20:26 ` Thomas Petazzoni
  0 siblings, 1 reply; 11+ messages in thread
From: Yegor Yefremov @ 2011-09-30  6:49 UTC (permalink / raw)
  To: buildroot

On my old build system (openSUSE 10.3) I had problems compiling GDB saying something like my glibc is too old. So I tried the latest version and could compile without a problem. See the patch below.

Yegor 
--------------------------------------------------------------
Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 toolchain/gdb/Config.in |    6 ++++++
 1 file changed, 6 insertions(+)

Index: b/toolchain/gdb/Config.in
===================================================================
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -59,6 +59,11 @@
 		depends on !BR2_bfin
 		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
 
+	config BR2_GDB_VERSION_7_3_1
+		bool "gdb 7.3.1"
+		depends on !BR2_bfin
+		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
+
 endchoice
 
 config BR2_GDB_VERSION
@@ -69,3 +74,4 @@
 	default "6.8"      if BR2_GDB_VERSION_6_8
 	default "7.0.1"    if BR2_GDB_VERSION_7_0_1
 	default "7.1"      if BR2_GDB_VERSION_7_1
+	default "7.3.1"    if BR2_GDB_VERSION_7_3_1

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-09-30  6:49 [Buildroot] [PATCH] gdb: bump to 7.3.1 Yegor Yefremov
@ 2011-09-30 20:26 ` Thomas Petazzoni
  2011-10-01 21:24   ` Arnout Vandecappelle
  0 siblings, 1 reply; 11+ messages in thread
From: Thomas Petazzoni @ 2011-09-30 20:26 UTC (permalink / raw)
  To: buildroot

Yegor,

Can you send a patch with a proper description, so that it can be
applied with git am ?

By proper description I mean :

 * Don't forget that everything before the --- is kept in the commit
   log, so don't put "personal" explanations.

 * Don't put a line full of "-------------------------".

Thanks!

Thomas

Le Fri, 30 Sep 2011 08:49:23 +0200,
Yegor Yefremov <yegor_sub1@visionsystems.de> a ?crit :

> On my old build system (openSUSE 10.3) I had problems compiling GDB saying something like my glibc is too old. So I tried the latest version and could compile without a problem. See the patch below.
> 
> Yegor 
> --------------------------------------------------------------
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
>  toolchain/gdb/Config.in |    6 ++++++
>  1 file changed, 6 insertions(+)
> 
> Index: b/toolchain/gdb/Config.in
> ===================================================================
> --- a/toolchain/gdb/Config.in
> +++ b/toolchain/gdb/Config.in
> @@ -59,6 +59,11 @@
>  		depends on !BR2_bfin
>  		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
>  
> +	config BR2_GDB_VERSION_7_3_1
> +		bool "gdb 7.3.1"
> +		depends on !BR2_bfin
> +		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
> +
>  endchoice
>  
>  config BR2_GDB_VERSION
> @@ -69,3 +74,4 @@
>  	default "6.8"      if BR2_GDB_VERSION_6_8
>  	default "7.0.1"    if BR2_GDB_VERSION_7_0_1
>  	default "7.1"      if BR2_GDB_VERSION_7_1
> +	default "7.3.1"    if BR2_GDB_VERSION_7_3_1
> 
> _______________________________________________
> buildroot mailing list
> buildroot at busybox.net
> http://lists.busybox.net/mailman/listinfo/buildroot



-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-09-30 20:26 ` Thomas Petazzoni
@ 2011-10-01 21:24   ` Arnout Vandecappelle
  2011-10-01 22:35     ` Yegor Yefremov
  0 siblings, 1 reply; 11+ messages in thread
From: Arnout Vandecappelle @ 2011-10-01 21:24 UTC (permalink / raw)
  To: buildroot


On Friday 30 September 2011 22:26:06, Thomas Petazzoni wrote:
> Yegor,
> 
> Can you send a patch with a proper description, so that it can be
> applied with git am ?
> 
> By proper description I mean :
> 
>  * Don't forget that everything before the --- is kept in the commit
>    log, so don't put "personal" explanations.

 Actually, you can put "personal" explanations after the ---.  So the 
following would work:

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
On my old build system (openSUSE 10.3) I had problems compiling GDB saying 
something like my glibc is too old. So I tried the latest version and could 
compile without a problem. See the patch below.

Yegor 
---
 toolchain/gdb/Config.in |    6 ++++++
 1 file changed, 6 insertions(+)


 I typically use that for the changelog of single patches.

 Regards,
 Arnout

-- 
Arnout Vandecappelle                               arnout at mind be
Senior Embedded Software Architect                 +32-16-286540
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:  31BB CF53 8660 6F88 345D  54CC A836 5879 20D7 CF43

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-01 21:24   ` Arnout Vandecappelle
@ 2011-10-01 22:35     ` Yegor Yefremov
  2011-10-05 13:16       ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Yegor Yefremov @ 2011-10-01 22:35 UTC (permalink / raw)
  To: buildroot

On Sat, Oct 1, 2011 at 11:24 PM, Arnout Vandecappelle <arnout@mind.be> wrote:
>
> On Friday 30 September 2011 22:26:06, Thomas Petazzoni wrote:
>> Yegor,
>>
>> Can you send a patch with a proper description, so that it can be
>> applied with git am ?
>>
>> By proper description I mean :
>>
>> ?* Don't forget that everything before the --- is kept in the commit
>> ? ?log, so don't put "personal" explanations.
>
> ?Actually, you can put "personal" explanations after the ---. ?So the
> following would work:
>
> Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
> ---
> On my old build system (openSUSE 10.3) I had problems compiling GDB saying
> something like my glibc is too old. So I tried the latest version and could
> compile without a problem. See the patch below.

Thanks for comments. I'll rework the patch next week. By the way
shouldn't we get rid of 6.8 due to this issue:
http://comments.gmane.org/gmane.comp.gdb.devel/30648. That was the
reason for trying 7.x version.

Yegor

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
@ 2011-10-04  9:05 yegorslists at googlemail.com
  2011-10-05 14:07 ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: yegorslists at googlemail.com @ 2011-10-04  9:05 UTC (permalink / raw)
  To: buildroot

From: Yegor Yefremov <yegorslists@googlemail.com>

this version fixes compilation issue on some old build systems like
openSUSE 10.3 saying some host libraries were too old

Signed-off-by: Yegor Yefremov <yegorslists@googlemail.com>
---
 toolchain/gdb/Config.in |    6 ++++++
 1 files changed, 6 insertions(+), 0 deletions(-)

diff --git a/toolchain/gdb/Config.in b/toolchain/gdb/Config.in
index 8295f79..2da965e 100644
--- a/toolchain/gdb/Config.in
+++ b/toolchain/gdb/Config.in
@@ -59,6 +59,11 @@ choice
 		depends on !BR2_bfin
 		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
 
+	config BR2_GDB_VERSION_7_3_1
+		bool "gdb 7.3.1"
+		depends on !BR2_bfin
+		select BR2_PTHREAD_DEBUG if !BR2_PTHREADS_NONE
+
 endchoice
 
 config BR2_GDB_VERSION
@@ -69,3 +74,4 @@ config BR2_GDB_VERSION
 	default "6.8"      if BR2_GDB_VERSION_6_8
 	default "7.0.1"    if BR2_GDB_VERSION_7_0_1
 	default "7.1"      if BR2_GDB_VERSION_7_1
+	default "7.3.1"    if BR2_GDB_VERSION_7_3_1
-- 
1.7.5.4

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-01 22:35     ` Yegor Yefremov
@ 2011-10-05 13:16       ` Peter Korsgaard
  2011-10-05 13:31         ` Yegor Yefremov
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2011-10-05 13:16 UTC (permalink / raw)
  To: buildroot

>>>>> "Yegor" == Yegor Yefremov <yegorslists@googlemail.com> writes:

 Yegor> Thanks for comments. I'll rework the patch next week. By the way
 Yegor> shouldn't we get rid of 6.8 due to this issue:
 Yegor> http://comments.gmane.org/gmane.comp.gdb.devel/30648. That was the
 Yegor> reason for trying 7.x version.

Yes, probably. It seems we'll need to keep 6.6 around for bfin though.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-05 13:16       ` Peter Korsgaard
@ 2011-10-05 13:31         ` Yegor Yefremov
  2011-10-05 14:28           ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Yegor Yefremov @ 2011-10-05 13:31 UTC (permalink / raw)
  To: buildroot

Am 05.10.2011 15:16, schrieb Peter Korsgaard:
>>>>>> "Yegor" == Yegor Yefremov <yegorslists@googlemail.com> writes:
> 
>  Yegor> Thanks for comments. I'll rework the patch next week. By the way
>  Yegor> shouldn't we get rid of 6.8 due to this issue:
>  Yegor> http://comments.gmane.org/gmane.comp.gdb.devel/30648. That was the
>  Yegor> reason for trying 7.x version.
> 
> Yes, probably. It seems we'll need to keep 6.6 around for bfin though.

I've sent a proper patch using git (there is still plenty to learn about). 

Have you looked at http://www.gnu.org/s/gdb/ 7.3 release notes?

" ia64 HP-UX (native) and Blackfin (target) support
  GDBserver support for PowerPC LynxOS, i686 LynxOS, and Blackfin Linux "

Can some one with blackfin test this? If it is working, we could remove the dependence on !blfn.

Best regards,
Yegor

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-04  9:05 yegorslists at googlemail.com
@ 2011-10-05 14:07 ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2011-10-05 14:07 UTC (permalink / raw)
  To: buildroot

>>>>> "yegorslists" == yegorslists  <yegorslists@googlemail.com> writes:

 yegorslists> From: Yegor Yefremov <yegorslists@googlemail.com>
 yegorslists> this version fixes compilation issue on some old build systems like
 yegorslists> openSUSE 10.3 saying some host libraries were too old

Thanks, committed. I dumped the minor version so it's 7.3 similar to how
we're doing it for the kernel headers or busybox.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-05 13:31         ` Yegor Yefremov
@ 2011-10-05 14:28           ` Peter Korsgaard
  2011-10-05 14:57             ` Thomas Petazzoni
  0 siblings, 1 reply; 11+ messages in thread
From: Peter Korsgaard @ 2011-10-05 14:28 UTC (permalink / raw)
  To: buildroot

>>>>> "Yegor" == Yegor Yefremov <yegor_sub1@visionsystems.de> writes:

Hi,

 Yegor> Have you looked at http://www.gnu.org/s/gdb/ 7.3 release notes?

 Yegor> " ia64 HP-UX (native) and Blackfin (target) support
 Yegor>   GDBserver support for PowerPC LynxOS, i686 LynxOS, and Blackfin Linux "

 Yegor> Can some one with blackfin test this? If it is working, we could
 Yegor> remove the dependence on !blfn.

Yes, I noticed as well. Bfin users, please speak up.

-- 
Bye, Peter Korsgaard

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-05 14:28           ` Peter Korsgaard
@ 2011-10-05 14:57             ` Thomas Petazzoni
  2011-10-05 15:26               ` Peter Korsgaard
  0 siblings, 1 reply; 11+ messages in thread
From: Thomas Petazzoni @ 2011-10-05 14:57 UTC (permalink / raw)
  To: buildroot

Le Wed, 05 Oct 2011 16:28:35 +0200,
Peter Korsgaard <jacmet@uclibc.org> a ?crit :

>  Yegor> Can some one with blackfin test this? If it is working, we
>  Yegor> could remove the dependence on !blfn.
> 
> Yes, I noticed as well. Bfin users, please speak up.

I guess Mike is best placed to answer here. Otherwise, I'll bring up a
Blackfin board I have and I'll test this.

Thomas
-- 
Thomas Petazzoni, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com

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

* [Buildroot] [PATCH] gdb: bump to 7.3.1
  2011-10-05 14:57             ` Thomas Petazzoni
@ 2011-10-05 15:26               ` Peter Korsgaard
  0 siblings, 0 replies; 11+ messages in thread
From: Peter Korsgaard @ 2011-10-05 15:26 UTC (permalink / raw)
  To: buildroot

>>>>> "Thomas" == Thomas Petazzoni <thomas.petazzoni@free-electrons.com> writes:

 >> Yes, I noticed as well. Bfin users, please speak up.

 Thomas> I guess Mike is best placed to answer here. Otherwise, I'll bring up a
 Thomas> Blackfin board I have and I'll test this.

Thanks!

-- 
Bye, Peter Korsgaard

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

end of thread, other threads:[~2011-10-05 15:26 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-09-30  6:49 [Buildroot] [PATCH] gdb: bump to 7.3.1 Yegor Yefremov
2011-09-30 20:26 ` Thomas Petazzoni
2011-10-01 21:24   ` Arnout Vandecappelle
2011-10-01 22:35     ` Yegor Yefremov
2011-10-05 13:16       ` Peter Korsgaard
2011-10-05 13:31         ` Yegor Yefremov
2011-10-05 14:28           ` Peter Korsgaard
2011-10-05 14:57             ` Thomas Petazzoni
2011-10-05 15:26               ` Peter Korsgaard
  -- strict thread matches above, loose matches on Subject: below --
2011-10-04  9:05 yegorslists at googlemail.com
2011-10-05 14:07 ` Peter Korsgaard

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox