]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-91321: Fix test_cppext for C++03 (#93902)
authorVictor Stinner <vstinner@python.org>
Thu, 16 Jun 2022 12:39:00 +0000 (14:39 +0200)
committerGitHub <noreply@github.com>
Thu, 16 Jun 2022 12:39:00 +0000 (14:39 +0200)
Don't build _testcppext.cpp with -Wzero-as-null-pointer-constant when
testing C++03: only use this compiler flag with C++11.

Lib/test/setup_testcppext.py

index a288dbdc57bdeda09189656ffba57d05364fe9a2..892e24a6376c5ea4dbed6f33e09c3891204b35f5 100644 (file)
@@ -19,8 +19,6 @@ if not MS_WINDOWS:
         '-Werror',
         # Warn on old-style cast (C cast) like: (PyObject*)op
         '-Wold-style-cast',
-        # Warn when using NULL rather than _Py_NULL in static inline functions
-        '-Wzero-as-null-pointer-constant',
     ]
 else:
     # Don't pass any compiler flag to MSVC
@@ -39,6 +37,10 @@ def main():
         name = '_testcpp11ext'
 
     cppflags = [*CPPFLAGS, f'-std={std}']
+    if std == 'c++11':
+        # Warn when using NULL rather than _Py_NULL in static inline functions
+        cppflags.append('-Wzero-as-null-pointer-constant')
+
     cpp_ext = Extension(
         name,
         sources=[SOURCE],