vote up 0 vote down star

i came across ahead-of-time (aot) compilation in some writing by Miguel de Icaza about producing applications for iphone using mono. It sounds like what results is native code. Is this so or what is the difference?

flag

67% accept rate

3 Answers

vote up 3 vote down check

When you use aot=full (only supported on a few platforms) then no code will be JITed at runtime.

But you still require a runtime to provide many of the features that your application uses. Mono's runtime includes support for garbage collection, thread management, the IO-layer, the IOremapping layer, the interface to the operating system, support for the decimal type, reflection (so you can still do things like type.GetMethods () for example).

link|flag
OK I think I get it thanks, it's native code with a runtime, a little analagous with vb6 in that regard, perhaps – jjb Jul 22 at 21:57
vote up 1 vote down

AOT compilation is that, Mono will compile methods to native code before the program is run. You can read about it here

link|flag
Thanks for the link, if the AOT=Full option is used is it the case that all dependencies on a runtime are removed and the resultant code is unmanaged? Sorry if this is a dumb question – jjb Jul 22 at 6:22
ie that the code can be run on a machine without mono? – jjb Jul 22 at 6:24
the code is compiled to native code but it stills needs the libraries. – Aragorn Jul 22 at 14:33
vote up 1 vote down

Yes, the result is native code, but in the basic AOT version this still needs the Mono runtime to execute.

What happens in the "Mono on iPhone" scenario is a bit more complex. First, the managed libraries are trimmed using Mono Linker. Then the result is compiled to native code with mono --aot=full. Finally, all this is passed to mkbundle to pack it into a single executable, including the Mono runtime.

If you just want to run .Net applications without installing Microsoft .Net / Mono, then just use mkbundle.

link|flag
Thank you that helps me to understand it better – jjb Jul 22 at 21:58

Your Answer

Get an OpenID
or

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