使用 mono aot / aot-full 编译:似乎没有发生任何事情?
我有一个 C# 项目,需要将其编译为本机二进制文件。我在这里读过:
http://www.mono-project.com/AOT
那个 Mono可以将程序集预编译为以下两个选项之一:
- --aot :预编译映像(在我看来与 Ngen 基本相同)
- --aot=full:完全编译为原始 .exe 的本机二进制
实例我当然明白这些是正确的,但 --aot=full 选项可能是错误的。
但是,当我运行:
mono.exe --aot=full --verbose program.exe
我没有得到任何输出时,可执行文件的上次修改日期保持不变,并且不会生成任何文件。我也尝试过作为测试:
mono.exe --aot --verbose program.exe
我得到了相同的结果;没有输出,没有图像文件或一般文件,什么都没有。
我在这里错过了什么吗?
I've got a C# project that I need compiled to a native binary. I've read here:
http://www.mono-project.com/AOT
That Mono can precompile an assembly to one of two options:
- --aot : A precompiled image (essentially the same as Ngen as it looks to me)
- --aot=full: A fully compiled to native binary instance of the original .exe
I am fairly sure I'm understanding those right, but could be wrong about the --aot=full option.
However, when I run:
mono.exe --aot=full --verbose program.exe
I get no output, the last modified date on the executable remains the same, and no files are generated. I've also tried just as a test:
mono.exe --aot --verbose program.exe
I get the same result; no output, no image file or files in general, nothing.
Am I missing something here?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可能应该制作一份错误报告。即使没有 --verbose,AOT 信息也通常会显示。使用 --verbose 你应该得到很多打印结果。另一种可能性是您破坏了 Mono 安装。
不过,如果您想生成本机可执行二进制文件,您应该使用 mkbundle 而不是 AOT。
You should probably make a bug report. AOT info is normally displayed even without --verbose. With --verbose you should get a LOT of prints. Another possibility is that you have broken Mono installation.
Nevertheless if you want to produce native executable binary, you should use mkbundle rather than AOT.
您不需要 --aot,您需要 mkbundle。
--aot 告诉 mono 预编译一些代码而不是使用 jit 编译器,它不会为您提供完整的机器代码二进制文件。为此,您需要 mkbundle。
You don't want --aot, you want mkbundle.
--aot tells mono to precompile some code rather than use the jit compiler, it does not give you a fully machine-code binary. For this you need mkbundle.