mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
disable BIND_NOW in libc, libthr, and rtld
An issue remains with BIND_NOW and processes using threads. For now, restore libc's BIND_NOW disable, and also disable BIND_NOW in rtld and libthr. A patch is in review (D18400) that likely fixes this issue, but just disable BIND_NOW pending further testing after it is committed. PR: 233333 Sponsored by: The FreeBSD Foundation
This commit is contained in:
parent
ecc0f5f63b
commit
0e450664ad
3 changed files with 4 additions and 0 deletions
|
|
@ -6,6 +6,8 @@ SHLIBDIR?= /lib
|
|||
|
||||
.include <src.opts.mk>
|
||||
|
||||
# BIND_NOW in libc results in segfault at startup (PR 233333)
|
||||
MK_BIND_NOW= no
|
||||
# Force building of libc_pic.a
|
||||
MK_TOOLCHAIN= yes
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,7 @@ PACKAGE= clibs
|
|||
SHLIBDIR?= /lib
|
||||
|
||||
.include <src.opts.mk>
|
||||
MK_BIND_NOW= no
|
||||
MK_SSP= no
|
||||
|
||||
LIB=thr
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
.include <src.opts.mk>
|
||||
PACKAGE= clibs
|
||||
MK_BIND_NOW= no
|
||||
MK_SSP= no
|
||||
|
||||
CONFS= libmap.conf
|
||||
|
|
|
|||
Loading…
Reference in a new issue