mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
elf: Reinstate on DL_DEBUG_BINDINGS _dl_lookup_symbol_x
The prelink removal done by 6628c742b2
wrongly removed the debug
support.
Checked on x86_64-linux-gnu.
This commit is contained in:
parent
59e501f204
commit
891a7958a2
@ -854,6 +854,23 @@ _dl_lookup_symbol_x (const char *undef_name, struct link_map *undef_map,
|
|||||||
if (__glibc_unlikely (current_value.m->l_used == 0))
|
if (__glibc_unlikely (current_value.m->l_used == 0))
|
||||||
current_value.m->l_used = 1;
|
current_value.m->l_used = 1;
|
||||||
|
|
||||||
|
if (__glibc_unlikely (GLRO(dl_debug_mask) & DL_DEBUG_BINDINGS))
|
||||||
|
{
|
||||||
|
const char *reference_name = undef_map->l_name;
|
||||||
|
|
||||||
|
_dl_debug_printf ("binding file %s [%lu] to %s [%lu]: %s symbol `%s'",
|
||||||
|
DSO_FILENAME (reference_name),
|
||||||
|
undef_map->l_ns,
|
||||||
|
DSO_FILENAME (current_value.m->l_name),
|
||||||
|
current_value.m->l_ns,
|
||||||
|
protected ? "protected" : "normal", undef_name);
|
||||||
|
if (version)
|
||||||
|
_dl_debug_printf_c (" [%s]\n", version->name);
|
||||||
|
else
|
||||||
|
_dl_debug_printf_c ("\n");
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
*ref = current_value.s;
|
*ref = current_value.s;
|
||||||
return LOOKUP_VALUE (current_value.m);
|
return LOOKUP_VALUE (current_value.m);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user