When building g++, we need to build libsupc earlier to avoid a race

with libproc. Not sure why people didn't see this before now, but I
get it often for higher (20-30) -j builds, but never for -j1 builds.
This commit is contained in:
Warner Losh 2014-03-30 22:24:37 +00:00
parent 48f1ce6489
commit 53eff78a25
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=263949

View File

@ -1502,6 +1502,9 @@ _prebuild_libs= ${_kerberos5_lib_libasn1} \
lib/libutil lib/libpjdlog ${_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++
.endif
.if defined(WITH_ATF) || ${MK_TESTS} != "no"
.if !defined(WITH_ATF)