blob: 7c2a48a9e0d56f651673ca352e7207465e9d95b3 [file] [log] [blame]
When Python is built without :option:`--enable-shared`, the ``python``
program is now linked to object files, rather than being linked to the Python
static library (libpython.a), to make sure that all symbols are exported.
Previously, the linker omitted some symbols like the :c:func:`Py_FrozenMain`
function. Patch by Victor Stinner.