Blame SOURCES/binutils-readelf-other-sym-info.patch
|
|
d1152b |
--- binutils.orig/binutils/readelf.c 2020-07-24 15:08:30.317597020 +0100
|
|
|
d1152b |
+++ binutils-2.35/binutils/readelf.c 2020-07-24 15:09:39.029155552 +0100
|
|
|
d1152b |
@@ -12069,11 +12069,13 @@ print_dynamic_symbol (Filedata *filedata
|
|
|
d1152b |
unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
|
|
|
d1152b |
|
|
|
d1152b |
printf (" %-7s", get_symbol_visibility (vis));
|
|
|
d1152b |
+#if 0
|
|
|
d1152b |
/* Check to see if any other bits in the st_other field are set.
|
|
|
d1152b |
Note - displaying this information disrupts the layout of the
|
|
|
d1152b |
table being generated, but for the moment this case is very rare. */
|
|
|
d1152b |
if (psym->st_other ^ vis)
|
|
|
d1152b |
printf (" [%s] ", get_symbol_other (filedata, psym->st_other ^ vis));
|
|
|
d1152b |
+#endif
|
|
|
d1152b |
}
|
|
|
d1152b |
printf (" %4s ", get_symbol_index_type (filedata, psym->st_shndx));
|
|
|
d1152b |
|
|
|
d1152b |
@@ -12112,7 +12114,17 @@ print_dynamic_symbol (Filedata *filedata
|
|
|
d1152b |
version_string);
|
|
|
d1152b |
}
|
|
|
d1152b |
|
|
|
d1152b |
- putchar ('\n');
|
|
|
d1152b |
+#if 1
|
|
|
d1152b |
+ {
|
|
|
d1152b |
+ unsigned int vis = ELF_ST_VISIBILITY (psym->st_other);
|
|
|
d1152b |
+
|
|
|
d1152b |
+ /* Check to see if any other bits in the st_other field are set. */
|
|
|
d1152b |
+ if (psym->st_other ^ vis)
|
|
|
d1152b |
+ printf (" \t[%s]", get_symbol_other (filedata, psym->st_other ^ vis));
|
|
|
d1152b |
+ }
|
|
|
d1152b |
+#endif
|
|
|
d1152b |
+
|
|
|
d1152b |
+ putchar ('\n');
|
|
|
d1152b |
|
|
|
d1152b |
if (ELF_ST_BIND (psym->st_info) == STB_LOCAL
|
|
|
d1152b |
&& section != NULL
|