* gdb-7.1 release preparation...
@ 2010-03-09 18:10 Joel Brobecker
2010-03-09 18:22 ` Pedro Alves
` (2 more replies)
0 siblings, 3 replies; 9+ messages in thread
From: Joel Brobecker @ 2010-03-09 18:10 UTC (permalink / raw)
To: gdb
Hello everyone,
I would like to release gdb-7.1 in a week from now, say Tues or Wed.
That would put us roughly about a month after the branch was cut and
the pre-release got out.
Anything that we are still missing before we can release?
The only issue that might be blocking that I know of, is an issue
reported by Doug:
Subject: memory alloc bug (release blocker?)
http://www.sourceware.org/ml/gdb/2010-02/msg00180.html
We still need to decide whether we want to address it before
the release or not.
Anything else that you think should be blocking for the release,
please let me know.
Thank you,
--
Joel
^ permalink raw reply [flat|nested] 9+ messages in thread* Re: gdb-7.1 release preparation... 2010-03-09 18:10 gdb-7.1 release preparation Joel Brobecker @ 2010-03-09 18:22 ` Pedro Alves 2010-03-10 13:14 ` Pierre Muller 2010-03-11 21:18 ` Jan Kratochvil 2 siblings, 0 replies; 9+ messages in thread From: Pedro Alves @ 2010-03-09 18:22 UTC (permalink / raw) To: gdb; +Cc: Joel Brobecker On Tuesday 09 March 2010 18:10:21, Joel Brobecker wrote: > Hello everyone, > > I would like to release gdb-7.1 in a week from now, say Tues or Wed. > That would put us roughly about a month after the branch was cut and > the pre-release got out. > > Anything that we are still missing before we can release? > > The only issue that might be blocking that I know of, is an issue > reported by Doug: > > Subject: memory alloc bug (release blocker?) > http://www.sourceware.org/ml/gdb/2010-02/msg00180.html > > We still need to decide whether we want to address it before > the release or not. Sorry, too late for that, it has already been fixed. :-) See "[for discussion] Update inferior address spaces" at gdb-patches@ last week. -- Pedro Alves ^ permalink raw reply [flat|nested] 9+ messages in thread
* RE: gdb-7.1 release preparation... 2010-03-09 18:10 gdb-7.1 release preparation Joel Brobecker 2010-03-09 18:22 ` Pedro Alves @ 2010-03-10 13:14 ` Pierre Muller 2010-03-10 17:48 ` Joel Brobecker 2010-03-11 19:46 ` Jonas Maebe 2010-03-11 21:18 ` Jan Kratochvil 2 siblings, 2 replies; 9+ messages in thread From: Pierre Muller @ 2010-03-10 13:14 UTC (permalink / raw) To: 'Joel Brobecker', gdb I recently found out a nasty bug in the pascal expression support: http://sourceware.org/ml/gdb-patches/2010-03/msg00314.html The patch is really tiny (the follow up messages are related to formatting issues mainly). May I still commit this fix to the branch before release or is it too late? Pierre Muller Pascal language maintainer ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-10 13:14 ` Pierre Muller @ 2010-03-10 17:48 ` Joel Brobecker 2010-03-11 19:46 ` Jonas Maebe 1 sibling, 0 replies; 9+ messages in thread From: Joel Brobecker @ 2010-03-10 17:48 UTC (permalink / raw) To: Pierre Muller; +Cc: gdb On Wed, Mar 10, 2010 at 02:13:28PM +0100, Pierre Muller wrote: > I recently found out a nasty bug in the pascal > expression support: > http://sourceware.org/ml/gdb-patches/2010-03/msg00314.html [...] > May I still commit this fix to the branch before release or is it too > late? Sure, please go ahead and commit on the branch. Actually, I should have suggested it too, I wasn't paying enough attention. -- Joel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-10 13:14 ` Pierre Muller 2010-03-10 17:48 ` Joel Brobecker @ 2010-03-11 19:46 ` Jonas Maebe 2010-03-11 20:10 ` Sérgio Durigan Júnior 1 sibling, 1 reply; 9+ messages in thread From: Jonas Maebe @ 2010-03-11 19:46 UTC (permalink / raw) To: Pierre Muller; +Cc: gdb On 10 Mar 2010, at 14:13, Pierre Muller wrote: > I recently found out a nasty bug in the pascal > expression support: > http://sourceware.org/ml/gdb-patches/2010-03/msg00314.html I noticed that in that thread you were looking for GNU-style indentation in vim. I don't remember where I found the following (googling suggests http://thisblog.runsfreesoftware.com/?q=node/432), but it works fine for me. Just add it to your .vimrc and GNU-style indentation will be enabled by default when editing C and C++ files. function! GnuIndent() setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,h2,p5,t0,+2,(0,u0,w1,m1 setlocal shiftwidth=2 setlocal tabstop=8 endfunction au FileType c,cpp call GnuIndent() To re-indent existing code in vim, go to the first line of the code, press V, move to the last line and then press = Jonas ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-11 19:46 ` Jonas Maebe @ 2010-03-11 20:10 ` Sérgio Durigan Júnior 0 siblings, 0 replies; 9+ messages in thread From: Sérgio Durigan Júnior @ 2010-03-11 20:10 UTC (permalink / raw) To: gdb; +Cc: Jonas Maebe, Pierre Muller [-- Attachment #1: Type: Text/Plain, Size: 2006 bytes --] On Thursday 11 March 2010 16:46:01, Jonas Maebe wrote: > function! GnuIndent() > setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,h2,p5,t0,+2,(0,u0,w1,m1 > setlocal shiftwidth=2 > setlocal tabstop=8 > endfunction I had to modify this function: function! GNUIndent() setlocal cinoptions=>4,n-2,{2,^-2,:2,=2,g0,h2,p5,t0,+2,(0,u0,w1,m1 setlocal shiftwidth=2 setlocal tabstop=8 setlocal softtabstop=2 setlocal noexpandtab setlocal comments=sl:/*,mb:\ ,elx:*/ endfunction -- Sérgio Durigan Júnior Debugger Engineer -- Red Hat Inc. [-- Attachment #2: This is a digitally signed message part. --] [-- Type: application/pgp-signature, Size: 836 bytes --] ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-09 18:10 gdb-7.1 release preparation Joel Brobecker 2010-03-09 18:22 ` Pedro Alves 2010-03-10 13:14 ` Pierre Muller @ 2010-03-11 21:18 ` Jan Kratochvil 2010-03-12 7:57 ` Joel Brobecker 2 siblings, 1 reply; 9+ messages in thread From: Jan Kratochvil @ 2010-03-11 21:18 UTC (permalink / raw) To: Joel Brobecker; +Cc: gdb On Tue, 09 Mar 2010 19:10:21 +0100, Joel Brobecker wrote: > Anything that we are still missing before we can release? There is now on gdb_7_1-branch a regression-against-7.0 due to the PIE patchset as bugreported by Daniel Jacobowitz: ./gdbserver/gdbserver :2222 /lib64/ld-linux-x86-64.so.2 ./gdb -nx;stty sane + ./gdb -nx -ex 'target remote localhost:2222' -ex 'b main' -ex c ./gdb CTRL-C bt It has been fixed on master by: Re: RFC: Verify AT_ENTRY before using it http://sourceware.org/ml/gdb-patches/2010-03/msg00395.html thread start: http://sourceware.org/ml/gdb-patches/2010-02/msg00612.html http://sourceware.org/ml/gdb-cvs/2010-03/msg00096.html 264e6edfb36d5c827cd0918c1c500dba983b6fca Daniel Jacobowitz has reported also another regression due to PIE this time for remote embedded target. Fixed on master by: Re: PIE question http://sourceware.org/ml/gdb/2010-03/msg00051.html http://sourceware.org/ml/gdb-cvs/2010-03/msg00097.html a2544b6d0024147ad7dd01fd4dad0403c761bb2f OK to check-in also for gdb_7_1-branch? Thanks, Jan ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-11 21:18 ` Jan Kratochvil @ 2010-03-12 7:57 ` Joel Brobecker 2010-03-14 4:57 ` Daniel Jacobowitz 0 siblings, 1 reply; 9+ messages in thread From: Joel Brobecker @ 2010-03-12 7:57 UTC (permalink / raw) To: Jan Kratochvil; +Cc: gdb [off-list] Thanks for pointing them out - I was starting to wonder what we did differently this time to have so little feedback (aka regressions ;-). > OK to check-in also for gdb_7_1-branch? Would you mind asking the reviewer who approved your patch to confirm that it's OK to apply to the branch? I'm about to fly back home, and it's a 36h trip and 12h time difference - I don't think I'll re-emerge before Monday morning... Cheers, -- Joel ^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: gdb-7.1 release preparation... 2010-03-12 7:57 ` Joel Brobecker @ 2010-03-14 4:57 ` Daniel Jacobowitz 0 siblings, 0 replies; 9+ messages in thread From: Daniel Jacobowitz @ 2010-03-14 4:57 UTC (permalink / raw) To: Joel Brobecker; +Cc: Jan Kratochvil, gdb On Fri, Mar 12, 2010 at 11:57:11AM +0400, Joel Brobecker wrote: > Would you mind asking the reviewer who approved your patch to confirm > that it's OK to apply to the branch? I'm about to fly back home, and > it's a 36h trip and 12h time difference - I don't think I'll re-emerge > before Monday morning... I'm not sure which order the various discussions of this came in... but I think the patches are OK for the branch. -- Daniel Jacobowitz CodeSourcery ^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2010-03-14 4:57 UTC | newest] Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed) -- links below jump to the message on this page -- 2010-03-09 18:10 gdb-7.1 release preparation Joel Brobecker 2010-03-09 18:22 ` Pedro Alves 2010-03-10 13:14 ` Pierre Muller 2010-03-10 17:48 ` Joel Brobecker 2010-03-11 19:46 ` Jonas Maebe 2010-03-11 20:10 ` Sérgio Durigan Júnior 2010-03-11 21:18 ` Jan Kratochvil 2010-03-12 7:57 ` Joel Brobecker 2010-03-14 4:57 ` Daniel Jacobowitz
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox