pgsql: meson: Restore implicit warning/debug/optimize flags for extensi

From: Peter Eisentraut <peter(at)eisentraut(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: meson: Restore implicit warning/debug/optimize flags for extensi
Date: 2024-06-07 07:37:00
Message-ID: E1sFU9j-000NZT-Bp@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

meson: Restore implicit warning/debug/optimize flags for extensions

Meson uses warning/debug/optimize flags such as "-Wall", "-g", and
"-O2" automatically based on "--warnlevel" and "--buildtype" options.
And we use "--warning_level=1" and "--buildtype=debugoptimized" by
default.

But we need these flags for Makefile.global (for extensions) and
pg_config, so we need to compute them manually based on the
higher-level options.

Without this change, extensions building using pgxs wouldn't get -Wall
or optimization options.

Author: Sutou Kouhei <kou(at)clear-code(dot)com>
Discussion: https://www.postgresql.org/message-id/flat/20240122.141139.931086145628347157.kou%40clear-code.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3482bab5e30a0cc7fba4c904ba21b4957b2876bd

Modified Files
--------------
meson.build | 32 ++++++++++++++++++++++++++++++++
src/include/meson.build | 4 ++--
2 files changed, 34 insertions(+), 2 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message Etsuro Fujita 2024-06-07 08:55:33 pgsql: postgres_fdw: Refuse to send FETCH FIRST WITH TIES to remote ser
Previous Message Amit Kapila 2024-06-07 06:44:03 pgsql: Doc: Add the new section "Logical Replication Failover".