Flavius
Flavius

Reputation: 13826

Complete x86/x64 JIT Assembler for C Language

Do you know something just like this, but embeddable in a C program?

Upvotes: 3

Views: 1900

Answers (2)

Wadosh
Wadosh

Reputation: 45

If you are looking for something tiny and relatively simple to embed in your application, there is also:

It's old but damn it's tiny & fast, and it still runs perfectly on RedHad 8.6.

Upvotes: 0

alex strange
alex strange

Reputation: 1249

Some options:

  • LibJIT
  • GNU Lightning
  • The LLVM C bindings
  • Compiling modules with a C compiler and dlopening them - it works everywhere!

Upvotes: 6

Related Questions