Haxe Error: You cannot access the cpp package while targeting cross (for cpp.Lib)

Haxe Error: You cannot access the cpp package while targeting cross (for cpp.Lib)

我试图设置 Haxe,但每当我尝试导入库时,无论是 js.Libcpp.Lib 等,我都会遇到这个错误。它总是出现这个错误:

Error: You cannot access the cpp package while targeting cross (for cpp.Lib)

我已经搜索了几个小时,似乎没有人遇到同样的问题,也没有修复。请帮忙!

"cross" 表示调用编译器时未指定任何目标(-cpp-js...)。

我不确定你选择了哪一个,但如果我没记错的话,使用 HaxeDevelop 的一些模板的项目设置有点不寻常。通常您会使用 HXML file 来直接指定参数。看起来像这样的 build.hxml 应该可以在这里工作:

-cp src
-main Main
-cpp bin

然后 运行 haxe build.hxml.