In Wikipedia (https://en.wikipedia.org/wiki/Common_Intermediate_Language#General_information) about CIL, it says:
Upon execution of a CLI assembly, its code is passed through the runtime's JIT compiler to generate native code. Ahead-of-time compilation may also be used, which eliminates this step, but at the cost of executable-file portability.
So, is there a way to make Mono compile using ahead-of-time compilation, to produce native code that can be executed like a binary written in C/C++?