Re: [Mono-dev] C# to x86 assembly code?

2006-09-19 Thread Marcos Cobeña
By the way, is it planed to ship MDB with Mono installer packages? For Windows I mean, as I think it's currently possible to get it running under GNU/Linux. Thanks in advance. Regards, 2006/9/18, Robert Jordan [EMAIL PROTECTED]: Auge Mike wrote: Hi Marcos, Yes this can help! But what I

[Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Auge Mike
Hi all, I want to know if there is a tool to compile a C# program into a x86 assembly code? Thanx in advance, ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com http://lists.ximian.com/mailman/listinfo/mono-devel-list

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Marcos Cobeña
Hi Auge, You can currently use Mono AOT compilation (Ahead-Of-Time; mono --aot I think) in order to get a precompiled binary, It'll cause your application to run faster, between some other things. Hope this helps. Regards, 2006/9/18, Auge Mike [EMAIL PROTECTED]: Hi all, I want to know if

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Rafael Teixeira
But to complete the picture, it will still need the Mono runtime. :) On 9/18/06, Marcos Cobeña [EMAIL PROTECTED] wrote: Hi Auge, You can currently use Mono AOT compilation (Ahead-Of-Time; mono --aot I think) in order to get a precompiled binary, It'll cause your application to run faster,

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Marcos Cobeña
Thanks, forgot it! :-) 2006/9/18, Rafael Teixeira [EMAIL PROTECTED]: But to complete the picture, it will still need the Mono runtime. :) On 9/18/06, Marcos Cobeña [EMAIL PROTECTED] wrote: Hi Auge, You can currently use Mono AOT compilation (Ahead-Of-Time; mono --aot I think) in

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Auge Mike
pop ebx 0025 pop esi 0026 pop edi 0027 ret From: Marcos Cobeña [EMAIL PROTECTED] To: Auge Mike [EMAIL PROTECTED] CC: mono-devel-list@lists.ximian.com Subject: Re: [Mono-dev] C# to x86 assembly code? Date: Mon, 18 Sep 2006 20:44:50 +0200 Hi Auge, You can

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Jonathan Gilbert
At 08:44 PM 18/09/2006 +0200, Marcos wrote: Hi Auge, You can currently use Mono AOT compilation (Ahead-Of-Time; mono --aot I think) in order to get a precompiled binary, It'll cause your application to run faster, between some other things. More specifically, it will cause the application to

Re: [Mono-dev] C# to x86 assembly code?

2006-09-18 Thread Jonathan Pryor
On Mon, 2006-09-18 at 14:27 -0500, Jonathan Gilbert wrote: At 08:44 PM 18/09/2006 +0200, Marcos wrote: Hi Auge, You can currently use Mono AOT compilation (Ahead-Of-Time; mono --aot I think) in order to get a precompiled binary, It'll cause your application to run faster, between some