show/hide this revision's text 3 added 108 characters in body

Where is HelloWorld.so located? You probably need to specify its parent directory using the command-line parameter "-Djava.library.path".

For example, if it's in "/path/libs/HelloWorld.so", add -Djava.library.path=/path/libs as an option when invoking java. For instance, it's "-Djava.library.path=lib" on one of my projects.

Edit: Dan Dyer points out that the environment variable LD_LIBRARY_PATH also can be used for this.

show/hide this revision's text 2 deleted 1 characters in body

Where is HelloWorld.so located? You probably need to pass -Djava.library.path=/path/to/HelloWorld.so as a specify its parent directory using the command-line parameter (where "/path/to/HelloWorld.so" is the path to the directory containing HelloWorld.so; for instance-Djava.library.path".

For example, if it's in "/path/libs/HelloWorld.so", add -Djava.library.path=libDjava.library.path=/path/libs as an option when invoking java. For instance, it's "-Djava.library.path=lib" on one of my projects)projects.

show/hide this revision's text 1

Where is HelloWorld.so located? You probably need to pass -Djava.library.path=/path/to/HelloWorld.so as a command-line parameter (where "/path/to/HelloWorld.so" is the path to the directory containing HelloWorld.so; for instance, it's "-Djava.library.path=lib" on one of my projects).