From: Sergei Trofimovich via Gdb-patches <gdb-patches@sourceware.org>
To: Simon Marchi <simon.marchi@polymtl.ca>
Cc: Sergei Trofimovich <siarheit@google.com>, gdb-patches@sourceware.org
Subject: Re: [PATCH] gdb: fix sparc build failure of linux-nat
Date: Mon, 26 Apr 2021 07:27:31 +0100 [thread overview]
Message-ID: <20210426072731.0960126d@sf> (raw)
In-Reply-To: <8c8e919b-e886-3fdf-1370-01fd3d74cb12@polymtl.ca>
On Sun, 25 Apr 2021 19:55:53 -0400
Simon Marchi <simon.marchi@polymtl.ca> wrote:
> On 2021-04-25 4:03 p.m., Sergei Trofimovich via Gdb-patches wrote:
> > From: Sergei Trofimovich <siarheit@google.com>
> >
> > On sparc build failed as:
> >
> > ```
> > gdb/sparc-linux-nat.c: In member function
> > 'virtual void sparc_linux_nat_target::fetch_registers(regcache*, int)':
> > gdb/sparc-linux-nat.c:36:37:
> > error: cannot convert 'regcache*' to 'process_stratum_target*'
> > 36 | { sparc_fetch_inferior_registers (regcache, regnum); }
> > | ^~~~~~~~
> > | |
> > | regcache*
> > ```
> >
> > The fix adopts gdb/sparc-nat.h API change in d1e93af64a6
> > ("gdb: set current thread in sparc_{fetch,collect}_inferior_registers").
> >
> > gdb/ChangeLog:
> >
> > * sparc-linux-nat.c (sparc_linux_nat_target): fix sparc build
> > by passing `process_stratum_target*` parameter.
> > ---
> > gdb/sparc-linux-nat.c | 4 ++--
> > 1 file changed, 2 insertions(+), 2 deletions(-)
> >
> > diff --git a/gdb/sparc-linux-nat.c b/gdb/sparc-linux-nat.c
> > index c644d441228..33a17afa21e 100644
> > --- a/gdb/sparc-linux-nat.c
> > +++ b/gdb/sparc-linux-nat.c
> > @@ -33,10 +33,10 @@ class sparc_linux_nat_target final : public linux_nat_target
> > public:
> > /* Add our register access methods. */
> > void fetch_registers (struct regcache *regcache, int regnum) override
> > - { sparc_fetch_inferior_registers (regcache, regnum); }
> > + { sparc_fetch_inferior_registers (this, regcache, regnum); }
> >
> > void store_registers (struct regcache *regcache, int regnum) override
> > - { sparc_store_inferior_registers (regcache, regnum); }
> > + { sparc_store_inferior_registers (this, regcache, regnum); }
> > };
> >
> > static sparc_linux_nat_target the_sparc_linux_nat_target;
> >
>
> Thanks, this is OK, and sorry about the breakage. If you don't have
> push access, tell me and I'll push it for you (but there's one commit
> where you are the committer, so I presume you have push access).
Ah, that's fine. Pushed as:
https://sourceware.org/git/?p=binutils-gdb.git;a=commitdiff;h=c290cb01fa
(also included the gdb/ChangeLog bit).
--
Sergei
prev parent reply other threads:[~2021-04-26 6:27 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-04-25 20:03 Sergei Trofimovich via Gdb-patches
2021-04-25 23:55 ` Simon Marchi via Gdb-patches
2021-04-26 6:27 ` Sergei Trofimovich via Gdb-patches [this message]
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=20210426072731.0960126d@sf \
--to=gdb-patches@sourceware.org \
--cc=siarheit@google.com \
--cc=simon.marchi@polymtl.ca \
--cc=slyfox@gentoo.org \
/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