Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 23 Oct 2017 16:02:05 +0000 (UTC)
From:      Ngie Cooper <ngie@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-projects@freebsd.org
Subject:   svn commit: r324922 - projects/runtime-coverage/share/mk
Message-ID:  <201710231602.v9NG25Zj031945@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: ngie
Date: Mon Oct 23 16:02:05 2017
New Revision: 324922
URL: https://svnweb.freebsd.org/changeset/base/324922

Log:
  Move MK_COVERAGE fu before .include <bsd.mkopt.mk> so it's actually usable

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

Modified: projects/runtime-coverage/share/mk/src.opts.mk
==============================================================================
--- projects/runtime-coverage/share/mk/src.opts.mk	Mon Oct 23 15:43:38 2017	(r324921)
+++ projects/runtime-coverage/share/mk/src.opts.mk	Mon Oct 23 16:02:05 2017	(r324922)
@@ -292,6 +292,17 @@ __DEFAULT_YES_OPTIONS+=CXGBETOOL
 __DEFAULT_NO_OPTIONS+=CXGBETOOL
 .endif
 
+# clang and gcc 4.8+ (c++11 supporting compilers) support -fprofile-dir and
+# can compile lib/libclang_rt/profile . libgcov, etc, in base is a dead end
+# that I (ngie) do not wish to support with MK_COVERAGE.
+#
+# NB: some gcc cross-toolchain packages are currently broken: bug 223174.
+.if ${COMPILER_FEATURES:Mc++11}
+__DEFAULT_NO_OPTIONS+=	COVERAGE
+.else
+BROKEN_OPTIONS+=COVERAGE
+.endif
+
 .include <bsd.mkopt.mk>
 
 #
@@ -421,13 +432,6 @@ MK_LLDB:=	no
 .if ${MK_CLANG} == "no"
 MK_CLANG_EXTRAS:= no
 MK_CLANG_FULL:= no
-.endif
-
-# XXX: COMPILER_FEATURES and TARGET lies!
-.if ${MK_CLANG} == "no" && ${MK_GCC} != "no"
-# gcc 4.2.1 (base) is a dead end. It lacks some niceties that would cleaning
-# integrate the output with the design of MK_COVERAGE, e.g., -fprofile-dir .
-MK_COVERAGE:=	no
 .endif
 
 #



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