Skip to content

Commit d048adc

Browse files
authored
Allow libmpi.so to be in lib64 (#441)
1 parent bb354a3 commit d048adc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

deps/build.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ if binary == "system"
7171
mpiexec = get(config, "mpiexec", path == "" ? "mpiexec" : joinpath(path, "bin", "mpiexec"))
7272
abi = get(config, "abi", "")
7373

74-
const libmpi = find_library(library, path == "" ? [] : [joinpath(path, "lib")])
74+
const libmpi = find_library(library, path == "" ? [] : [joinpath(path, "lib"), joinpath(path, "lib64")])
7575
if libmpi == ""
7676
error("libmpi could not be found")
7777
end

0 commit comments

Comments
 (0)