diff options
author | Brad King <brad.king@kitware.com> | 2021-11-18 13:58:58 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2021-11-18 13:59:17 (GMT) |
commit | cb39d50e2187b2ff6d723388cb703eff2511e596 (patch) | |
tree | 90ebf7d78ada576ab9c0f528920cc241c947ad35 /Source | |
parent | e64a0b6c3d4b83898a28584365c08ca8e493f8df (diff) | |
parent | 209b896f2c5e7c12e5a75a572469517a298081b2 (diff) | |
download | CMake-cb39d50e2187b2ff6d723388cb703eff2511e596.zip CMake-cb39d50e2187b2ff6d723388cb703eff2511e596.tar.gz CMake-cb39d50e2187b2ff6d723388cb703eff2511e596.tar.bz2 |
Merge topic 'IntelLLVM-Fortran-copy-mod' into release-3.22
209b896f2c IntelLLVM: Enable Fortran module rebuild avoidance in Makefile generators
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6740
Diffstat (limited to 'Source')
-rw-r--r-- | Source/cmDependsFortran.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmDependsFortran.cxx b/Source/cmDependsFortran.cxx index 8456776..d5e54ae 100644 --- a/Source/cmDependsFortran.cxx +++ b/Source/cmDependsFortran.cxx @@ -659,7 +659,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; |