[Openmp-commits] [openmp] r274854 - D22138: Added more Intel compiler versions as allowed build compilers

Andrey Churbanov via Openmp-commits openmp-commits at lists.llvm.org
Fri Jul 8 08:23:36 PDT 2016


Author: achurbanov
Date: Fri Jul  8 10:23:35 2016
New Revision: 274854

URL: http://llvm.org/viewvc/llvm-project?rev=274854&view=rev
Log:
D22138: Added more Intel compiler versions as allowed build compilers

Modified:
    openmp/trunk/runtime/src/kmp_version.c

Modified: openmp/trunk/runtime/src/kmp_version.c
URL: http://llvm.org/viewvc/llvm-project/openmp/trunk/runtime/src/kmp_version.c?rev=274854&r1=274853&r2=274854&view=diff
==============================================================================
--- openmp/trunk/runtime/src/kmp_version.c (original)
+++ openmp/trunk/runtime/src/kmp_version.c Fri Jul  8 10:23:35 2016
@@ -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




More information about the Openmp-commits mailing list