Reputation: 24364
Is it possible to do these things from a native C
or C++
-compiled program (gcc):
clang
and compile given C
code of a function, passed as const char *
.How?
Upvotes: 10
Views: 2490
Reputation: 9714
For a minimalistic example, see Clang interpreter.
Cling is bit more practical example of such an approach.
Upvotes: 7