我安装了最新版本的Haxe 3以及最新版本的Xcode和OpenFL。
我在终端的OpenFl项目中,运行以下命令:
openfl test ios -simulator
我收到以下错误:
/Applications/Xcode.app/Contents/Developer/usr/bin/make
Haxe device build: Release-iphoneos-v7
haxe Build.hxml -D HXCPP_ARMV7 -cpp build/Release-iphoneos-v7
cd build/Release-iphoneos-v7; export HXCPP_NO_COLOR=1; haxelib run hxcpp Build.xml -Dios -Diphone -DHXCPP_ARMV7 -DHXCPP_CPP11 -DHXCPP_CLANG -DOBJC_ARC `cat Options.txt | while read LINE; do printf " -D$LINE"; done`
Error: Could not find build target "by"
make: *** [build-haxe-armv7] Error 1
Command /Applications/Xcode.app/Contents/Developer/usr/bin/make failed with exit code 2
答案 0 :(得分:5)
它窒息了" by"这将来自"由Haxe生成"插入生成的C ++源文件的顶部。
因此,请尝试使用haxelib run openfl build ios -simulator -Dsource-header=haxe
(或等效的hxcpp
)将默认标头替换为" haxe",它应该在标题行中没有空格的情况下工作。
检查这个OpenFL问题,看起来像是同一个问题:https://github.com/openfl/openfl/issues/1132
之后您也可能遇到此问题:https://github.com/openfl/openfl/issues/1153