We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc12c27 commit fc2ab5cCopy full SHA for fc2ab5c
src/main/java/io/tiledb/libtiledb/NativeLibLoader.java
@@ -317,7 +317,7 @@ private static Path extractLibraryFile(
317
*/
318
private static Path findNativeLibrary(String libraryName, boolean mapLibraryName) {
319
String mappedLibraryName = mapLibraryName ? System.mapLibraryName(libraryName) : libraryName;
320
- String libDir = LIB_RESOURCE_DIR + "/" + getOSClassifier();
+ String libDir = LIB_RESOURCE_DIR;
321
String libPath = libDir + "/" + mappedLibraryName;
322
323
boolean hasNativeLib = hasResource(libPath);
0 commit comments