On Tue, 18 Aug 2009, Andi Vajda wrote:
On Tue, 18 Aug 2009, Christian Kofler wrote:
I am new to JCC - but I alread like it!
Well, I did not yet manage to wrap the Java library I want to,
but I appreciate the project in general...
I am stuck at the moment with the following problem:
The Java code seems to use com.sun.tools.doclets.Taglet and JCC does not
like to find that class. I looked around and it resides in tools.jar of
the sun java installation on my 64 bit linux
(/usr/lib/jvm/java-6-sun/lib). Yes, I added an --include for that jar
but JCC still does not find it.
Is this a known issue? Does anybody have some suggestions?
Did you try --classpath ?
http://lucene.apache.org/pylucene/jcc/documentation/readme.html#classpath
Maybe the JVM is depending on some native code that can't be found for this
class. In that case you'd need to use -Djava.library.path=<path> with
vmargs. If that resolves the problem, adding another command line flag to
jcc for setting the library path should be considered.
Andi..