如何 AOT(提前)编译 c++程序
我是 AOT 编译的新手,我想知道是否有人可以发布一个完整的示例,说明如何制作示例“Hello,world!”在 C++ 中使用 LLVM 和 clang。我查看了 llvm.org 网站,但找不到任何有关如何使用 llvm 进行 AOT 编译的文档。基本上我有兴趣学习如何进行 AOT 编译而不是 JIT,因为可以在移动设备上运行 AOT 代码。
我的问题基于以下有关为 iPhone 编译 ActionScript 3 的文章。
http://www.adobe.com/devnet/logged_in/abansod_iphone.html
谢谢
I'm new to AOT compilation and I was wondering if someone could post a complete example of how to do a sample "Hello, world!" in c++ using LLVM and clang. I looked on the llvm.org website and cannot find any documentation on how to do AOT compilation using llvm. Basically I'm interested in learning how to do AOT compilation instead of JIT since it is possible to run AOT code on mobile devices.
My question is based on the follow article on compiling actionscript 3 for iphone.
http://www.adobe.com/devnet/logged_in/abansod_iphone.html
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
LLVM 是一个主要用于 JIT 编译而不是 AOT 的系统。
LLVM is a system meant mostly for JIT compilation rather than AOT.