I'd like to be able to compile a C/C++ library so that it runs within a managed runtime in the CLR. There are several tools for doing this with the JVM (NestedVM, LLJVM, etc) but I can't seem to find any for the CLR. Has anyone tried doing this?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Microsoft already provides such a tool with Visual Studio. The C++ compiler cl.exe accepts the /clr option to tell it to generate managed code instead of native code. See the MSDN document How To: Migrate to /clr for information on changing your native project to support managed code.

link|improve this answer
Will the code compiled this way be marked as "unsafe"? That is, could it be run within Silverlight? – paleozogt May 3 '10 at 18:30
Yes, I think it will be marked as unsafe. You may need either /clr:pure or /clr:safe. I don't really know what the difference is, but you're welcome to post a new question about that here if it hasn't already been asked before. The specific topic of running C++ on Silverlight has been asked here before, but with mixed verdicts; a search will provide links. – Rob Kennedy May 3 '10 at 19:00
ok, I guess my question was too vague. I'm reasking it here: stackoverflow.com/questions/2760549/… – paleozogt May 3 '10 at 19:13
feedback

If you have the source code and it compiles under Visual C++ compiler, then from 2005 onwards you can switch the /clr flag and it should compile it to IL rather than a native binary.

link|improve this answer
Will the code compiled this way be marked as "unsafe"? That is, could it be run within Silverlight? – paleozogt May 3 '10 at 18:26
From memory I think you get the option of whether you want Safe code or not. Safe is stricter and may require you to do make more changes to your code than Unsafe IL. This link should help msdn.microsoft.com/en-us/library/k8d11d4s.aspx – Colin Desmond May 3 '10 at 18:29
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.