diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2020-01-29 14:37:17 -0800 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2020-03-19 14:46:07 -0700 |
commit | 4120cdd01ae77e9fb41297600ff137435ef00680 (patch) | |
tree | bb832a187e47729e70682cb3c0e08e545f09ff2a /docs | |
parent | baca2cd07d632dd5d944b2b364a297a0adf42028 (diff) | |
download | meson-4120cdd01ae77e9fb41297600ff137435ef00680.zip meson-4120cdd01ae77e9fb41297600ff137435ef00680.tar.gz meson-4120cdd01ae77e9fb41297600ff137435ef00680.tar.bz2 |
docs: update MPI documentation with methods
Diffstat (limited to 'docs')
-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 |