[Mono-dev] Small fix to aot.c to get --aot working on Windows

2005-09-10 Thread The Software Team
In Windows the GNU Assembler (2.16) doesn't like .bss 1, so I have to change it to .section .bss. SDavila patch.diff Description: Binary data ___ Mono-devel-list mailing list Mono-devel-list@lists.ximian.com

[Mono-dev] Tar file for mono-1.1.9 is useless for build

2005-09-09 Thread The Software Team
The file mono-1.1.9.tar.gz is wrongly packed. For instance, it includes some files twice (in tar format this is possible), has some important files missing like MonoSymbolFile.cs. The outcome is that you cant build the compiler, neither the libraries. This wrong packing is happening

RE: [Mono-devel-list] aot compilation working in windows

2005-04-19 Thread The Software Team
messages from the AOT module. These show whenever the runtime is able to load/execute the AOT code. Zoltan On 4/18/05, The Software Team [EMAIL PROTECTED] wrote: I have modified mini/aot.c to support the generation of native code dlls on Windows (mono –aot). Basically I just

[Mono-devel-list] aot compilation working in windows

2005-04-18 Thread The Software Team
I have modified mini/aot.c to support the generation of native code dlls on Windows (mono aot). Basically I just removed the .type name,@object in windows. Also I wrote every exported symbol twice, with underscore and without. With this I was able to build ahead of time compiled dlls.