mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
6b96d6de8c
This symbol is only used by DL_UNMAP which in turn is only used by _dl_close_worker in dl-close.c, and _dl_close_worker itself is marked hidden as it is only used by the ldso. That means _dl_unmap should be marked hidden. Without this, the elf/check-localplt test fails.
13 lines
215 B
Plaintext
13 lines
215 B
Plaintext
ld {
|
|
GLIBC_PRIVATE {
|
|
# hppa specific functions in the dynamic linker, but used by libc.so.
|
|
_dl_symbol_address; _dl_lookup_address;
|
|
_dl_function_address;
|
|
}
|
|
}
|
|
libc {
|
|
GLIBC_2.2 {
|
|
__clz_tab;
|
|
}
|
|
}
|