svn commit: r340640 - head/lib/libc

Ed Maste emaste at FreeBSD.org
Mon Nov 19 18:12:40 UTC 2018


Author: emaste
Date: Mon Nov 19 18:12:39 2018
New Revision: 340640
URL: https://svnweb.freebsd.org/changeset/base/340640

Log:
  libc: forcibly disable BIND_NOW
  
  Building libc WITH_BIND_NOW results in segfault at process start.  For
  now force BIND_NOW off until the root cause can be identified and fixed.
  
  PR:		233333
  Sponsored by:	The FreeBSD Foundation

Modified:
  head/lib/libc/Makefile

Modified: head/lib/libc/Makefile
==============================================================================
--- head/lib/libc/Makefile	Mon Nov 19 17:33:44 2018	(r340639)
+++ head/lib/libc/Makefile	Mon Nov 19 18:12:39 2018	(r340640)
@@ -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
 


More information about the svn-src-all mailing list