public inbox for gdb-patches@sourceware.org
 help / color / mirror / Atom feed
* GDB 11 branching update (2021-06-20)
@ 2021-06-20 16:39 Joel Brobecker
  2021-06-21 16:42 ` Simon Marchi
  0 siblings, 1 reply; 4+ messages in thread
From: Joel Brobecker @ 2021-06-20 16:39 UTC (permalink / raw)
  To: gdb-patches
  Cc: philippe.waroquiers, ssbssa, simon.marchi, kevinb, luis.machado,
	bernd.edlinger, Joel Brobecker

Hello everyone,

Some good progress again last week. Down to two PRs left and two new
maybes added.


Fixed Since the Previous Update:
--------------------------------

  * [TomDV] <PR symtab/26327>
    GDB hangs in get_builder() due to recursive ancestor pointers
    https://sourceware.org/bugzilla/show_bug.cgi?id=26327

  * [RainerO] <PR binutils/27666>
    ar doesn't create indices on Solaris/sparcv9
    https://sourceware.org/bugzilla/show_bug.cgi?id=27666

    PR not closed, but situation now back to where it was in previous
    release.

  * [HannesD/PedroA/TomT] TUI issues from mouse-support patch
    https://sourceware.org/pipermail/gdb-patches/2021-June/179541.html


Added Since the Last Update:
----------------------------

  * [PhilippeW] Fix/complete option list/description in manual and in gdb --help
    https://sourceware.org/pipermail/gdb-patches/2021-June/179834.html

  * [HannesD] some Python-suport changes for the TUI interface

    [PATCHv2 1/2] Implement locals TUI window
    https://sourceware.org/pipermail/gdb-patches/2021-June/179539.html
    (I think this patch should provide more information in the commit
    message about what its goal is)

    [PATCHv2 2/2] Use method children instead of to_string in pretty printers
    https://sourceware.org/pipermail/gdb-patches/2021-June/179540.html
    (same suggestion)


Other Ongoing Items:
--------------------


  * [Simon/Kevin] <PR gdb/27526>
    Attaching to threaded process on glibc 2.33: libthread_db fails to initialize with "generic error"
    https://sourceware.org/bugzilla/show_bug.cgi?id=27526

    Patch pushed:
    https://sourceware.org/pipermail/gdb-patches/2021-June/179786.html
    Asked for confirmation on the PR that we're now OK to close.

  * [LuisM] <PR corefiles/27909>
    AArch64 MTE fixes and corefile support
    https://sourceware.org/bugzilla/show_bug.cgi?id=27909


Not Critical, but Requested:
----------------------------

  * [BerndE] Improve debugging of optimized code
    https://sourceware.org/pipermail/gdb-patches/2021-January/175617.html

    (2021-05-31) v2 posted at:
      [0/4] https://sourceware.org/pipermail/gdb-patches/2021-May/179367.html
      [1/4] https://sourceware.org/pipermail/gdb-patches/2021-May/179368.html
      [2/4] https://sourceware.org/pipermail/gdb-patches/2021-May/179370.html
      [3/4] https://sourceware.org/pipermail/gdb-patches/2021-May/179369.html

  * [Sergey with Simon as reviewer] <PR tdep/26633>
    Add Z80 CPU support
    https://sourceware.org/bugzilla/show_bug.cgi?id=26633

    Patch submitted at:
    https://sourceware.org/pipermail/gdb-patches/2020-September/172083.html

    (May 24th) High-level pre-review done at:
    https://sourceware.org/pipermail/gdb-patches/2021-May/179191.html

    No movement since then. Not blocking for branching since it would
    be safe to backport after branching. Not blocking for release either.

  * [Simon] <PR gdb/26868>
    Follow-up on x86-64 stub submission
    https://sourceware.org/bugzilla/show_bug.cgi?id=26868

    This is the submission in question:
    https://sourceware.org/pipermail/gdb-patches/2020-November/173182.html

    For me, although I am not a lawyer, I don't think we can accept
    the contribution without the author signing a copyright assignment
    form.
-- 
Joel

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

* Re: GDB 11 branching update (2021-06-20)
  2021-06-20 16:39 GDB 11 branching update (2021-06-20) Joel Brobecker
@ 2021-06-21 16:42 ` Simon Marchi
  2021-06-22 20:59   ` Simon Marchi
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Marchi @ 2021-06-21 16:42 UTC (permalink / raw)
  To: Joel Brobecker, gdb-patches
  Cc: philippe.waroquiers, ssbssa, kevinb, luis.machado, bernd.edlinger

>   * [Simon/Kevin] <PR gdb/27526>
>     Attaching to threaded process on glibc 2.33: libthread_db fails to initialize with "generic error"
>     https://sourceware.org/bugzilla/show_bug.cgi?id=27526
> 
>     Patch pushed:
>     https://sourceware.org/pipermail/gdb-patches/2021-June/179786.html
>     Asked for confirmation on the PR that we're now OK to close.

Closed now.

I reported this which is a recent regression, so it should ideally be
looked at before the release:

  ASan crash when printing expression involving function call
  https://sourceware.org/bugzilla/show_bug.cgi?id=27994

Simon

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

* Re: GDB 11 branching update (2021-06-20)
  2021-06-21 16:42 ` Simon Marchi
@ 2021-06-22 20:59   ` Simon Marchi
  2021-06-22 21:12     ` Joel Brobecker
  0 siblings, 1 reply; 4+ messages in thread
From: Simon Marchi @ 2021-06-22 20:59 UTC (permalink / raw)
  To: Joel Brobecker, gdb-patches; +Cc: bernd.edlinger

> I reported this which is a recent regression, so it should ideally be
> looked at before the release:
> 
>   ASan crash when printing expression involving function call
>   https://sourceware.org/bugzilla/show_bug.cgi?id=27994

Andrew looked into this one really quickly (thanks!), it will probably
be closed soon.

I however stumbled on another regression while looking at that:

    DW_AT_ranges with form DW_FORM_sec_offset problem
    https://sourceware.org/bugzilla/show_bug.cgi?id=28004

Not a blocker for the branching, but I'd say a blocker for the release.

Simon

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

* Re: GDB 11 branching update (2021-06-20)
  2021-06-22 20:59   ` Simon Marchi
@ 2021-06-22 21:12     ` Joel Brobecker
  0 siblings, 0 replies; 4+ messages in thread
From: Joel Brobecker @ 2021-06-22 21:12 UTC (permalink / raw)
  To: Simon Marchi; +Cc: Joel Brobecker, gdb-patches, bernd.edlinger

> > I reported this which is a recent regression, so it should ideally be
> > looked at before the release:
> > 
> >   ASan crash when printing expression involving function call
> >   https://sourceware.org/bugzilla/show_bug.cgi?id=27994
> 
> Andrew looked into this one really quickly (thanks!), it will probably
> be closed soon.
> 
> I however stumbled on another regression while looking at that:
> 
>     DW_AT_ranges with form DW_FORM_sec_offset problem
>     https://sourceware.org/bugzilla/show_bug.cgi?id=28004
> 
> Not a blocker for the branching, but I'd say a blocker for the release.

Understood. Thanks for the update, Simon. They are very much appreciated!

-- 
Joel

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

end of thread, other threads:[~2021-06-22 21:12 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-20 16:39 GDB 11 branching update (2021-06-20) Joel Brobecker
2021-06-21 16:42 ` Simon Marchi
2021-06-22 20:59   ` Simon Marchi
2021-06-22 21:12     ` Joel Brobecker

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).