使用 mono aot / aot-full 编译:似乎没有发生任何事情?

发布于 2024-12-14 01:05:17 字数 588 浏览 2 评论 0原文

我有一个 C# 项目,需要将其编译为本机二进制文件。我在这里读过:

http://www.mono-project.com/AOT

那个 Mono可以将程序集预编译为以下两个选项之一:

  1. --aot :预编译映像(在我看来与 Ngen 基本相同)
  2. --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:

  1. --aot : A precompiled image (essentially the same as Ngen as it looks to me)
  2. --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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

演多会厌 2024-12-21 01:05:17

您可能应该制作一份错误报告。即使没有 --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.

浮云落日 2024-12-21 01:05:17

您不需要 --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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文