[RFC][PATCH 4/6] Handle DF_1_UNIQUE in readelf
Vivek Das Mohapatra
vivek@collabora.com
Mon Mar 30 17:42:05 GMT 2020
---
binutils/readelf.c | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/binutils/readelf.c b/binutils/readelf.c
index eb41e10dae..ed1d757623 100644
--- a/binutils/readelf.c
+++ b/binutils/readelf.c
@@ -10349,6 +10349,11 @@ process_dynamic_section (Filedata * filedata)
printf (" NOCOMMON");
val ^= DF_1_NOCOMMON;
}
+ if (val & DF_1_UNIQUE)
+ {
+ printf (" UNIQUE");
+ val ^= DF_1_UNIQUE;
+ }
if (val != 0)
printf (" %lx", val);
puts ("");
--
2.11.0
More information about the Libc-alpha
mailing list