From 209b896f2c5e7c12e5a75a572469517a298081b2 Mon Sep 17 00:00:00 2001 From: Brad King Date: Wed, 17 Nov 2021 10:35:12 -0500 Subject: IntelLLVM: Enable Fortran module rebuild avoidance in Makefile generators The Makefile generators use an internal `cmake -E cmake_copy_f90_mod` tool to avoid rebuilding module consumers when the `.mod` content changes only in a trivial way (e.g. the time it was built). This is done with logic specific to each vendor's module file format. Enable the "Intel" format support when using the IntelLLVM compiler (ifx) too. Issue: #22922 --- Source/cmDependsFortran.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 1a06f31..74b5ddd 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -653,7 +653,7 @@ bool cmDependsFortran::ModulesDiffer(const std::string& modFile, return true; } } - } else if (compilerId == "Intel") { + } else if (compilerId == "Intel" || compilerId == "IntelLLVM") { const char seq[2] = { '\n', '\0' }; const int seqlen = 2; -- cgit v0.12 e/async2 Mirror from: https://github.com/HDFGroup/hdf5.git
summaryrefslogtreecommitdiffstats
path: root/test
Commit message (Expand)AuthorAgeFilesLines
* Fix problem with variable length attributes being accessed through multiple f...Neil Fortner2022-11-081-6/+85
* Fix bug in attribute type conversion wiith compound types - merge to 1.8 (#2097)Neil Fortner2022-09-161-0/+131
* Run bin/reconfigure to propagate fortran mod change to configure and (#1952)Larry Knox2022-07-291-0/+1
* clang 13 format #1933 (#1941)Allen Byrne2022-07-28