I'm looking to port an existing interpreted language to RPython (the system underlying pypy), but I need to keep the ability to run the interpreted language in CPython.
Is the RPython interpreter (rlib?) available as a CPython module? Alternatively, is it reasonable to use pypy to generate C code which I can access using ctypes/cython?