pgsql: headerscheck: Get CXXFLAGS from Makefile.global - Mailing list pgsql-committers

From Peter Eisentraut
Subject pgsql: headerscheck: Get CXXFLAGS from Makefile.global
Date
Msg-id E1w4ZH4-0012wu-1Y@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
headerscheck: Get CXXFLAGS from Makefile.global

headerscheck in C++ mode (cpluspluscheck) previously hardcoded
CXXFLAGS and documented that you might need to override them manually
from the environment.  Now that we have better C++ support in the
build system, we can just get CXXFLAGS from Makefile.global, like we
do for other variables.

Furthermore, this is necessary in some configurations to make
cpluspluscheck work under meson, because under meson, some -I options
end up in CXXFLAGS where under make they would be in CPPFLAGS.
Therefore, getting the correct CXXFLAGS is required in those cases.

Reviewed-by: Nazir Bilal Yavuz <byavuz81@gmail.com>
Discussion:
https://www.postgresql.org/message-id/flat/CAMSWrt-PoQt4sHryWrB1ViuGBJF_PpbjoSGrWR2Ry47bHNLDqg%40mail.gmail.com

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0f17d1dbfa6224b3ab0f4377c593b880be427f31

Modified Files
--------------
src/tools/pginclude/README       | 4 ----
src/tools/pginclude/headerscheck | 4 +---
2 files changed, 1 insertion(+), 7 deletions(-)


pgsql-committers by date:

Previous
From: Amit Kapila
Date:
Subject: pgsql: pg_createsubscriber: Introduce module-specific logging functions
Next
From: Peter Eisentraut
Date:
Subject: pgsql: ci: Run headerscheck and cpluspluscheck in parallel