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:18 (GMT) |
commit | e585dcedea159b65173231ab8d2ca416dc14fe8f (patch) | |
tree | bcc982224c9b2e337c089b62c3044ce26a8e901e /Source/cmDependsFortran.cxx | |
parent | dd37f0004a640c62c5838e798a035a060f4fcde8 (diff) | |
parent | 209b896f2c5e7c12e5a75a572469517a298081b2 (diff) | |
download | CMake-e585dcedea159b65173231ab8d2ca416dc14fe8f.zip CMake-e585dcedea159b65173231ab8d2ca416dc14fe8f.tar.gz CMake-e585dcedea159b65173231ab8d2ca416dc14fe8f.tar.bz2 |
Merge topic 'IntelLLVM-Fortran-copy-mod'
209b896f2c IntelLLVM: Enable Fortran module rebuild avoidance in Makefile generators
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !6740
Diffstat (limited to 'Source/cmDependsFortran.cxx')
-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; |