Hi - I'm having a problem with jikes. I'm running Ant 1.3 on NT and I get
the following error when I set build.compiler to jikes. Any ideas?

    [javac] The name specified is not recognized as an
    [javac] internal or external command, operable program or batch file.


********** Ant.bat *****************

set JIKESPATH=D:\Work\Phoenix\bin\jikes-1.14\jikes.exe

********** Build file *****************

<property name="build.compiler" value="jikes"/>

        <target name="compile" depends="prepare">
                <!-- Compile the java code from ${source} into
${classesOutput} -->
                <javac srcdir="${source}" destdir="${classesOutput}">
                        <classpath id="project.classpath">
                                <pathelement location="${jaxp}"/>
                                <pathelement location="${xalan}"/>
                                <pathelement location="${softwareFactory}"/>
                                <pathelement location="${oracle}"/>
                                <pathelement location="${builder}"/>
                        </classpath>
                </javac>
        </target>

********** Error *****************

compile:
    [javac] Compiling 391 source files to D:\Work\Phoenix\build\classes
    [javac] The name specified is not recognized as an
    [javac] internal or external command, operable program or batch file.



Reply via email to