diff options
| author | Andreas Schwab <[email protected]> | 2022-08-10 10:52:42 +0200 |
|---|---|---|
| committer | Mark Wielaard <[email protected]> | 2022-08-13 20:54:53 +0200 |
| commit | b713edb9a7f3da8e4dd28ac69a1665ed493ca504 (patch) | |
| tree | b2e525a29342dce29fca1baf690c147eaf6d433b /src | |
| parent | 27447fbc646e2a5abdf6af26967d829847180507 (diff) | |
readelf: Handle SHT_RISCV_ATTRIBUTES like SHT_GNU_ATTRIBUTES
Signed-off-by: Andreas Schwab <[email protected]>
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 4 | ||||
| -rw-r--r-- | src/readelf.c | 4 |
2 files changed, 7 insertions, 1 deletions
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 <[email protected]> + + * readelf.c (print_attributes): Also handle SHT_RISCV_ATTRIBUTES. + 2022-08-09 Andreas Schwab <[email protected]> * elflint.c (check_program_header): Don't complain about p_filesz diff --git a/src/readelf.c b/src/readelf.c index f1f77ce8..1a10fd01 100644 --- a/src/readelf.c +++ b/src/readelf.c @@ -3672,7 +3672,9 @@ print_attributes (Ebl *ebl, const GElf_Ehdr *ehdr) && (shdr->sh_type != SHT_ARM_ATTRIBUTES || ehdr->e_machine != EM_ARM) && (shdr->sh_type != SHT_CSKY_ATTRIBUTES - || ehdr->e_machine != EM_CSKY))) + || ehdr->e_machine != EM_CSKY) + && (shdr->sh_type != SHT_RISCV_ATTRIBUTES + || ehdr->e_machine != EM_RISCV))) continue; printf (_("\ |
