Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 9 Apr 2019 00:35:09 +0000 (UTC)
From:      Enji Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r346045 - projects/runtime-coverage-v2/share/mk
Message-ID:  <201904090035.x390Z94Z050167@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Tue Apr  9 00:35:08 2019
New Revision: 346045
URL: https://svnweb.freebsd.org/changeset/base/346045

Log:
  Disable MK_COVERAGE_SUPPORT when MK_COVERAGE is disabled

Modified:
  projects/runtime-coverage-v2/share/mk/src.opts.mk

Modified: projects/runtime-coverage-v2/share/mk/src.opts.mk
==============================================================================
--- projects/runtime-coverage-v2/share/mk/src.opts.mk	Mon Apr  8 22:57:36 2019	(r346044)
+++ projects/runtime-coverage-v2/share/mk/src.opts.mk	Tue Apr  9 00:35:08 2019	(r346045)
@@ -547,6 +547,7 @@ MK_LLD_BOOTSTRAP:= no
 MK_BINUTILS:=	no
 MK_CLANG:=	no
 MK_COVERAGE:=	no
+MK_COVERAGE_SUPPORT:=	no
 MK_GCC:=	no
 MK_GDB:=	no
 MK_INCLUDES:=	no
@@ -584,12 +585,13 @@ MK_${vv:H}:=	${MK_${vv:T}}
 #
 
 .if !${COMPILER_FEATURES:Mc++11}
-# Note about MK_COVERAGE:
+# Note about MK_COVERAGE and MK_COVERAGE_SUPPORT:
 #
 # clang and gcc 4.8+ (c++11 supporting compilers) support -fprofile-dir and
 # can compile lib/libclang_rt/profile . libgcov, etc, in base would require
 # backports from GPLv3 versions of the gcc toolchain in order to function.
 MK_COVERAGE:=	no
+MK_COVERAGE_SUPPORT:=	no
 MK_LLDB:=	no
 .endif
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201904090035.x390Z94Z050167>