Skip to content

Instantly share code, notes, and snippets.

@andreibosco
Created October 17, 2015 17:49
Show Gist options
  • Select an option

  • Save andreibosco/9b3d4e7ad264fa502588 to your computer and use it in GitHub Desktop.

Select an option

Save andreibosco/9b3d4e7ad264fa502588 to your computer and use it in GitHub Desktop.

Revisions

  1. andreibosco created this gist Oct 17, 2015.
    11 changes: 11 additions & 0 deletions java.library.path.md
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,11 @@
    Fonte: http://stackoverflow.com/questions/661320/how-to-add-native-library-to-java-library-path-with-eclipse-launch-instead-of

    # How to add a .so to java.library.path

    Java run configuration's Arguments : VM arguments:

    ```
    java -Djava.library.path="${workspace_loc:project}\lib;${env_var:PATH} ..."
    ```

    Must not forget the quotation marks, otherwise there are problems with spaces in PATH.