From: "Christian Biesinger via gdb-patches" <gdb-patches@sourceware.org>
To: Aaron Merey <amerey@redhat.com>
Cc: Tom Tromey <tom@tromey.com>, gdb-patches <gdb-patches@sourceware.org>
Subject: Re: [PATCH 1/1] Add debuginfod support to GDB
Date: Thu, 09 Jan 2020 23:28:00 -0000 [thread overview]
Message-ID: <CAPTJ0XHYb_WL_Tb479sbqN1Vz0VAGLbPA44hP855t=4h5c9nfw@mail.gmail.com> (raw)
In-Reply-To: <CAJDtP-Qz2bWFf5y775Pz8f=Dw5kCtcPqGUkoiZf8F9PsxW0z0Q@mail.gmail.com>
On Thu, Jan 9, 2020 at 4:41 PM Aaron Merey <amerey@redhat.com> wrote:
>
> On Thu, Jan 9, 2020 at 10:27 AM Tom Tromey <tom@tromey.com> wrote:
> > Aaron> * config/debuginfod.m4: New file. Add macro AC_DEBUGINFOD.
> > Aaron> Adds new configure option --with-debuginfod.
> > Aaron> * configure: Regenerate.
> > Aaron> * configure.ac: Call AC_DEBUGINFOD.
> >
> > Does the top-level configure really need AC_DEBUGINFOD?
> >
> > If so, then this part of the patch has to go to gcc-patches first.
> > But, I suspect it's not needed, in which case dropping it is more
> > convenient, because we can have debuginfod.m4 locally and not involve
> > gcc at all.
>
> The reason for the top-level AC_DEBUGINFOD is to prevent the top-level
> configure check from succeeding in cases where --with-debuginfod is
> given but the debuginfod library or header cannot be found.
Why is debuginfo special in that way? There are a lot of other
libraries in the same situation.
Other comments:
diff --git a/gdb/dwarf2read.c b/gdb/dwarf2read.c
index 04979f3d12..f9c06b8cc6 100644
--- a/gdb/dwarf2read.c
+++ b/gdb/dwarf2read.c
@@ -2708,6 +2711,45 @@ dwarf2_get_dwz_file (struct dwarf2_per_objfile
*dwarf2_per_objfile)
+ char *alt_filename;
+ debuginfod_client *client;
+
+ client = debuginfod_begin ();
Now that GDB is C++, I'd move the declarations to where the variables
are used, e.g.:
debuginfod_client *client = debuginfod_begin ();
+ if (client != NULL)
nullptr
+++ b/gdb/elfread.c
same here
Don't you also need to update gdb/README (the `configure' options
section) and doc/gdb.texinfo (@node Configure Options)?
Christian
next prev parent reply other threads:[~2020-01-09 23:28 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-01-09 3:48 Aaron Merey
2020-01-09 13:48 ` Eli Zaretskii
[not found] ` <87h814r6p4.fsf@tromey.com>
2020-01-09 22:41 ` Aaron Merey
2020-01-09 23:28 ` Christian Biesinger via gdb-patches [this message]
2020-01-10 16:32 ` Aaron Merey
[not found] ` <87tv53wfub.fsf@tromey.com>
2020-01-10 16:46 ` Aaron Merey
2020-01-10 18:43 ` Tom Tromey
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAPTJ0XHYb_WL_Tb479sbqN1Vz0VAGLbPA44hP855t=4h5c9nfw@mail.gmail.com' \
--to=gdb-patches@sourceware.org \
--cc=amerey@redhat.com \
--cc=cbiesinger@google.com \
--cc=tom@tromey.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox