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.
2 parents 9bf31e6 + 565988d commit 01e1105Copy full SHA for 01e1105
deps/build.jl
@@ -27,6 +27,15 @@ function find_lib_ker()
27
end
28
29
30
+ # Wolfram Mathematica
31
+ for path in readlines(`mdfind "kMDItemCFBundleIdentifier == 'com.wolfram.*'"`)
32
+ lib = joinpath(path,"Contents/Frameworks/mathlink.framework/mathlink")
33
+ ker = joinpath(path,"Contents/MacOS/MathKernel")
34
+ if isfile(lib) && isfile(ker)
35
+ return lib, ker
36
+ end
37
38
+
39
elseif Sys.isunix()
40
archdir = Sys.ARCH == :arm ? "Linux-ARM" :
41
Sys.ARCH == :x86_64 ? "Linux-x86-64" :
0 commit comments