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 756ee25 commit 969fa14Copy full SHA for 969fa14
lib/MPIPreferences/src/MPIPreferences.jl
@@ -23,8 +23,8 @@ module System
23
using Preferences
24
const libmpi = @load_preference("libmpi")
25
const mpiexec_path = @load_preference("mpiexec")
26
- mpiexec() = `$mpiexec_path`
27
- mpiexec(f) = f(`$mpiexec_path`)
+ mpiexec(;adjust_PATH=true, adjust_LIBPATH=true) = `$mpiexec_path`
+ mpiexec(f;adjust_PATH=true, adjust_LIBPATH=true) = f(`$mpiexec_path`)
28
end
29
30
function use_jll_binary(binary = Sys.iswindows() ? "MicrosoftMPI_jll" : "MPICH_jll";export_prefs=false, force=true)
0 commit comments