Can i compile in memory source code to executable with CINT?

hello all
im beginner , i know i can’t do it with clang?
if i have some kind of source code in c/c++
that my application generating in memory
can i pass the stage where i load the c++ file , and just build my own logic with the c++ source code in memory and to compile to executable ?
then i found this project and im not sure if this can be done .
Thanks

Hi,

No, CINT does not support that. But with ROOT you can use ACLiC: you write your source into a file and call gROOT->ProcessLine(".L MyCode.C+") and it will build a library.

Cheers, Axel.