4

这是一个 android 项目,当我决定在运行javac程序时将警告视为错误时,我的 ant 构建脚本有时会失败。说真的,它有时只会这样做,这是我可能会问的另一个问题。

它将打印错误并突然取消构建

[javac] 1 error

[javac] 9 warnings

正如我所做的更深入,我看到“错误”是

error: warnings found and -Werror specified

这不是我明确设置的。现在这可能是一个深埋在 build.xml 文件中的参数,或者可能在这个特定子库的 build.xml 文件中的一个我目前不知道的特定条件下

有时是 android facebook sdk 导致了这种情况。但是 ant build.xml 文件中没有 Werror 参数,但我想禁用它或解决它

这是用于构建服务器的,我有其他条件来停止构建。不一致的 ant 和 javac 问题实际上并不存在。

但任何有关它的见解都值得赞赏。

4

1 回答 1

2

我的 Android SDK 目录下的文件“tools/ant/build.xml”包含以下内容:

<property name="java.compilerargs" value="" />

也许由于警告被视为错误而失败的构建使用的Android SDK在编译器参数中包含“-Werror”?(如果没有,在有问题的 Android SDK 实例的目录中“compilerargs”的递归 grep 可以找到罪魁祸首。)

更新:

另一方面,在我的 Android SDK 中,该属性本身并不是强制性的——它恰好在这里被使用:

<!-- Compiles this project's .java files into .class files. -->
<target name="-compile" depends="-pre-build, -build-setup, -code-gen, -pre-compile">
    <do-only-if-manifest-hasCode elseText="hasCode = false. Skipping...">
        <!-- merge the project's own classpath and the tested project's classpath -->
        <path id="project.javac.classpath">
            <path refid="project.all.jars.path" />
            <path refid="tested.project.classpath" />
            <path path="${java.compiler.classpath}" />
        </path>
        <javac encoding="${java.encoding}"
                source="${java.source}" target="${java.target}"
                debug="true" extdirs="" includeantruntime="false"
                destdir="${out.classes.absolute.dir}"
                bootclasspathref="project.target.class.path"
                verbose="${verbose}"
                classpathref="project.javac.classpath"
                fork="${need.javac.fork}">
            <src path="${source.absolute.dir}" />
            <src path="${gen.absolute.dir}" />
            <compilerarg line="${java.compilerargs}" />
        </javac>

必须存在的元素是倒数第二行的“compilerarg”,因此“compilerarg”而不是“compilerargs”的 grep 将是更好的选择。

于 2013-09-12T04:26:00.813 回答