我正在写第一个关于Haxe的节目。我跟着instructions on the site编写了Haxe的C ++代码,但是当我尝试编译我的程序时,它说“致命错误:异常失败(”找不到文件compile.hxml “。
我在命令提示符下输入“ haxe compile.hxml ”来编译我的程序。
我正在使用Sublime Editor来编写程序。
在我的 test.hx 中我有
class Test
{
static function main()
{
trace("Hello there");
}
}
在 compile.hxml 中我有
-cpp cpp
-debug
-main Test
-D HXCPP_M64
我使用的是Windows 8,64位。
你能帮助我吗?