diff options
author | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2016-07-08 15:23:35 +0000 |
---|---|---|
committer | Andrey Churbanov <Andrey.Churbanov@intel.com> | 2016-07-08 15:23:35 +0000 |
commit | 50ecf5de016df669b85241ab55a66f80c0443ac5 (patch) | |
tree | 936c8ad6aebf9359108f495824e6d0937affc3c3 /openmp | |
parent | 3124f6273ab4ce6e6ee6f9b6e8b9781824e6cdb1 (diff) | |
download | bcm5719-llvm-50ecf5de016df669b85241ab55a66f80c0443ac5.tar.gz bcm5719-llvm-50ecf5de016df669b85241ab55a66f80c0443ac5.zip |
D22138: Added more Intel compiler versions as allowed build compilers
llvm-svn: 274854
Diffstat (limited to 'openmp')
-rw-r--r-- | openmp/runtime/src/kmp_version.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_version.c b/openmp/runtime/src/kmp_version.c index e5fa661a144..143de670303 100644 --- a/openmp/runtime/src/kmp_version.c +++ b/openmp/runtime/src/kmp_version.c @@ -48,6 +48,10 @@ #define KMP_COMPILER "Intel C++ Compiler 15.0" #elif __INTEL_COMPILER == 1600 #define KMP_COMPILER "Intel C++ Compiler 16.0" + #elif __INTEL_COMPILER == 1700 + #define KMP_COMPILER "Intel C++ Compiler 17.0" + #elif __INTEL_COMPILER == 9998 + #define KMP_COMPILER "Intel C++ Compiler mainline" #elif __INTEL_COMPILER == 9999 #define KMP_COMPILER "Intel C++ Compiler mainline" #endif |