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 078723f commit 1655da9Copy full SHA for 1655da9
src/implementations.jl
@@ -10,7 +10,8 @@ macro mpicall(expr)
10
11
# On unix systems we call the global symbols to allow for LD_PRELOAD interception
12
# It can be emulated in Windows (via Libdl.dllist), but this is not fast.
13
- if Sys.isunix() && expr.args[2].head == :tuple
+ if Sys.isunix() && expr.args[2].head == :tuple &&
14
+ (VERSION ≥ v"1.5-" || expr.args[2].args[1] ≠ :(:MPI_Get_library_version))
15
expr.args[2] = expr.args[2].args[1]
16
end
17
0 commit comments