From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
---|---|
To: | Peter Eisentraut <peter(at)eisentraut(dot)org> |
Cc: | pgsql-hackers(at)lists(dot)postgresql(dot)org, Andres Freund <andres(at)anarazel(dot)de> |
Subject: | Re: New compiler warnings in buildfarm |
Date: | 2024-07-31 14:11:07 |
Message-ID: | 3376004.1722435067@sss.pgh.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Peter Eisentraut <peter(at)eisentraut(dot)org> writes:
> On 30.07.24 18:19, Tom Lane wrote:
>> Sometime in the last month or so, flaviventris's bleeding-edge
>> version of gcc has started whining[1] about truncation of a
>> string literal's implicit trailing '\0' in contexts like this:
>> ../pgsql/src/backend/commands/copyto.c:106:41: warning:
>> initializer-string for array of 'char' is too long
>> [-Wunterminated-string-initialization]
>> 106 | static const char BinarySignature[11] = "PGCOPY\n\377\r\n\0";
>> | ^~~~~~~~~~~~~~~~~~~~
> According to the gcc documentation, this warning is part of -Wextra.
> And indeed flaviventris runs with -Wextra:
> 'CFLAGS' => '-O1 -ggdb -g3 -fno-omit-frame-pointer -Wall -Wextra
> -Wno-unused-parameter -Wno-sign-compare -Wno-missing-field-initializers
> -O0',
Ah --- and it was not doing that a month ago. So maybe the compiler
has had this warning for longer. I don't see it with gcc 13.3 though,
which is the newest I have handy.
> So I think the appropriate fix here for now is to add
> -Wno-unterminated-string-initialization to this buildfarm configuration.
Agreed; our policy so far has been to treat -Wextra warnings with
suspicion, and there is not anything really wrong with these bits
of code.
It looks like serinus needs this fix too.
regards, tom lane
From | Date | Subject | |
---|---|---|---|
Next Message | Jim Vanns | 2024-07-31 14:16:45 | Suggestions to overcome 'multixact "members" limit exceeded' in temporary tables |
Previous Message | Euler Taveira | 2024-07-31 13:50:35 | Re: make pg_createsubscriber option names more consistent |