We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a81554 commit 46cc7e0Copy full SHA for 46cc7e0
src/implementations.jl
@@ -97,7 +97,7 @@ function identify_implementation()
97
if startswith(MPI_LIBRARY_VERSION_STRING, "MPICH")
98
impl = MPICH
99
# "MPICH Version:\t%s\n" / "MPICH2 Version:\t%s\n"
100
- if (m = match(r"^MPICH2? Version:\t(\d+.\d+.\d+\w*)\n", MPI_LIBRARY_VERSION_STRING)) !== nothing
+ if (m = match(r"^MPICH2? Version:\t(\d+.\d+(?:.\d+)?\w*)\n", MPI_LIBRARY_VERSION_STRING)) !== nothing
101
version = VersionNumber(m.captures[1])
102
end
103
0 commit comments