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 06b5d6e commit d16b00eCopy full SHA for d16b00e
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