From b66fad773bfbffecaa2d064904283271cded919c Mon Sep 17 00:00:00 2001 From: Dylan Baker Date: Mon, 17 Nov 2025 09:39:11 -0800 Subject: [PATCH] dependencies/mpi: Use Intel specific paths with LLVM based oneAPI compilers Instead of just the old pre-oneAPI compilers. Fixes: #15259 --- mesonbuild/dependencies/mpi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mesonbuild/dependencies/mpi.py b/mesonbuild/dependencies/mpi.py index 1eae1a49356c..874e11cf5718 100644 --- a/mesonbuild/dependencies/mpi.py +++ b/mesonbuild/dependencies/mpi.py @@ -39,7 +39,7 @@ def mpi_factory(env: 'Environment', compiler = detect_compiler('mpi', env, for_machine, language) if not compiler: return [] - compiler_is_intel = compiler.get_id() in {'intel', 'intel-cl'} + compiler_is_intel = compiler.get_id().startswith('intel') if DependencyMethods.CONFIG_TOOL in methods: nwargs = kwargs.copy()