On 12/5/15 10:56 AM, Bryan Drewery wrote: > Author: bdrewery > Date: Sat Dec 5 18:56:21 2015 > New Revision: 291864 > URL: https://svnweb.freebsd.org/changeset/base/291864 > > Log: > Fix regression in r291738: This really wants -lssp. > > The normal LIBADD is ssp_nonshared. This also had a DPADD on LIBSSP which > does not actually exist, it is blank. > > Sponsored by: EMC / Isilon Storage Division > > Modified: > head/lib/libc/tests/ssp/Makefile > > Modified: head/lib/libc/tests/ssp/Makefile > ============================================================================== > --- head/lib/libc/tests/ssp/Makefile Sat Dec 5 17:40:11 2015 > (r291863) > +++ head/lib/libc/tests/ssp/Makefile Sat Dec 5 18:56:21 2015 > (r291864) > @@ -10,7 +10,7 @@ CFLAGS.h_raw+= -fstack-protector-all -Ws > CFLAGS.h_raw+= -fsanitize=bounds > .elif ${COMPILER_TYPE} == "gcc" > CFLAGS.h_raw+= --param ssp-buffer-size=1 > -LIBADD+= ssp > +LDADD+= -lssp > .endif > > NETBSD_ATF_TESTS_SH= ssp_test >
This may actually need to be LIBADD+=ssp_nonshared. I am just too busy at the moment to look into it properly. -- Regards, Bryan Drewery _______________________________________________ [email protected] mailing list https://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
