Re: buildfarm - make check failures for leveret on 8.0

From: Stefan Kaltenbrunner <stefan(at)kaltenbrunner(dot)cc>
To: Andrew Dunstan <andrew(at)dunslane(dot)net>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, Jeremy Drake <pgsql(at)jdrake(dot)com>, PostgreSQL-development <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: buildfarm - make check failures for leveret on 8.0
Date: 2006-08-08 19:33:03
Message-ID: 44D8E6EF.8000408@kaltenbrunner.cc
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Andrew Dunstan wrote:
> Stefan Kaltenbrunner wrote:
>> Tom Lane wrote:
>>
>>> Jeremy Drake <pgsql(at)jdrake(dot)com> writes:
>>>
>>>> Plus if it is backported, I can enable 8.x builds on mongoose (my
>>>> x86 icc
>>>> buildfarm box).
>>>>
>>> Please do --- I've applied the changes in 8.1 and 8.0 branches.
>>>
>>
>> and leveret went green on both 8.0 and 8.1 ...
>>
>>
>>
>>
>
>
> Good. Now we need to clean up the huge number of warnings, such as:
>
>
>
> /usr/lib64/perl5/5.8.8/x86_64-linux-thread-multi/CORE/proto.h(95):
> warning #1292: attribute "warn_unused_result" ignored
> __attribute__warn_unused_result__;
> ^
>
> and
> pg_restore.c(332): warning #188: enumerated type mixed with another type
> AH = OpenArchive(inputFileSpec, opts->format);

well a large number of those look a bit bogus(annoying) - and icc has
ways to disable individual warnings (indicated by the number following
the #) like:

-wd<L1>[,<L2>,...<LN>]
Disable diagnostics L1 through LN.

maybe we should use
that(ftp://download.intel.com/support/performancetools/c/linux/v9/icc.txt
has the full manpage)?

Stefan

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Chris Browne 2006-08-08 19:33:42 Re: 8.2 features status
Previous Message Ralf S. Engelschall 2006-08-08 19:32:43 Re: [BUGS] Patch to allow C extension modules to initialize/finish