3

これは私のbuild.xmlファイルがどのように見えるかです:

<project name="test" xmlns:cpptasks="antlib:net.sf.antcontrib.cpptasks">
    <target name="build-native">
        <mkdir dir="/home/varun/Desktop/lucene/3018-test/check"/>
        <cpptasks:cc outtype="executable" subsystem="console" outfile="BuildNativeDir" objdir="/home/varun/Desktop/lucene/3018-test">
           <fileset file="/home/varun/Desktop/lucene/3018-test/hello.c" />
        </cpptasks:cc>
    </target>
</project>

コマンドを実行するant build-nativeと、エラーが発生します。

BUILD FAILED
/home/varun/Desktop/lucene/3018-test/build.xml:4: Problem: failed to create task or type antlib:net.sf.antcontrib.cpptasks:cc
Cause: The name is undefined.
Action: Check the spelling.
Action: Check that any custom tasks/types have been declared.
Action: Check that any <presetdef>/<macrodef> declarations have taken place.
No types or tasks have been defined in this namespace yet

This appears to be an antlib declaration. 
Action: Check that the implementing library exists in one of:
        -/usr/share/ant/lib
        -/home/varun/.ant/lib
        -a directory added on the command line with the -lib argument


Total time: 0 seconds

しかし、私のCLASSPATHはに設定されて/usr/share/ant/libおり、に配置しant-contrib-1.0b3.jarました/usr/share/ant/lib/ant-contrib-1.0b3.jar

私は何を間違っていますか?

4

1 に答える 1

4

cpptaskには含まれませんant-contrib-*.jar。それを個別にダウンロードする必要があります。

試してみcpptasks-1.0-beta5ましたが、コンパイルされませんでした。cpptasks-1.0-beta4アーカイブにプリコンパイルされたjarがあり、それはうまくいきました。

于 2011-04-12T16:17:35.957 に答える