From owner-svn-src-projects@freebsd.org Sun Oct 22 22:05:38 2017 Return-Path: Delivered-To: svn-src-projects@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id C3CBCE37841 for ; Sun, 22 Oct 2017 22:05:38 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8F2EC76AD1; Sun, 22 Oct 2017 22:05:38 +0000 (UTC) (envelope-from ngie@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id v9MM5b9k084597; Sun, 22 Oct 2017 22:05:37 GMT (envelope-from ngie@FreeBSD.org) Received: (from ngie@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id v9MM5bhk084596; Sun, 22 Oct 2017 22:05:37 GMT (envelope-from ngie@FreeBSD.org) Message-Id: <201710222205.v9MM5bhk084596@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ngie set sender to ngie@FreeBSD.org using -f From: Ngie Cooper Date: Sun, 22 Oct 2017 22:05:37 +0000 (UTC) To: src-committers@freebsd.org, svn-src-projects@freebsd.org Subject: svn commit: r324875 - projects/runtime-coverage X-SVN-Group: projects X-SVN-Commit-Author: ngie X-SVN-Commit-Paths: projects/runtime-coverage X-SVN-Commit-Revision: 324875 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-projects@freebsd.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: "SVN commit messages for the src " projects" tree" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Oct 2017 22:05:38 -0000 Author: ngie Date: Sun Oct 22 22:05:37 2017 New Revision: 324875 URL: https://svnweb.freebsd.org/changeset/base/324875 Log: Disable MK_COVERAGE in Makefile.inc1 when working with broken gcc packages It makes more sense to do this in the top-level Makefile, instead of down in src.opts.mk . PR: 223174 Modified: projects/runtime-coverage/Makefile.inc1 Modified: projects/runtime-coverage/Makefile.inc1 ============================================================================== --- projects/runtime-coverage/Makefile.inc1 Sun Oct 22 21:39:58 2017 (r324874) +++ projects/runtime-coverage/Makefile.inc1 Sun Oct 22 22:05:37 2017 (r324875) @@ -624,6 +624,9 @@ TARGET_ABI= gnueabi .endif .if ${WANT_COMPILER_TYPE} == gcc || \ (defined(X_COMPILER_TYPE) && ${X_COMPILER_TYPE} == gcc) +# The cross-toolchain gcc packages are broken with respect to libgcov.a, etc. +# PR: 223174 +MK_COVERAGE= no # GCC requires -isystem and -L when using a cross-compiler. --sysroot # won't set header path and -L is used to ensure the base library path # is added before the port PREFIX library path.