Return-Path: X-Original-To: pgbuildfarm-members@lists.pgfoundry.org Delivered-To: pgbuildfarm-members@lists.pgfoundry.org Received: from localhost (unknown [188.227.186.44]) by pgfoundry.org (Postfix) with ESMTP id 45BB8148C3D2 for ; Thu, 8 Sep 2016 13:55:19 +0000 (UTC) Received: from pgfoundry.org ([188.227.186.71]) by localhost (maia-lon.uk.hub.org [188.227.186.44]) (maiad, port 10024) with ESMTP id 06004-09 for ; Thu, 8 Sep 2016 13:55:19 +0000 (UTC) X-Greylist: delayed 00:25:18 by SQLgrey-1.8.0 Received: from slow1-d.mail.gandi.net (slow1-d.mail.gandi.net [217.70.178.86]) by pgfoundry.org (Postfix) with ESMTP id 01E91148C3CF for ; Thu, 8 Sep 2016 13:55:16 +0000 (UTC) Received: from relay4-d.mail.gandi.net (relay4-d.mail.gandi.net [217.70.183.196]) by slow1-d.mail.gandi.net (Postfix) with ESMTP id DC72B496215 for ; Thu, 8 Sep 2016 15:18:43 +0200 (CEST) Received: from mfilter44-d.gandi.net (mfilter44-d.gandi.net [217.70.178.175]) by relay4-d.mail.gandi.net (Postfix) with ESMTP id 6A83A1720B4; Thu, 8 Sep 2016 15:18:43 +0200 (CEST) X-Virus-Scanned: Debian amavisd-new at mfilter44-d.gandi.net Received: from relay4-d.mail.gandi.net ([IPv6:::ffff:217.70.183.196]) by mfilter44-d.gandi.net (mfilter44-d.gandi.net [::ffff:10.0.15.180]) (amavisd-new, port 10024) with ESMTP id WSMjU0F4mtHl; Thu, 8 Sep 2016 15:18:41 +0200 (CEST) X-Originating-IP: 98.122.164.227 Received: from [192.168.10.146] (unknown [98.122.164.227]) (Authenticated sender: adsend@dunslane.net) by relay4-d.mail.gandi.net (Postfix) with ESMTPSA id 599F91720F7; Thu, 8 Sep 2016 15:18:39 +0200 (CEST) To: Tom Lane , Daniel Black References: <773008e7-db08-a525-c887-de9aee60fdce@au.ibm.com> <15598.1473300729@sss.pgh.pa.us> From: Andrew Dunstan Message-ID: Date: Thu, 8 Sep 2016 09:18:38 -0400 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:45.0) Gecko/20100101 Thunderbird/45.0 MIME-Version: 1.0 In-Reply-To: <15598.1473300729@sss.pgh.pa.us> Content-Type: text/plain; charset=windows-1252; format=flowed Content-Transfer-Encoding: 7bit Cc: pgbuildfarm-members@lists.pgfoundry.org Subject: Re: [Pgbuildfarm-members] new build members X-BeenThere: pgbuildfarm-members@lists.pgfoundry.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 08 Sep 2016 13:55:19 -0000 Content-Length: 1349 Lines: 37 On 09/07/2016 10:12 PM, Tom Lane wrote: > Daniel Black writes: >> I've configured a bunch of builds to add to the build farm. The list is: > Hi Daniel! Thanks for bringing all those new critters online. > However, may I suggest that the ccache+clang ones would be a lot more > useful if you added this to their configuration: > > build_env =>{ > > + # needed to make ccache play nice with clang > + CCACHE_CPP2 => '1', > > Lack of this option is what's causing a lot of those useless warnings > (it has to do with clang being fed preprocessor output, which triggers > some of its more dubious warning heuristics). I think this has become > the default behavior as of ccache 3.3, but in older versions you gotta > ask for it. > > As an example of the importance of this, > http://buildfarm.postgresql.org/cgi-bin/show_stage_log.pl?nm=devario&dt=2016-09-08%2000%3A44%3A53&stg=make > contains something north of 1000 warnings, most of which are entirely > bogus. Makes it hard to see if there are any that are meaningful. As of ccache version 3.3.1 this is apparently the default - see I guess I should put it in the sample config file to cater for older versions (e.g. my Fedora machine has 3.2.3 where it is apparently not the default). cheers andrew