On Thu, 13 Dec 2007, Chris Curvey wrote:
Hmm. "make test" is complaining that there is no module named "lucene" (which kinda makes sense).
Run 'make install' first.
"make install" says ImportError: libjava.so: cannot open shared object file: No such file or directory.
Your LD_LIBRARY_PATH is incorrect. On Linux, it's better to not set it and ensure that -Wl,-rpath is in your jcc's setup.py LFLAGS['linux2'] with the correct path.
Which usually can be fixed by putting the appropriate directory in LD_LIBRARY_PATH, but I've got that set already.
There are two directories to put on LD_LIBRARY_PATH for your JVM. It helps with picking client or server hotspot. Again, look at jcc's setup.py and make sure that the value used with -Wl,-rpath is correct for your system.
Andi.. _______________________________________________ pylucene-dev mailing list [email protected] http://lists.osafoundation.org/mailman/listinfo/pylucene-dev
