[Openmp-commits] [PATCH] 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:20:49 PDT 2016
AndreyChurbanov created this revision.
AndreyChurbanov added reviewers: tlwilmar, jlpeyton, hbae.
AndreyChurbanov added a subscriber: openmp-commits.
AndreyChurbanov set the repository for this revision to rL LLVM.
Added Intel compiler 17.0 and one more flavor of mainline version as allowed build compilers.
Repository:
rL LLVM
http://reviews.llvm.org/D22138
Files:
runtime/src/kmp_version.c
Index: runtime/src/kmp_version.c
===================================================================
--- runtime/src/kmp_version.c
+++ 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
-------------- next part --------------
A non-text attachment was scrubbed...
Name: D22138.63227.patch
Type: text/x-patch
Size: 624 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/openmp-commits/attachments/20160708/c235a1c2/attachment.bin>
More information about the Openmp-commits
mailing list