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 07baa34 commit 35cc045Copy full SHA for 35cc045
src/MATLAB.jl
@@ -81,8 +81,10 @@ function __init__()
81
82
# load libraries
83
# workaround for https://github.com/JuliaInterop/MATLAB.jl/issues/200
84
- if Sys.iswindows() || Sys.islinux()
+ if Sys.iswindows()
85
ENV["PATH"] = string(matlab_libpath, ";", ENV["PATH"])
86
+ elseif Sys.islinux()
87
+ ENV["PATH"] = string(matlab_libpath, ":", ENV["PATH"])
88
end
89
libmx[] = Libdl.dlopen(joinpath(matlab_libpath, "libmx"), Libdl.RTLD_GLOBAL)
90
libmat[] = Libdl.dlopen(joinpath(matlab_libpath, "libmat"), Libdl.RTLD_GLOBAL)
0 commit comments