5 releases

0.1.4 May 3, 2024
0.1.3 Oct 21, 2023
0.1.2 Aug 5, 2022
0.1.1 Feb 24, 2018
0.1.0 Jun 5, 2017

#217 in Build Utils

Download history 1275/week @ 2024-09-14 588/week @ 2024-09-21 501/week @ 2024-09-28 437/week @ 2024-10-05 501/week @ 2024-10-12 458/week @ 2024-10-19 905/week @ 2024-10-26 986/week @ 2024-11-02 709/week @ 2024-11-09 903/week @ 2024-11-16 906/week @ 2024-11-23 959/week @ 2024-11-30 1077/week @ 2024-12-07 898/week @ 2024-12-14 438/week @ 2024-12-21 735/week @ 2024-12-28

3,236 downloads per month
Used in 23 crates (3 directly)

MIT/Apache

13KB
310 lines

Probe an environment for an installed MPI library

Probing is done in several steps on Unix:

  1. Try to find an MPI compiler wrapper either from the environment variable MPICC or under the name mpicc then run the compiler wrapper with the command line argument -show and interpret the resulting output as gcc compatible command line arguments.
  2. Query the pkg-config database for an installation of mpich.
  3. Query the pkg-config database for an installation of openmpi.

On Windows, only MS-MPI is looked for. The MSMPI_INC and MSMPI_LIB32/64 environment variables are expected.

The result of the first successful step is returned. If no step is successful, a list of errors encountered while executing the steps is returned.

Dependencies

~60KB