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 b3ef5a5 + d16b00e commit f62935fCopy full SHA for f62935f
src/MPI.jl
@@ -12,7 +12,8 @@ include("cman.jl")
12
13
function __init__()
14
# need to open libmpi with RTLD_GLOBAL flag for Linux, before any ccall
15
- Libdl.dlopen(libmpi, Libdl.RTLD_LAZY|Libdl.RTLD_DEEPBIND|Libdl.RTLD_GLOBAL)
+ # cannot use RTLD_DEEPBIND; this leads to segfaults at least on Ubuntu 15.10
16
+ Libdl.dlopen(libmpi, Libdl.RTLD_LAZY|Libdl.RTLD_GLOBAL)
17
end
18
19
0 commit comments