diff options
author | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-06-21 01:27:31 -0400 |
---|---|---|
committer | Michael Hirsch, Ph.D <scivision@users.noreply.github.com> | 2019-06-24 14:06:32 -0400 |
commit | cf7935be614158b14cf903aed292eaad6a866f4b (patch) | |
tree | 59e5840a64b57cddc7b7276e8688a3cea50f7532 | |
parent | 9a3bc754108b10eb1a9fd4016e8bf7c98f3450c9 (diff) | |
download | meson-cf7935be614158b14cf903aed292eaad6a866f4b.zip meson-cf7935be614158b14cf903aed292eaad6a866f4b.tar.gz meson-cf7935be614158b14cf903aed292eaad6a866f4b.tar.bz2 |
update compiler ID for windows INtel MPI
-rw-r--r-- | mesonbuild/dependencies/misc.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mesonbuild/dependencies/misc.py b/mesonbuild/dependencies/misc.py index 80bacd2..483d73e 100644 --- a/mesonbuild/dependencies/misc.py +++ b/mesonbuild/dependencies/misc.py @@ -217,7 +217,7 @@ class MPIDependency(ExternalDependency): if not self.is_found and mesonlib.is_windows(): # only Intel Fortran compiler is compatible with Microsoft MPI at this time. - if language == 'fortran' and environment.detect_fortran_compiler(self.for_machine).name_string() != 'intel': + if language == 'fortran' and environment.detect_fortran_compiler(self.for_machine).name_string() != 'intel-ci': return result = self._try_msmpi() if result is not None: |