diff --git a/etc/config.csh/compiler b/etc/config.csh/compiler index 7d8f757b23..bc19a6ce2a 100644 --- a/etc/config.csh/compiler +++ b/etc/config.csh/compiler @@ -90,6 +90,10 @@ case Clang: setenv WM_CC 'clang' setenv WM_CXX 'clang++' breaksw +case Icc: + setenv WM_CC 'icc' + setenv WM_CXX 'icpc' + breaksw endsw #------------------------------------------------------------------------------ diff --git a/etc/config.sh/compiler b/etc/config.sh/compiler index 0f27fab8a6..f49f285746 100644 --- a/etc/config.sh/compiler +++ b/etc/config.sh/compiler @@ -87,6 +87,10 @@ Clang) export WM_CC='clang' export WM_CXX='clang++' ;; +Icc) + export WM_CC='icc' + export WM_CXX='icpc' + ;; esac #------------------------------------------------------------------------------