Skip to content

Commit

Permalink
pythongh-104469: Disallow using Py_LIMITED_API with Py_BUILD_CORE (py…
Browse files Browse the repository at this point in the history
…thon#109690)

Fix make check-c-globals: complete USE_LIMITED_C_API list of the
c-analyzer.
  • Loading branch information
vstinner authored Sep 21, 2023
1 parent 26e06ad commit 3f5c564
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 2 deletions.
4 changes: 4 additions & 0 deletions Include/pyport.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,10 @@
# define Py_BUILD_CORE
#endif

#if defined(Py_LIMITED_API) && defined(Py_BUILD_CORE)
# error "Py_LIMITED_API is not compatible with Py_BUILD_CORE"
#endif


/**************************************************************************
Symbols and macros to supply platform-independent interfaces to basic
Expand Down
9 changes: 7 additions & 2 deletions Tools/c-analyzer/c_parser/preprocessor/gcc.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,18 @@

from . import common as _common

# The following C files must not be built with Py_BUILD_CORE,
# because they use the limited C API.
# The following C files define the Py_LIMITED_API macro, and so must not be
# built with the Py_BUILD_CORE macro defined.
USE_LIMITED_C_API = frozenset((
# Modules/
'_testcapimodule.c',
'_testclinic_limited.c',
'xxlimited.c',
'xxlimited_35.c',

# Modules/_testcapi/
'heaptype_relative.c',
'vectorcall_limited.c',
))

TOOL = 'gcc'
Expand Down

0 comments on commit 3f5c564

Please sign in to comment.