Jason Jacob
Jason Jacob

Reputation: 71

"Can't load javah" error in Eclipse

I am trying to use the javah task in an ant build file in Eclipse and I keep getting the following error:

BUILD FAILED

C:\sandbox\build-jni.xml:7: Can't load javah

Here is my build-jni.xml file:

<project>
<property name="bin" location="bin" />


<target name="generate-jni">
    <javah destdir="${bin}" classpath="${bin}">

        <class name="org.example.ExecJNI" />
    </javah>
</target>

Any thoughts as to why I'm getting that error? My project is pointing to the JDK and not the JRE

Upvotes: 3

Views: 1941

Answers (1)

Jason Jacob
Jason Jacob

Reputation: 71

Turned out I didn't have C:\Program Files\Java\jdk1.7.0_15\tools.jar in my Ant Home Entries in Window --> Preferences. That seemed to fix the problem.

Upvotes: 3

Related Questions