public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* GDB 7.11.90 available for testing
@ 2016-08-01 16:10 Joel Brobecker
  2016-08-02 15:29 ` Eli Zaretskii
  0 siblings, 1 reply; 9+ messages in thread
From: Joel Brobecker @ 2016-08-01 16:10 UTC (permalink / raw)
  To: gdb-patches


Hello,

I have just finished creating the gdb-7.11.90 pre-release.
It is available for download at the following location:

    ftp://sourceware.org/pub/gdb/snapshots/branch/gdb-7.11.90.tar.xz

A gzip'ed version is also available: gdb-7.11.90.tar.gz.

Please give it a test if you can and report any problems you might find.

On behalf of all the GDB contributors, thank you!
-- 
Joel Brobecker

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

* Re: GDB 7.11.90 available for testing
  2016-08-01 16:10 GDB 7.11.90 available for testing Joel Brobecker
@ 2016-08-02 15:29 ` Eli Zaretskii
  2016-08-03 15:10   ` Pedro Alves
  0 siblings, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2016-08-02 15:29 UTC (permalink / raw)
  To: Joel Brobecker; +Cc: gdb-patches

> From: Joel Brobecker <brobecker@adacore.com>
> Date: Mon,  1 Aug 2016 09:10:32 -0700 (PDT)
> 
> I have just finished creating the gdb-7.11.90 pre-release.
> It is available for download at the following location:
> 
>     ftp://sourceware.org/pub/gdb/snapshots/branch/gdb-7.11.90.tar.xz
> 
> A gzip'ed version is also available: gdb-7.11.90.tar.gz.
> 
> Please give it a test if you can and report any problems you might find.

Building on MS-Windows natively with MinGW works fine.  Two minor
comments:

  . The merge with a newer Readline is still not done, sigh.  So I
    needeed to apply several patches again, to make a useful GDB.

  . The default compiler is now g++, but "configure --help" still says
    "--enable-build-with-cxx", which hints that it is by default
    disabled.  I suggest to update the --help text.

Thanks.

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

* Re: GDB 7.11.90 available for testing
  2016-08-02 15:29 ` Eli Zaretskii
@ 2016-08-03 15:10   ` Pedro Alves
  2016-08-03 15:50     ` Simon Marchi
  2016-08-03 16:27     ` Eli Zaretskii
  0 siblings, 2 replies; 9+ messages in thread
From: Pedro Alves @ 2016-08-03 15:10 UTC (permalink / raw)
  To: Eli Zaretskii, Joel Brobecker; +Cc: gdb-patches

On 08/02/2016 04:29 PM, Eli Zaretskii wrote:

>   . The default compiler is now g++, but "configure --help" still says
>     "--enable-build-with-cxx", which hints that it is by default
>     disabled.  I suggest to update the --help text.

I don't see that in my builds.  Looking at print_gdb_configuration,
I can't see where that would be coming from either.  Do you have a
local patch, perhaps?

Thanks,
Pedro Alves

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

* Re: GDB 7.11.90 available for testing
  2016-08-03 15:10   ` Pedro Alves
@ 2016-08-03 15:50     ` Simon Marchi
  2016-08-03 16:10       ` Pedro Alves
  2016-08-03 16:28       ` Eli Zaretskii
  2016-08-03 16:27     ` Eli Zaretskii
  1 sibling, 2 replies; 9+ messages in thread
From: Simon Marchi @ 2016-08-03 15:50 UTC (permalink / raw)
  To: Pedro Alves, Eli Zaretskii, Joel Brobecker; +Cc: gdb-patches

On 16-08-03 11:10 AM, Pedro Alves wrote:
> On 08/02/2016 04:29 PM, Eli Zaretskii wrote:
> 
>>   . The default compiler is now g++, but "configure --help" still says
>>     "--enable-build-with-cxx", which hints that it is by default
>>     disabled.  I suggest to update the --help text.
> 
> I don't see that in my builds.  Looking at print_gdb_configuration,
> I can't see where that would be coming from either.  Do you have a
> local patch, perhaps?
> 
> Thanks,
> Pedro Alves

It's in gdb's configure:

$ ./gdb/configure --help
...
  --enable-build-with-cxx build with C++ compiler instead of C compiler
...


It should probably say:

  --disable-build-with-cxx build with C compiler instead of C++ compiler

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

* Re: GDB 7.11.90 available for testing
  2016-08-03 15:50     ` Simon Marchi
@ 2016-08-03 16:10       ` Pedro Alves
  2016-08-03 16:28       ` Eli Zaretskii
  1 sibling, 0 replies; 9+ messages in thread
From: Pedro Alves @ 2016-08-03 16:10 UTC (permalink / raw)
  To: Simon Marchi, Eli Zaretskii, Joel Brobecker; +Cc: gdb-patches

On 08/03/2016 04:44 PM, Simon Marchi wrote:
> On 16-08-03 11:10 AM, Pedro Alves wrote:
>> On 08/02/2016 04:29 PM, Eli Zaretskii wrote:
>>
>>>   . The default compiler is now g++, but "configure --help" still says
>>>     "--enable-build-with-cxx", which hints that it is by default
>>>     disabled.  I suggest to update the --help text.
>>
>> I don't see that in my builds.  Looking at print_gdb_configuration,
>> I can't see where that would be coming from either.  Do you have a
>> local patch, perhaps?
> 
> It's in gdb's configure:

Ah, for some reason I misread and understood that Eli was talking
about gdb --configuration.  Sorry about that.

> 
> $ ./gdb/configure --help
> ...
>   --enable-build-with-cxx build with C++ compiler instead of C compiler
> ...
> 
> 
> It should probably say:
> 
>   --disable-build-with-cxx build with C compiler instead of C++ compiler
> 

Fine with me.  Guess I should amend my NEWS patch to talk about that
instead.

Thanks,
Pedro Alves

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

* Re: GDB 7.11.90 available for testing
  2016-08-03 15:10   ` Pedro Alves
  2016-08-03 15:50     ` Simon Marchi
@ 2016-08-03 16:27     ` Eli Zaretskii
  1 sibling, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2016-08-03 16:27 UTC (permalink / raw)
  To: Pedro Alves; +Cc: brobecker, gdb-patches

