Re: Synchronize with imath upstream

Поиск
Список
Период
Сортировка
От Noah Misch
Тема Re: Synchronize with imath upstream
Дата
Msg-id 20190203062048.GB6226@rfd.leadboat.com
обсуждение исходный текст
Ответ на Re: Synchronize with imath upstream  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Ответы Re: Synchronize with imath upstream  (Andrew Gierth <andrew@tao11.riddles.org.uk>)
Re: Synchronize with imath upstream  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
On Sun, Feb 03, 2019 at 06:01:51AM +0000, Andrew Gierth wrote:
> >>>>> "Noah" == Noah Misch <noah@leadboat.com> writes:
> 
>  Noah> If the compiler supports -Wdeclaration-after-statement, I add
>  Noah> -Wno-declaration-after-statement for imath.c.
> 
> I found it much simpler to strip out -Wdeclaration-after-statement
> instead:
> 
> $(RYU_OBJS): override CFLAGS := $(filter-out -Wdeclaration-after-statement,$(CFLAGS))

The -Wno-declaration-after-statement approach takes eight lines of code, and
the filter-out approach takes one.  On the other hand, using $(filter-out)
changes any runs of whitespace to single spaces ("$(filter-out foo,a    b c)"
yields "a b c").  We do risk that with CPPFLAGS and LDFLAGS in a few places.
I don't want to proliferate that practice, because it changes semantics of
CFLAGS containing -DFOO="arbitrary    text".


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Andrew Gierth
Дата:
Сообщение: Re: Synchronize with imath upstream
Следующее
От: rajan
Дата:
Сообщение: Re: Able to do ALTER DEFAULT PRIVILEGES from a user who is not theowner