Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork33.3k
Closed
Description
Bug description:
This bug was exposed byGH-108716. I think it was not the cause, just that it exposed an existing issue.
The build fails with:
./python -E -c 'import sys ; from sysconfig import get_platform ; print("%s-%d.%d" % (get_platform(), *sys.version_info[:2]))' >platformFatal Python error: _PyImport_InitCore: failed to initialize importlibPython runtime state: preinitializedImportError: Frozen object named '_frozen_importlib' is invalidCurrent thread 0x00007fb629644740 (most recent call first): <no Python frame>make: *** [Makefile:932: platform] Error 1Likelypython doesn't know to look in$(srcdir)/Lib for the_importlib library. It probably looks in./Lib/ and that fails.
CPython versions tested on:
CPython main branch
Operating systems tested on:
Linux