GH-126910: Build/link the JIT shim in the Python interpreter (#148872)

This commit is contained in:
Diego Russo 2026-04-23 12:23:18 +01:00 committed by GitHub
parent 29917d51ab
commit 9633c5239d
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
16 changed files with 202 additions and 209 deletions

View file

@ -1305,7 +1305,7 @@ _PyEval_EvalFrameDefault(PyThreadState *tstate, _PyInterpreterFrame *frame, int
}
#ifdef _Py_TIER2
#ifdef _Py_JIT
_PyJitEntryFuncPtr _Py_jit_entry = _Py_LazyJitShim;
_PyJitEntryFuncPtr _Py_jit_entry = _PyJIT;
#else
_PyJitEntryFuncPtr _Py_jit_entry = _PyTier2Interpreter;
#endif