Date: Thu, 2 May 2019 02:08:27 +0000 (UTC) From: Enji Cooper <ngie@FreeBSD.org> To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r347011 - projects/runtime-coverage-v2 Message-ID: <201905020208.x4228Rc6012445@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201905020208.x4228Rc6012445>