On Tue, Jul 17, 2012 at 6:20 PM, Victor Stinner <[email protected]> wrote: > What is the status of LLVM nowadays? Is it not a good solution to > write a portable JIT? > > I don't want to write my own library to generate machine code.
You don't have to, even if you don't want to use LLVM. There are plenty of "ligher-weight" approaches to that. For example, GNU Lightning [1] or sljit [2]. [1] http://www.gnu.org/software/lightning/ [2] http://sljit.sourceforge.net/ -- Devin _______________________________________________ Python-Dev mailing list [email protected] http://mail.python.org/mailman/listinfo/python-dev Unsubscribe: http://mail.python.org/mailman/options/python-dev/archive%40mail-archive.com
