svn commit: r233431 - head/libexec/rtld-elf

Konstantin Belousov kib at FreeBSD.org
Sat Mar 24 19:14:44 UTC 2012


Author: kib
Date: Sat Mar 24 19:14:44 2012
New Revision: 233431
URL: http://svn.freebsd.org/changeset/base/233431

Log:
  Remove libssp_nonshared from the rtld linking set. The only use for the
  library was definition for the weak alias of __stack_chk_fail.
  
  No objections from:	kan
  MFC after:	2 weeks

Modified:
  head/libexec/rtld-elf/Makefile
  head/libexec/rtld-elf/rtld.c

Modified: head/libexec/rtld-elf/Makefile
==============================================================================
--- head/libexec/rtld-elf/Makefile	Sat Mar 24 19:13:10 2012	(r233430)
+++ head/libexec/rtld-elf/Makefile	Sat Mar 24 19:14:44 2012	(r233431)
@@ -40,7 +40,7 @@ CFLAGS+=	-fpic
 CFLAGS+=	-DPIC $(DEBUG)
 LDFLAGS+=	-shared -Wl,-Bsymbolic
 DPADD=		${LIBC_PIC}
-LDADD=		-lc_pic -lssp_nonshared
+LDADD=		-lc_pic
 
 .if ${MK_SYMVER} == "yes"
 LIBCDIR=	${TOPSRCDIR}/lib/libc

Modified: head/libexec/rtld-elf/rtld.c
==============================================================================
--- head/libexec/rtld-elf/rtld.c	Sat Mar 24 19:13:10 2012	(r233430)
+++ head/libexec/rtld-elf/rtld.c	Sat Mar 24 19:14:44 2012	(r233431)
@@ -4390,6 +4390,7 @@ __stack_chk_fail(void)
 	_rtld_error("stack overflow detected; terminated");
 	die();
 }
+__weak_reference(__stack_chk_fail, __stack_chk_fail_local);
 
 void
 __chk_fail(void)


More information about the svn-src-head mailing list