https://github.com/JuliaParallel/MPI.jl
Revision c9cad65577744afe806df5759dec911a8d780c63 authored by Mosè Giordano on 18 May 2023, 09:46:24 UTC, committed by Lucas C Wilcox on 04 June 2023, 17:05:36 UTC
I currently get
```
julia> MPI.MPI_LIBRARY_VERSION_STRING
"MPICH Version:      4.1.1\nMPICH Release date: Mon Mar  6 14:14:15 CST 2023\nMPICH ABI:          15:0:3\nMPICH Device:       ch3:nemesis\nMPICH configure:    --prefix=/workspace/destdir --build=x86_64-linux-musl --host=x86_64-linux-gnu --enable-shared=yes --enable-static=no --with-device=ch3 --disable-dependency-tracking --enable-fast=all,O3 --docdir=/tmp --mandir=/tmp --disable-opencl\nMPICH CC:           cc    -DNDEBUG -DNVALGRIND -O3\nMPICH CXX:          c++   -DNDEBUG -DNVALGRIND -O3\nMPICH F77:          gfortran   -O3\nMPICH FC:           gfortran   -O3\n"

julia> MPI.MPI_LIBRARY_VERSION
v"0.0.0"
```
They are apparently using spaces instead of a tab now, `\s+` should catch both cases.
With this patch I get
```
julia> MPI.MPI_LIBRARY_VERSION
v"4.1.1"
```
1 parent 19e0f0f
History
Tip revision: c9cad65577744afe806df5759dec911a8d780c63 authored by Mosè Giordano on 18 May 2023, 09:46:24 UTC
Fix regex matching MPICH version number
Tip revision: c9cad65
File Mode Size
.buildkite
.ci
.github
bin
docs
ext
gen
lib
src
test
.gitignore -rw-r--r-- 48 bytes
CITATION.bib -rw-r--r-- 358 bytes
Project.toml -rw-r--r-- 1.1 KB
README.md -rw-r--r-- 2.8 KB
UNLICENSE -rw-r--r-- 1.2 KB
codecov.yml -rw-r--r-- 237 bytes

README.md

back to top