Skip to content

Commit 76d0631

Browse files
committed
fixed name of a library
1 parent 0744518 commit 76d0631

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/org/julia/jni/NativeUtils.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ public static String libnameToPlatform(String libname) {
153153
}
154154
String osName = System.getProperty("os.name").toLowerCase();
155155
if (osName.startsWith("mac os")) {
156-
path += "darwin/" + libname + ".dylib";
156+
path += "darwin/" + libname + ".jnilib";
157157
} else if (osName.startsWith("linux")) {
158158
path += "linux/" + libname + ".so";
159159
} else if (osName.startsWith("windows")) {

0 commit comments

Comments
 (0)