Prefer local libraries

This commit is contained in:
Andrea 2020-08-23 15:36:45 +02:00
parent d1872a0198
commit 0ba97b2c45
1 changed files with 3 additions and 4 deletions

View File

@ -65,10 +65,6 @@ public class LoadLibrary {
}
private static void loadLibrary(String libname) throws Throwable {
if (loadSysLibrary(libname)) {
return;
}
Arch arch = getCpuArch();
Os os = getOs();
@ -83,6 +79,9 @@ public class LoadLibrary {
try {
loadJarLibrary(libname, arch, os);
} catch (IOException | CantLoadLibrary | UnsatisfiedLinkError e) {
if (loadSysLibrary(libname)) {
return;
}
throw new CantLoadLibrary().initCause(e);
}
}