From 30a00f2227a3e53b607331247c81c2911c1e98ef Mon Sep 17 00:00:00 2001 From: Dmitry Marakasov Date: Fri, 9 Sep 2016 19:42:46 +0000 Subject: Most commonly used build systems support silent builds, when they hide actual commands executed and only show short summary line (like "CC foo.c"). CMake and ninja enable this by default, some autotools using ports do as well. This is unacceptable because we need complete build logs at any time, so we now switch to verbose build logs unconditionally. Note that this change deliberately affects ALL builds and not only package builds on cluster, because we need to be sure that user experiencing failure can always provide informative build log regardless of settings and without rerunning the build. Change summary: - Always do verbose builds for cmake, ninja and GNU configure (the latter includes check if --disable-silent-rules is actually supported by the configure script; there are isolated cases when it's not true) - Remove CMAKE_VERBOSE, NINJA_VERBOSE and CONFIGURE_ARGS=--disable-silent-rules from all ports which set them for this is no longer needed - Revert hacks for --disable-silent-rules support priorly committed to biology/ncbi-blast+ and net-p2p/mldonkey - no longer needed as well Submitted by: amdmi3 Reviewed by: mat Exp-run by: antoine Approved by: portmgr (mat, antoine) Differential Revision: D7534 --- CHANGES | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'CHANGES') diff --git a/CHANGES b/CHANGES index dab788b054d0..6b713019aa2d 100644 --- a/CHANGES +++ b/CHANGES @@ -10,6 +10,13 @@ in the release notes and/or placed into UPDATING. All ports committers are allowed to commit to this file. +20160909: +AUTHOR: amdmi3@FreeBSD.org + + Verbose build logs are now preferred and enabled by default for cmake, + ninja and GNU configure. Ports which still produce quiet build logs + (hiding actual commands) are strongly advised to switch to verbose logs. + 20160908: AUTHOR: amdmi3@FreeBSD.org -- cgit v1.2.3