mirror of
https://github.com/python/cpython.git
synced 2026-04-26 13:50:54 +00:00
GH-126910: Build/link the JIT shim in the Python interpreter (#148872)
This commit is contained in:
parent
29917d51ab
commit
9633c5239d
16 changed files with 202 additions and 209 deletions
|
|
@ -37,9 +37,6 @@
|
|||
#include "pycore_uniqueid.h" // _PyObject_FinalizeUniqueIdPool()
|
||||
#include "pycore_warnings.h" // _PyWarnings_InitState()
|
||||
#include "pycore_weakref.h" // _PyWeakref_GET_REF()
|
||||
#ifdef _Py_JIT
|
||||
#include "pycore_jit.h" // _PyJIT_Fini()
|
||||
#endif
|
||||
|
||||
#if defined(PYMALLOC_USE_HUGEPAGES) && defined(MS_WINDOWS)
|
||||
#include <Windows.h>
|
||||
|
|
@ -2531,11 +2528,6 @@ _Py_Finalize(_PyRuntimeState *runtime)
|
|||
|
||||
finalize_interp_clear(tstate);
|
||||
|
||||
#ifdef _Py_JIT
|
||||
/* Free JIT shim memory */
|
||||
_PyJIT_Fini();
|
||||
#endif
|
||||
|
||||
#ifdef Py_TRACE_REFS
|
||||
/* Display addresses (& refcnts) of all objects still alive.
|
||||
* An address can be used to find the repr of the object, printed
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue