Is there a C C++ C# compiler that compiles to machine code

654 Views Asked by At

I am looking for a way to compile a small computation-intensive program to a machine code executable.

The program is currently written in the Microsoft Visual Studio C# environment, but I am just as happy to do it in C, C++ or any similar variant if it results in my getting a machine code executable.

(I also have the SharpDevelop environment)

I want to avoid the run-time overhead that I expect is incurred by the using a run-time JIT compiler.

I expect that only I will ever use the program and probably only on my machine(s), so I do not have worry about deployment considerations.

1

There are 1 best solutions below

5
On BEST ANSWER

All C/C++ compilers compile to native machine code, that's why you can directly address memory, have inline assembler, and care about sizeof(int) on the system you are compiling for.