vote up 1 vote down star

Does Mono .NET support and compile C++ / CLI?

If not, do you know if they have any plans of supporting it?

flag

5 Answers

vote up 3 vote down check

We don't have a compiler for C++/CLI, it would be a very large undertaking for a very small userbase. Consider also that the C++/CLI spec is inherently flawed and non-portable, so being able to compile it wouldn't help much in the general case.

You can compile using the MS .NET compiler and run in mono with these restrictions: 1) run with mono on any system if the C++/CLI app is pure managed (but then, why use such an ugly language and not C#?)

2) run with mono on windows in the other cases (C++/CLI apps are in general non-portable and include native code, so they can run only on windows and are uninteresting for the major objective of mono which is to run managed programs on Linux)

Note that MS itself will eventually drop C++/CLI, so don't invest too much on it and switch to C#.

link|flag
"MS itself will eventually drop C++/CLI" Could you explain why you think that ? It seems very unlikely to me. – Eggs McLaren Oct 11 '08 at 12:43
Managed C++ is already unsupported and discontinued, it didn't take them long to do that. Now go count the news items related to C++/CLI in the last year or two, the blog posts, the announcements. Connect the dots. – lupus Oct 12 '08 at 8:59
Count the news items,blog posts,announcements, related to C++ (coming from Microsoft) and compare to C#, ASP.NET, etc. Does that mean MS will drop C++ ? – Jay Mooney Oct 12 '08 at 23:23
An old and established language has less development needs and still C++ from MS has seen much more exposure than C++/CLI. But it's your money, so if you want to invest in C++/CLI it's up to you, I'm just giving my advice: people should stay away from C++/CLI and doubly so if they value portability. – lupus Oct 13 '08 at 7:37
if they value portability they should stay away from C# too. I think MS will keep C++/CLI forever, think that they support Iron* languages and they have an even smaller userbase. – gbjbaanb Dec 4 '08 at 22:53
show 1 more comment
vote up 0 vote down

On Mono 2.4 you can run C++/CLI applications which were compiled under e.g. Visual Studio 2008 with /clr:safe switch.

link|flag
vote up 0 vote down

No, C++/CLI is not supported under Mono and likely never will be although generating pure IL using MS compilers would allow totally managed code to run under Mono.

As an interop language, C++/CLI exists to make it possible to call unmanaged code. The other alternative is using P/Invoke which is well-documented albeit with problems.

link|flag
vote up 2 vote down

Mono is able to run 'pure' assemblies generated by C++/CLI, ie. ones that don't contain any native code. The various /clr options supported by the C++ compiler are documented on MSDN.

There is currently no support for compiling C++/CLI. There has been some work on modifying GCC to emit IL, but it isn't complete (and doesn't appear active). See this article.

I don't believe Microsoft document the format for including native code in an assembly, so supporting this is difficult.

link|flag
vote up 1 vote down

go here and look under "Missing Languages". But just because you cant compile does not mean that you cant run. You can compile your C++ code using the framework sdk and try running it using mono. Worth trying anyway.

link|flag

Your Answer

Get an OpenID
or

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