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 1fccc75 commit 78e63ecCopy full SHA for 78e63ec
deps/build.jl
@@ -50,7 +50,8 @@ function find_matlab_libpath(matlab_root)
50
matlab_libdir = if Sys.islinux()
51
Sys.WORD_SIZE == 32 ? "glnx86" : "glnxa64"
52
elseif Sys.isapple()
53
- Sys.WORD_SIZE == 32 ? "maci" : "maci64"
+ archchar = Sys.ARCH == :aarch64 ? "a" : "i"
54
+ Sys.WORD_SIZE == 32 ? "maci" : "mac" * archchar * "64"
55
elseif Sys.iswindows()
56
Sys.WORD_SIZE == 32 ? "win32" : "win64"
57
end
0 commit comments