This is what the VTK wiki says about this type of errors -
http://www.vtk.org/Wiki/VTK/FAQ#When_I_try_to_run_my_program_with_Java-wrapped_VTK.2C_why_do_I_get_.22java.lang.UnsatisfiedLinkError:_no_vtkSomeLibraryName.22.3F
Regards,
BG
> --
> You received this message because you are subscribed to the Google
> Groups "Clojure" group.
> To post to this group, send email to clo...@googlegroups.com
> Note that posts from new members are moderated - please be patient with your
> first post.
> To unsubscribe from this group, send email to
> clojure+u...@googlegroups.com
> For more options, visit this group at
> http://groups.google.com/group/clojure?hl=en
--
Baishampayan Ghose
b.ghose at gmail.com
* Just use LD_LIBRARY_PATH env variable (or OS equivalent) and don't
bother with java.library.path.
* Make sure all the libs are loaded manually in the right order:
(clojure.lang.RT/loadLibrary "vtkCommon")
(clojure.lang.RT/loadLibrary "vtkCommonJava")
Now the "vtkCommon" lib is already loaded before "vtkCommonJava". Of
course, this means you have to figure out the deps, sort them, and
deal with changes over time. Good times.
Hope this helps,
Dave