svn commit: r347011 - projects/runtime-coverage-v2

Enji Cooper ngie at FreeBSD.org
Thu May 2 02:08:28 UTC 2019


Author: ngie
Date: Thu May  2 02:08:26 2019
New Revision: 347011
URL: https://svnweb.freebsd.org/changeset/base/347011

Log:
  Compile lib/libclang_rt/profile if MK_CLANG == no
  
  This might fix "make tinderbox". We'll see :)!

Modified:
  projects/runtime-coverage-v2/Makefile.inc1

Modified: projects/runtime-coverage-v2/Makefile.inc1
==============================================================================
--- projects/runtime-coverage-v2/Makefile.inc1	Thu May  2 01:17:55 2019	(r347010)
+++ projects/runtime-coverage-v2/Makefile.inc1	Thu May  2 02:08:26 2019	(r347011)
@@ -2717,7 +2717,7 @@ libraries: .MAKE .PHONY
 # Build coverage libraries for the target. This must be done here in
 # order for the cross-toolchain to be able to find them with
 # `make libraries` and the rest of buildworld.
-.if ${MK_CLANG_BOOTSTRAP} != "no"
+.if ${MK_CLANG_BOOTSTRAP} != "no" || ${MK_CLANG} != "no"
 .if ${MK_COVERAGE_SUPPORT} != "no"
 _coverage_libs+= lib/libclang_rt/profile
 .endif


More information about the svn-src-projects mailing list