我在Windows上,我正在尝试使用Mono C#编译器Main.exe
(也尝试gmcs
)编译的mcs
编译。
>mono --aot Main.exe
Mono Ahead of Time compiler - compiling assembly C:\test\Main.exe
Code: 21 Info: 4 Ex Info: 8 Class Info: 30 PLT: 2 GOT
Info: 6 GOT Info Offsets: 8 GOT: 12
Executing the native assembler: as C:\DOCUME~1\MigueldeIcaza\LOCALS~1\Temp\mono_aot_D2 ID2U -o C:\DOCUME~1\MigueldeIcaza\LOCALS~1\Temp\mono_aot_D2ID2U.o
Executing the native linker: gcc -shared --dll -mno-cygwin -o C:\test\Main.exe.dll C:\DOCUME~1\MigueldeIcaza\LOCALS~1\Temp\mono_aot_D2ID2U.o
Compiled 2 out of 2 methods (100%) Methods without GOT slots: 2 (100%)
Direct calls: 0 (100%) JIT time: 0 ms, Generation time: 0 ms,
Assembly+Link time: 319 ms. GOT slot distribution:
image: 1
但这会产生Main.exe.dll
,我想要一个可执行文件。
这可能吗?
更新
我通过写保护Main.exe.dll
拦截了AOT /构建过程,现在我有一个mono_aot_FZKP2U.o
但仍然没有运气:
>gcc -o Main2.exe mono_aot_FZKP2U.o
/mingw/lib/libmingw32.a(main.o):main.c:(.text+0x104):
undefined reference to `WinMain@16'
collect2: ld returned 1 exit status`
更新2009-10-30:
在阅读Jb Evains回答后,我再一次试图用单声道破坏Main.exe.dll但没有成功。
C:\test>mono Main.exe.dll Mono-INFO: Assembly Loader probing location: 'C:\PROGRA~1\MONO-2~1.3\lib\mono\1. 0\mscorlib.dll'. Mono-INFO: Image addref mscorlib 003E5F48 -> C:\PROGRA~1\MONO-2~1.3\lib\mono\1.0 \mscorlib.dll 00B42BC0: 2 Mono-INFO: AOT failed to load AOT module C:\PROGRA~1\MONO-2~1.3\lib\mono\1.0\msc orlib.dll.dll: The system cannot find the file specified. Mono-INFO: Assembly Loader loaded assembly from location: 'C:\PROGRA~1\MONO-2~1. 3\lib\mono\1.0\mscorlib.dll'. Mono-INFO: Config attempting to parse: 'C:\PROGRA~1\MONO-2~1.3\lib\mono\1.0\msco rlib.dll.config'. Mono-INFO: Config attempting to parse: 'C:\PROGRA~1\MONO-2~1.3\lib\..\etc\mono\a ssemblies\mscorlib\mscorlib.config'. Mono-INFO: Assembly mscorlib 003E5F48 added to domain Main.exe.dll, ref_count=1 Mono-INFO: Config attempting to parse: 'C:\PROGRA~1\MONO-2~1.3\lib\..\etc\mono\c onfig'. Mono-INFO: Assembly Loader probing location: 'Main.exe.dll'. Cannot open assembly 'Main.exe.dll': File does not contain a valid CIL image. Mono-INFO: Unloading domain Main.exe.dll 00B04EA0, assembly mscorlib 003E5F48, r efcount=1 Mono-INFO: Unloading assembly mscorlib [003E5F48]. Mono-INFO: Unloading image C:\PROGRA~1\MONO-2~1.3\lib\mono\1.0\mscorlib.dll [00B 42BC0].
答案 0 :(得分:5)
Mono AOT编译过程不会创建可执行文件。它确实创建了一个库。如果可能,Mono会自动获取AOTed代码,您只需像往常一样运行单声道Main.exe。如果Mono选择本机代码,您可以通过指定环境变量MONO_LOG_LEVEL=debug
进行检查。