pgsql: meson: macos: Correct -exported_symbols_list syntax for Sonoma c

Поиск
Список
Период
Сортировка
От Andres Freund
Тема pgsql: meson: macos: Correct -exported_symbols_list syntax for Sonoma c
Дата
Msg-id E1qmflH-006qVw-0x@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
meson: macos: Correct -exported_symbols_list syntax for Sonoma compat

-exported_symbols_list=... works on Ventura and earlier, but not on
Sonoma. The easiest way to fix it is to -Wl,-exported_symbols_list,@0@ which
actually seems more appropriate anyway, it's obviously a linker argument. It
is easier to use the -Wl,, syntax than passing multiple arguments, due to the
way the export_fmt is used (a single string that's formatted), but if it turns
out to be necessary, we can go for multiple arguments as well.

Reviewed-by: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/20230928222248.jw6s7yktpfsfczha@alap3.anarazel.de
Backpatch: 16-, where the meson based buildsystem was added

Branch
------
REL_16_STABLE

Details
-------
https://git.postgresql.org/pg/commitdiff/d5c5312dc8b66b4ad652ec54ed32029d621e1e93

Modified Files
--------------
meson.build | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)


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

Предыдущее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Provide FORCE_NULL * and FORCE_NOT_NULL * options for COPY FROM
Следующее
От: Andrew Dunstan
Дата:
Сообщение: pgsql: Only evaluate default values as required when doing COPY FROM