PEP 774: Removing the LLVM requirement for JIT builds

So, technically, if I want to implement this on a downstream level, what would I do?

  1. I built Python with ./configure—-enable-experimental-jit=yes-off and have the proper LLVM version installed. The stencils are generated in jit_stencils.h – I save them – for each architecture (and for each build type debug/optimized?).
  2. Elsewhere. I don’t have LLVM, I copy the jit_stencils.h from 1 to the build directory. I build Python with ./configure—-enable-experimental-jit=yes-off.

That’s it?