svn commit: r268377 - head

Warner Losh imp at FreeBSD.org
Mon Jul 7 23:21:26 UTC 2014


Author: imp
Date: Mon Jul  7 23:21:25 2014
New Revision: 268377
URL: http://svnweb.freebsd.org/changeset/base/268377

Log:
  xdev builds libsupc++ and libstdc++ in a slightly strange way. This
  cause a race to be exposed between the two. Compensate for this race
  by serializing the build/install of libstdc++ before libsupc++.

Modified:
  head/Makefile.inc1

Modified: head/Makefile.inc1
==============================================================================
--- head/Makefile.inc1	Mon Jul  7 23:21:20 2014	(r268376)
+++ head/Makefile.inc1	Mon Jul  7 23:21:25 2014	(r268377)
@@ -1497,6 +1497,7 @@ _prebuild_libs=	${_kerberos5_lib_libasn1
 .if ${MK_GNUCXX} != "no" && ${MK_CXX} != "no"
 _prebuild_libs+= gnu/lib/libstdc++ gnu/lib/libsupc++
 gnu/lib/libstdc++__L: lib/msun__L
+gnu/lib/libsubc++__L: gnu/lib/libstdc++__L
 .endif
 
 .if defined(WITH_ATF) || ${MK_TESTS} != "no"


More information about the svn-src-head mailing list