是否有任何算法可以将简单的 Haxe 代码转换为 C/C++代码文件?
我有简单的 Haxe 应用程序,就像
class Main
{
public static function main()
{
trace("hello world");
}
}
我知道如何为 Windows 编译此类应用程序(不是作为 SWF,而是作为纯 C\C++ 的应用程序)(并且您可以看到如何 这里 但使用 hxcpp\0,4 会磨损)问题是 - 我不想为 Windows 编译应用程序Vista 或 7 或 XP 我想要获得纯 C\C++ 代码(最好在一个地方作为一个项目),例如在 Windows Mobile 上或我想要的任何地方编译该代码。
那么有没有什么算法可以将简单的Haxe代码变成C/C++代码文件呢?
I have simple Haxe app like
class Main
{
public static function main()
{
trace("hello world");
}
}
I know how to compile such app for windows (not as SWF but as app from pure C\C++ )(and you can see how here but be worned thay use hxcpp\0,4 ) The problem is - I do not want to compile app for Windows Vista or 7 or XP I want to get PURE C\C++ code (better in one place as one project) for for example compiling that code on windows mobile or where ever I want to.
So is there any algorithm for turning simple Haxe code into C/C++ code files?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
AFAICT
hxcpp
确实生成使用特定于平台的库(Neko)的 C++ 代码。输出不是特定于 Windows 的。AFAICT
hxcpp
does generate C++ code which uses a platform specific library(Neko). the output is not windows specific.