AOT compiler for C#

  • Thread starter Thread starter Rouslan Partyka
  • Start date Start date
R

Rouslan Partyka

Hello,

Has anyone ever heard about AOT compilers for C#?
Any info would be highly appreciated...

Regards,
RP
 
Hello,

Has anyone ever heard about AOT compilers for C#?
Any info would be highly appreciated...

Regards,
RP

pre-jit:
try ngen.exe

Does this help you?

hth,
Chris
 
try ngen.exe
Does this help you?

Not much. :) Thanks anyway.

Well, I'd better explain what's on my mind. I'm thinking about something
'bigger' than a simple AOT compiler, although I'd love to know what AOT
compilers are around.

The question that came up recently was very simple: can we run C# apps on
'pre-.NET' systems, i.e. on those without the Framework. In theory it can
be possible, because nothing prevents us from generating a native code out
of our C# program and linking it with all the required libs. Such a module
would be quite big, but in many cases it's not an issue. And it would run
everywhere, just like good old C++ programs

I'd like to know if anyone ever heard about or dealt with something like that.

Regards,
RP
 
Back
Top