From: Salvatore Bonaccorso <carnil@debian.org>
To: Ben Hutchings <ben@decadent.org.uk>
Cc: Arnaldo Carvalho de Melo <acme@kernel.org>,
linux-trace-devel@vger.kernel.org
Subject: Re: [PATCH] libtraceevent: Fix build with binutils 2.35
Date: Sat, 25 Jul 2020 09:06:20 +0200 [thread overview]
Message-ID: <20200725070620.GA4017955@eldamar.local> (raw)
In-Reply-To: <20200725010623.GA194964@decadent.org.uk>
Hi,
On Sat, Jul 25, 2020 at 02:06:23AM +0100, Ben Hutchings wrote:
> In binutils 2.35, 'nm -D' changed to show symbol versions along with
> symbol names, with the usual @@ separator. When generating
> libtraceevent-dynamic-list we need just the names, so strip off the
> version suffix if present.
>
> Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
> Cc: stable@vger.kernel.org
> ---
> tools/lib/traceevent/plugins/Makefile | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tools/lib/traceevent/plugins/Makefile b/tools/lib/traceevent/plugins/Makefile
> index 349bb81482ab..680d883efe05 100644
> --- a/tools/lib/traceevent/plugins/Makefile
> +++ b/tools/lib/traceevent/plugins/Makefile
> @@ -197,7 +197,7 @@ define do_generate_dynamic_list_file
> xargs echo "U w W" | tr 'w ' 'W\n' | sort -u | xargs echo`;\
> if [ "$$symbol_type" = "U W" ];then \
> (echo '{'; \
> - $(NM) -u -D $1 | awk 'NF>1 {print "\t"$$2";"}' | sort -u;\
> + $(NM) -u -D $1 | awk 'NF>1 {sub("@.*", "", $$2); print "\t"$$2";"}' | sort -u;\
> echo '};'; \
> ) > $2; \
> else \
FWIW, tested on a system with binutils 2.35 for a 5.7.10 build.
Tested-by: Salvatore Bonaccorso <carnil@debian.org>
Regards,
Salvatore
--
.-. Salvatore Bonaccorso --------------- Debian GNU/Linux Developer
oo| ----------------------------------------- http://www.debian.org
/`'\ GPG key ID: 0x789D6F057FD863FE --------------------------------
(\_;/) Fingerprint: 04A4 407C B914 2C23 030C 17AE 789D 6F05 7FD8 63FE
next prev parent reply other threads:[~2020-07-25 7:06 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-25 1:06 [PATCH] libtraceevent: Fix build with binutils 2.35 Ben Hutchings
2020-07-25 7:06 ` Salvatore Bonaccorso [this message]
2020-07-28 12:19 ` Arnaldo Carvalho de Melo
2020-07-28 13:08 ` Steven Rostedt
2020-07-29 20:59 ` Arnaldo Carvalho de Melo
2020-07-30 0:11 ` Steven Rostedt
2020-07-30 10:02 ` Arnaldo Carvalho de Melo
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=20200725070620.GA4017955@eldamar.local \
--to=carnil@debian.org \
--cc=acme@kernel.org \
--cc=ben@decadent.org.uk \
--cc=linux-trace-devel@vger.kernel.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.