os icon indicating copy to clipboard operation
os copied to clipboard

python jit bootstrap

Open xnox opened this issue 1 year ago • 0 comments

  • python-3.13: with or without you LTO was specified as both without and with. Last one wins, deduplicate to avoid any confusion.

  • python-3.13: build and install bootstrap python This allows one to regenerate build files created with python, and enables one build python with JIT enabled.

  • python-3.13: enable opt-in JIT Python 3.13 features an experimental just-in-time (JIT) compiler.

    Compile support for it, but keep it disabled by default at runtime, allowing users to opt into it.

    The --enable-experimental-jit option takes these (optional) values, defaulting to yes if --enable-experimental-jit is present without the optional value. yes-off: Build the JIT but disable it by default. To enable the JIT at runtime, pass the environment variable PYTHON_JIT=1.

xnox avatar Oct 04 '24 11:10 xnox