build.xml:391: javac doesn‘t support the “nativeheaderdir“ attribute
Posted 柳鲲鹏
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了build.xml:391: javac doesn‘t support the “nativeheaderdir“ attribute相关的知识,希望对你有一定的参考价值。
意思还是很明白的,javac不支持nativeheaderdir属性。
解决办法很简单,打开build.sh,去掉这个属性,继续编译。
<javac classpathref="compile.path"
source="$compatibility"
target="$compatibility"
destdir="$classes"
includeantruntime="false"
deprecation="on"
debug="$debug"
encoding="UTF-8"
nativeheaderdir="$build.headers">
改成
<javac classpathref="compile.path"
source="$compatibility"
target="$compatibility"
destdir="$classes"
includeantruntime="false"
deprecation="on"
debug="$debug"
encoding="UTF-8" >
以上是关于build.xml:391: javac doesn‘t support the “nativeheaderdir“ attribute的主要内容,如果未能解决你的问题,请参考以下文章
Ant 构建失败,“[javac] javac:无效的目标版本:7”
Sqoop报警告hcatalog does not exist!...accumulo does not exist!解决方案