> Cc: gdb-patches@sourceware.org
> From: Pedro Alves <palves@redhat.com>
> Date: Wed, 3 Aug 2016 16:10:36 +0100
> 
> On 08/02/2016 04:29 PM, Eli Zaretskii wrote:
> 
> >   . The default compiler is now g++, but "configure --help" still says
> >     "--enable-build-with-cxx", which hints that it is by default
> >     disabled.  I suggest to update the --help text.
> 
> I don't see that in my builds.  Looking at print_gdb_configuration,
> I can't see where that would be coming from either.  Do you have a
> local patch, perhaps?

I have no local patches.  The gdb/configure script said "--enable".

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

* Re: GDB 7.11.90 available for testing
  2016-08-03 15:50     ` Simon Marchi
  2016-08-03 16:10       ` Pedro Alves
@ 2016-08-03 16:28       ` Eli Zaretskii
  2016-08-05 16:00         ` Pedro Alves
  1 sibling, 1 reply; 9+ messages in thread
From: Eli Zaretskii @ 2016-08-03 16:28 UTC (permalink / raw)
  To: Simon Marchi; +Cc: palves, brobecker, gdb-patches

> CC: <gdb-patches@sourceware.org>
> From: Simon Marchi <simon.marchi@ericsson.com>
> Date: Wed, 3 Aug 2016 11:44:33 -0400
> 
> It's in gdb's configure:
> 
> $ ./gdb/configure --help
> ...
>   --enable-build-with-cxx build with C++ compiler instead of C compiler
> ...
> 
> 
> It should probably say:
> 
>   --disable-build-with-cxx build with C compiler instead of C++ compiler

Right, that was my suggestion.

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

* Re: GDB 7.11.90 available for testing
  2016-08-03 16:28       ` Eli Zaretskii
@ 2016-08-05 16:00         ` Pedro Alves
  2016-08-05 16:53           ` Eli Zaretskii
  0 siblings, 1 reply; 9+ messages in thread
From: Pedro Alves @ 2016-08-05 16:00 UTC (permalink / raw)
  To: Eli Zaretskii, Simon Marchi; +Cc: brobecker, gdb-patches

On 08/03/2016 05:27 PM, Eli Zaretskii wrote:
>> CC: <gdb-patches@sourceware.org>
>> From: Simon Marchi <simon.marchi@ericsson.com>
>> Date: Wed, 3 Aug 2016 11:44:33 -0400
>>
>> It's in gdb's configure:
>>
>> $ ./gdb/configure --help
>> ...
>>   --enable-build-with-cxx build with C++ compiler instead of C compiler
>> ...
>>
>>
>> It should probably say:
>>
>>   --disable-build-with-cxx build with C compiler instead of C++ compiler
> 
> Right, that was my suggestion.
> 

Alright, pushed a patch for that to master and 7.12:

 https://sourceware.org/ml/gdb-patches/2016-08/msg00087.html

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

* Re: GDB 7.11.90 available for testing
  2016-08-05 16:00         ` Pedro Alves
@ 2016-08-05 16:53           ` Eli Zaretskii
  0 siblings, 0 replies; 9+ messages in thread
From: Eli Zaretskii @ 2016-08-05 16:53 UTC (permalink / raw)
  To: Pedro Alves; +Cc: simon.marchi, brobecker, gdb-patches

> Cc: brobecker@adacore.com, gdb-patches@sourceware.org
> From: Pedro Alves <palves@redhat.com>
> Date: Fri, 5 Aug 2016 16:59:53 +0100
> 
> On 08/03/2016 05:27 PM, Eli Zaretskii wrote:
> >> CC: <gdb-patches@sourceware.org>
> >> From: Simon Marchi <simon.marchi@ericsson.com>
> >> Date: Wed, 3 Aug 2016 11:44:33 -0400
> >>
> >> It's in gdb's configure:
> >>
> >> $ ./gdb/configure --help
> >> ...
> >>   --enable-build-with-cxx build with C++ compiler instead of C compiler
> >> ...
> >>
> >>
> >> It should probably say:
> >>
> >>   --disable-build-with-cxx build with C compiler instead of C++ compiler
> > 
> > Right, that was my suggestion.
> > 
> 
> Alright, pushed a patch for that to master and 7.12:
> 
>  https://sourceware.org/ml/gdb-patches/2016-08/msg00087.html

Thanks!

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

end of thread, other threads:[~2016-08-05 16:53 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-08-01 16:10 GDB 7.11.90 available for testing Joel Brobecker
2016-08-02 15:29 ` Eli Zaretskii
2016-08-03 15:10   ` Pedro Alves
2016-08-03 15:50     ` Simon Marchi
2016-08-03 16:10       ` Pedro Alves
2016-08-03 16:28       ` Eli Zaretskii
2016-08-05 16:00         ` Pedro Alves
2016-08-05 16:53           ` Eli Zaretskii
2016-08-03 16:27     ` Eli Zaretskii

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).