Re: C99 compliance for src/port/snprintf.c

From: Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com>
To: Andres Freund <andres(at)anarazel(dot)de>
Cc: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>, David Steele <david(at)pgmasters(dot)net>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: C99 compliance for src/port/snprintf.c
Date: 2018-08-16 12:54:17
Message-ID: 2efc3175-5d3d-0b88-fcad-40288b7b11a7@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers pgsql-www

On 16/08/2018 14:30, Andres Freund wrote:
> Hi,
>
> On 2018-08-16 14:26:07 +0200, Peter Eisentraut wrote:
>> On 16/08/2018 13:18, Andres Freund wrote:
>>> checking for ccache gcc option to accept ISO C99... unsupported
>>>
>>> I suspect that's because of the '-ansi' flag in CFLAGS, not because
>>> the compiler is incapable of actually supporting C99.
>>
>> -ansi is equivalent to -std=c90. If we make the switch, the build farm
>> configuration should just probably replace -ansi with -std=c99.
>
> Right. I just hadn't checked the addition of -std=c99 doesn't override
> the -ansi. Presumably just an ordering thing.

The mistake is putting -ansi or similar options into CFLAGS. You need
to put them into CC.

The Autoconf test for C99 correctly puts the candidate options into CC,
but then if the test compilation invocation is something like "$CC
$CFLAGS -c conftest.c", the -ansi cancels out the earlier -std=c99 or
whatever.

--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Andres Freund 2018-08-16 13:00:30 Re: C99 compliance for src/port/snprintf.c
Previous Message Andres Freund 2018-08-16 12:30:50 Re: C99 compliance for src/port/snprintf.c

Browse pgsql-www by date

  From Date Subject
Next Message Andres Freund 2018-08-16 13:00:30 Re: C99 compliance for src/port/snprintf.c
Previous Message Andres Freund 2018-08-16 12:30:50 Re: C99 compliance for src/port/snprintf.c