我一直在从事 Haxe 项目,针对 windows 的一切都进展顺利......直到我休息了几天,当我回来做一些工作时,当我尝试调试或发布时,我得到了这个:
Building main
Running Pre-Build Command Line...
cmd: "C:\HaxeToolkit\haxe/haxelib" run lime build "project.xml" windows -debug -Dfdb
Build halted with errors.
Done(1)
...我不明白出了什么问题,我现在已经多次重新安装 haxetoolkit、lime、openfl 一切都是最新的并且没有损坏,我已经尝试过 HaxeDevelop 和 FlashDevelop,问题仍然存在......只是窗户,但任何东西......
请帮忙...这不是我的代码,我已经有几天没有做任何事情了,两天前一切正常...
编辑:我已经设法查明我认为的问题根源。我试图从头开始做新项目,当我编辑我的 project.xml 以便我可以使用 .swf 作为我的资产库时,出现问题并且它不会构建......:我
这是我的 project.xml 的一部分:
<!-- classpath, haxe libs -->
<source path="src" />
<haxelib name="openfl" />
<haxelib name="swf" />
<haxelib name="actuate" />
<!-- assets -->
<library path="Assets/library.swf" type="swf" preload="true" generate="true" />
<assets path="Assets" rename="assets" exclude="openfl.svg|*.swf" />
<icon path="assets/openfl.svg" />
<!-- optimize output
<haxeflag name="-dce full" /> -->
编辑 2: 这与以下内容有关:
<library path="Assets/library.swf" type="swf" preload="true" generate="true" />
当我删除 generate="true" 和/或 preload="true" 我得到:
Error: error running link.exe -out:ApplicationMain-debug.exe -nologo -machine:x86 -debug -subsystem:windows,5.01 -libpath:lib user32.lib @obj/msvc16-debug-ncxp/all_objs
Build halted with errors.
Done(1)