[Bug libdw/29450] run-low_high_pc.sh fails on i386 against binutils-2.39

2022-08-10 Thread mliska at suse dot cz via Elfutils-devel
https://sourceware.org/bugzilla/show_bug.cgi?id=29450 --- Comment #7 from Martin Liska --- (In reply to Mark Wielaard from comment #6) > Did the binutils 2.39 commit: > > commit e8cf73215187b0c08679d726a5cc7c019fa3ea2e > Author: Jan Beulich > Date: Wed Aug 10 10:34:22 2022 +0200 > > gas/

[Bug libdw/29450] run-low_high_pc.sh fails on i386 against binutils-2.39

2022-08-10 Thread mark at klomp dot org via Elfutils-devel
https://sourceware.org/bugzilla/show_bug.cgi?id=29450 --- Comment #6 from Mark Wielaard --- Did the binutils 2.39 commit: commit e8cf73215187b0c08679d726a5cc7c019fa3ea2e Author: Jan Beulich Date: Wed Aug 10 10:34:22 2022 +0200 gas/Dwarf: properly skip zero-size functions Fix this? In t

[PATCH RFC] backends: Add RISC-V object attribute printing

2022-08-10 Thread Andreas Schwab via Elfutils-devel
This does not work yet. The RISC-V attribute tags use the same convention as the GNU attributes: odd numbered tags take a string value, even numbered ones an integer value, but print_attributes assumes the ARM numbering scheme by default for non-GNU attributes. --- backends/ChangeLog | 6 ++

[PATCH] readelf: Handle SHT_RISCV_ATTRIBUTES like SHT_GNU_ATTRIBUTES

2022-08-10 Thread Andreas Schwab via Elfutils-devel
Signed-off-by: Andreas Schwab --- src/ChangeLog | 4 src/readelf.c | 4 +++- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index fbcef29e..88db4051 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,3 +1,7 @@ +2022-08-10 Andreas Schwab + +