From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59913) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1etzW2-0007QZ-Rk for qemu-devel@nongnu.org; Thu, 08 Mar 2018 12:39:43 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1etzW1-0008Mm-Ki for qemu-devel@nongnu.org; Thu, 08 Mar 2018 12:39:42 -0500 Received: from smtp.citrix.com ([66.165.176.89]:31749) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1etzW1-0008KY-DL for qemu-devel@nongnu.org; Thu, 08 Mar 2018 12:39:41 -0500 From: Ian Jackson Date: Thu, 8 Mar 2018 17:39:14 +0000 Message-ID: <1520530757-4477-9-git-send-email-ian.jackson@eu.citrix.com> In-Reply-To: <1520530757-4477-1-git-send-email-ian.jackson@eu.citrix.com> References: <1520530757-4477-1-git-send-email-ian.jackson@eu.citrix.com> MIME-Version: 1.0 Content-Type: text/plain Subject: [Qemu-devel] [PATCH 08/11] configure: do_compiler: Dump some extra info under bash List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: xen-devel@lists.xenproject.org, Ian Jackson , Ross Lagerwall , Anthony PERARD , Juergen Gross , Stefano Stabellini , Ian Jackson , "Kent R. Spillner" , Janosch Frank , Thomas Huth , Peter Maydell , Paolo Bonzini This makes it much easier to find a particular thing in config.log. The information may be lacking in other shells, resulting in harmless empty output. (This is why we don't use the proper ${FUNCNAME[*]} array syntax - other shells will choke on that.) The extra output is only printed if configure is run with bash. On systems where /bin/sh is not bash, it is necessary to say bash ./configure to get the extra debug info in the log. Signed-off-by: Ian Jackson CC: Kent R. Spillner CC: Janosch Frank CC: Thomas Huth CC: Peter Maydell CC: Paolo Bonzini --- v6: Fix commit message wording. v4: No longer tag this patch RFC. --- configure | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/configure b/configure index 0a8059f..841c146 100755 --- a/configure +++ b/configure @@ -60,6 +60,10 @@ do_compiler() { # is compiler binary to execute. local compiler="$1" shift + echo >>config.log " +funcs: ${FUNCNAME} +lines: ${BASH_LINENO} +files: ${BASH_SOURCE}" echo $compiler "$@" >> config.log $compiler "$@" >> config.log 2>&1 || return $? # Test passed. If this is an --enable-werror build, rerun -- 2.1.4