Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove default search paths for Unix systems #264

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Aug 20, 2021

  1. Remove default search paths for Unix systems

    The JDK already includes the default search paths for Unix/Linux through
    it's system property `java.library.path`
    
    You can see the default path set by the JDK for Unix/Linux here: https://github.com/AdoptOpenJDK/openjdk-jdk8u/blob/master/hotspot/src/os/linux/vm/os_linux.cpp#L371
    
    In an effort to enforce reproducibility for the NixOS project, we've
    recently patched the JDK8 to clear out the default java.library.path
    NixOS/nixpkgs#123708
    
    Unfortunately, this does not bubble up to the Jnr-FFI since they
    additionally hardcode the values.
    
    This commit removes that hardcoded list.
    fzakaria committed Aug 20, 2021
    Configuration menu
    Copy the full SHA
    cdc89b7 View commit details
    Browse the repository at this point in the history