Can you use the Phoenix compiler as a more powerful NGEN?
Posted
by TraumaPony
on Stack Overflow
See other posts from Stack Overflow
or by TraumaPony
Published on 2008-09-19T12:32:54Z
Indexed on
2010/04/17
7:13 UTC
Read the original article
Hit count: 559
In case you don't know of Phoenix, it's a compiler framework from Microsoft that's apparantly going to be the foundation of all their new compilers. It can read in code from CIL, x86, x64, and IA64; and emit code in x86, x64, IA64, or CIL.
Can I use it to transform a pure .Net app into a pure native app? By which I mean, it will not have to load any .Net .dll (not even mscoree), and will have the same semantics? This is excluding Reflection, of course.
© Stack Overflow or respective owner