diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2020-03-20 20:37:25 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-20 20:37:25 +0200 |
commit | 24227a95531b21a04bf2514a5b8f61ae29d47043 (patch) | |
tree | fdf15d1ecd54d086dab47c74e07c0503a431c2ae /docs/markdown | |
parent | 84e216fd64028b175eee93783da6d54dadae09e2 (diff) | |
parent | 4120cdd01ae77e9fb41297600ff137435ef00680 (diff) | |
download | meson-24227a95531b21a04bf2514a5b8f61ae29d47043.zip meson-24227a95531b21a04bf2514a5b8f61ae29d47043.tar.gz meson-24227a95531b21a04bf2514a5b8f61ae29d47043.tar.bz2 |
Merge pull request #6544 from dcbaker/mpi-dependency-factory
Use DependencyFactory and ConfigToolDependency for MPI
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Dependencies.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/docs/markdown/Dependencies.md b/docs/markdown/Dependencies.md index 6937448..05c97e5 100644 --- a/docs/markdown/Dependencies.md +++ b/docs/markdown/Dependencies.md @@ -411,7 +411,13 @@ not provide them, it will search for the standard wrapper executables, `mpic`, `mpicxx`, `mpic++`, `mpifort`, `mpif90`, `mpif77`. If these are not in your path, they can be specified by setting the standard environment variables `MPICC`, `MPICXX`, `MPIFC`, `MPIF90`, or -`MPIF77`, during configuration. +`MPIF77`, during configuration. It will also try to use the Microsoft +implementation on windows via the `system` method. + +`method` may be `auto`, `config-tool`, `pkg-config` or `system`. + +*New in 0.54.0* The `config-tool` and `system` method values. Previous +versions would always try `pkg-config`, then `config-tool`, then `system`. ## NetCDF |