mirror of
https://git.FreeBSD.org/src.git
synced 2025-01-11 14:10:34 +00:00
Bring rtld exports in line with corresponding symbols exported from
libc. Disable SYMVER_DEFAULT n rtld until its implications are understood better.
This commit is contained in:
parent
6429a5cb9b
commit
3c0d0ca74b
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168558
@ -21,7 +21,7 @@ LDFLAGS+= -shared -Wl,-Bsymbolic
|
||||
DPADD= ${LIBC_PIC}
|
||||
LDADD= -lc_pic
|
||||
|
||||
.if defined(SYMVER_ENABLED)
|
||||
.if defined(SYMVER_ENABLED) && 0
|
||||
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
|
||||
VERSION_DEF= ${.CURDIR}/Versions.def
|
||||
VERSION_MAP= Version.map
|
||||
|
@ -11,8 +11,11 @@ FBSD_1.0 {
|
||||
dllockinit;
|
||||
dlinfo;
|
||||
dl_iterate_phdr;
|
||||
__tls_get_addr;
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
_rtld_thread_init;
|
||||
_rtld_allocate_tls;
|
||||
_rtld_free_tls;
|
||||
__tls_get_addr;
|
||||
};
|
||||
|
@ -2,3 +2,6 @@
|
||||
|
||||
FBSD_1.0 {
|
||||
};
|
||||
|
||||
FBSDprivate {
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user