svn commit: r266717 - stable/10

Ian Lepore ian at FreeBSD.org
Mon May 26 22:27:15 UTC 2014


Author: ian
Date: Mon May 26 22:27:14 2014
New Revision: 266717
URL: http://svnweb.freebsd.org/changeset/base/266717

Log:
  MFC 263949, 265063: Add library dependencies for a couple bootstrap libs
  to fix build failures for high -jN values when building with gcc.

Modified:
  stable/10/Makefile.inc1
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/Makefile.inc1
==============================================================================
--- stable/10/Makefile.inc1	Mon May 26 21:09:34 2014	(r266716)
+++ stable/10/Makefile.inc1	Mon May 26 22:27:14 2014	(r266717)
@@ -1500,6 +1500,10 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 		lib/libutil ${_lib_libypclnt} lib/libz lib/msun \
 		${_secure_lib_libcrypto} ${_lib_libldns} \
 		${_secure_lib_libssh} ${_secure_lib_libssl}
+.if ${MK_GNUCXX} != no
+_prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
+gnu/lib/libstdc++__L: lib/msun__L
+.endif
 
 .if defined(WITH_ATF) || ${MK_TESTS} != "no"
 .if !defined(WITH_ATF)


More information about the svn-src-stable-10 mailing list