4

使用 compc 编译 swc 时,我间歇性地收到以下错误:

[exec] Using AIR SDK: /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK
[exec] Loading configuration: /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/flex-config.xml
[exec] 
[exec] /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/flex-config.xml:47
[exec] Error: unable to open '/Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/libs/player/11.1/playerglobal.swc'.
[exec] /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/flex-config.xml (line: 47)
[exec]         </external-library-path>
[exec] 
[exec] 

我似乎找不到发生这种情况的任何原因。目录 /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK 设置为 AIR SDK 3.7,正如我所说的错误是间歇性的,如果我继续构建它最终会消失离开。

另一件看起来很奇怪的事情是:

[exec] Loading configuration: /Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK/frameworks/flex-config.xml

所以我很困惑为什么它会尝试寻找 11.1/playerglobal.swc。由于它有时可以工作,似乎一切都设置正确,但我无法弄清楚是什么导致脚本假发。

这一步来自一个 ant 脚本。蚂蚁脚本如下:

<exec executable="${COMPC}" failonerror="true">
    <env key="FLEX_HOME" value="${FLEX_HOME}"/>
    <env key="AIR_SDK_HOME" value="${AIR_SDK_HOME}"/>
    <arg line="-source-path ${SRC_DIR}"/>
    <arg line="-output ${BIN_DIR}/${OUTPUT_FILENAME}"/>
    <arg line="-swf-version ${SWF_VERSION}"/>
    <arg line="-external-library-path+=&quot;${FLEX_HOME}/frameworks/libs/air/airglobal.swc&quot;"/>
    <arg line="-define+=CONFIG::LOGLEVEL,4"/>
    <arg line="--keep-as3-metadata+=TypeHint,EditorData,Embed,Inject,PostInject"/>
    <arg line="-inline"/>
    <arg line="-include-classes ${classes}"/>
</exec>

-swf-version 以 20 的形式传入,在此任务执行之前我有一个回显,以验证它没有改变。

AIR_SDK_HOME 和 FLEX_HOME 值设置如下:

<property name="FLEX_HOME" value="/Applications/Adobe Flash Builder 4.7/eclipse/plugins/com.adobe.flash.compiler_4.7.0.349722/AIRSDK" />
<property name="AIR_SDK_HOME" value="${FLEX_HOME}" />

补充笔记:

通常,当此错误发生时,它会继续发生,直到终端窗口关闭并重新启动。

我开始注意到的另一件事是,它在同一终端窗口内的构建失败后立即更频繁地发生(或者可能只发生)。

任何帮助或建议表示赞赏!谢谢!

4

1 回答 1

3

我以这种方式解决了这个问题: - 手动创建文件夹:AIRSDK_HOME\frameworks\libs\player\11.1\ - 复制实际版本“playerglobal.swc”(我从 AIRSDK_HOME\frameworks\libs\player\15.0\ 到 AIRSDK_HOME\frameworks \libs\player\11.1\)

于 2014-11-19T11:54:42.107 回答