tags:

views:

63

answers:

2

Anything out there other than llvm ? libjit doesn't seem very active.. I need a really fast and stable jitter. Even at the expense of features.. (preferably under c++)

A: 

As far as I know, libjit is fairly stable, ie it might be a viable option even if it's inactive. Some other alternatives are GNU lightning and Mozilla's Nanojit.

Christoph
Tried them both. They won't even compile on my ubuntu machine..
bugspy.net
If you need fast and stable jit for Linux, then probably you really stuck with mono and llvm.By the way, what's wrong with llvm, why it does not fit?
SK-logic
llvm is wonderful. I really enjoy working with it. I just wonder about any faster alternatives.
bugspy.net
A: 

Mono, Microsoft .NET, JVM. They all are quite embeddable into a C++ application.

SK-logic