Re: [PATCH v2 1/1] Fix detection of pwritev support for OSX.

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [PATCH v2 1/1] Fix detection of pwritev support for OSX.
Дата
Msg-id 484263.1611077376@sss.pgh.pa.us
обсуждение исходный текст
Ответ на [PATCH v2 1/1] Fix detection of pwritev support for OSX.  (James Hilliard <james.hilliard1@gmail.com>)
Ответы Re: [PATCH v2 1/1] Fix detection of pwritev support for OSX.  (James Hilliard <james.hilliard1@gmail.com>)
Список pgsql-hackers
James Hilliard <james.hilliard1@gmail.com> writes:
> Fixes:
> fd.c:3661:10: warning: 'pwritev' is only available on macOS 11.0 or newer [-Wunguarded-availability-new]

It's still missing preadv, and it still has nonzero chance of breaking
successful detection of pwritev on platforms other than yours, and it's
still really ugly.

But the main reason I don't want to go this way is that I don't think
it'll stop with preadv/pwritev.  If we make it our job to build
successfully even when using the wrong SDK version for the target
platform, we're going to be in for more and more pain with other
kernel APIs.

We could, of course, do what Apple wants us to do and try to build
executables that work across versions.  I do not intend to put up
with the sort of invasive, error-prone source-code-level runtime test
they recommend ... but given that there is weak linking involved here,
I wonder if there is a way to silently sub in src/port/pwritev.c
when executing on a pre-11 macOS, by dint of marking it a weak
symbol?

            regards, tom lane



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

Предыдущее
От: Mark Rofail
Дата:
Сообщение: Re: Add primary keys to system catalogs
Следующее
От: Robert Haas
Дата:
Сообщение: Re: Printing backtrace of postgres processes