Skip to content

Commit

Permalink
[SCons] Add deprecation warning for icc compiler
Browse files Browse the repository at this point in the history
  • Loading branch information
ischoegl authored and speth committed Jul 11, 2023
1 parent a4b0743 commit 6fc22c4
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions SConstruct
Expand Up @@ -869,6 +869,9 @@ elif env["CC"] == "cl": # Visual Studio
config.select("cl")

elif "icc" in env.subst("$CC"):
logger.warning("Support for the deprecated Intel compiler suite (icc/icpc) "
"will be removed after Cantera 3.0.\nConsider using the new "
"LLVM-based Intel oneAPI compilers (icx/icpx) instead.")
config.select("icc")

elif "icx" in env.subst("$CC"):
Expand Down

0 comments on commit 6fc22c4

Please sign in to comment.