Commit 8a0f7a54 authored by Xavier de Gaye's avatar Xavier de Gaye

Issue #28046: get_sysconfigdata_name() uses the _PYTHON_SYSCONFIGDATA_NAME

environment variable that is defined when cross-compiling.
parent ba17bded
......@@ -418,11 +418,12 @@ _config_vars = None
def _init_posix():
"""Initialize the module as appropriate for POSIX systems."""
# _sysconfigdata is generated at build time, see the sysconfig module
name = '_sysconfigdata_{abi}_{platform}_{multiarch}'.format(
name = os.environ.get('_PYTHON_SYSCONFIGDATA_NAME',
'_sysconfigdata_{abi}_{platform}_{multiarch}'.format(
abi=sys.abiflags,
platform=sys.platform,
multiarch=getattr(sys.implementation, '_multiarch', ''),
)
))
_temp = __import__(name, globals(), locals(), ['build_time_vars'], 0)
build_time_vars = _temp.build_time_vars
global _config_vars
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment