summaryrefslogtreecommitdiffstats
path: root/openmp/runtime/src/kmp_version.c
diff options
context:
space:
mode:
authorJim Cownie <james.h.cownie@intel.com>2014-08-05 09:32:28 +0000
committerJim Cownie <james.h.cownie@intel.com>2014-08-05 09:32:28 +0000
commit3b81ce6b15f78dba542f54ef693591f0089e3135 (patch)
tree8957c0df7a8668f52022f648cf048940a130d7b1 /openmp/runtime/src/kmp_version.c
parent947cef191d0306c813c39d6265dd183d83033be1 (diff)
downloadbcm5719-llvm-3b81ce6b15f78dba542f54ef693591f0089e3135.tar.gz
bcm5719-llvm-3b81ce6b15f78dba542f54ef693591f0089e3135.zip
After three iterations of community review, we believe that this new
CMAKE buld system should meet everyone's requirements. Enhanced CMake Build System Commit * Supports Linux, Mac, Windows, and IntelĀ® Xeon Phi builds * Supports building with gcc, icc, clang, and Visual Studio compilers * Supports bulding "fat" libraries on OS/X with clang * Details and documentation on how to use build system are in Build_With_CMake.txt * To use the old CMake build system (corresponds to CMakeLists.txt.old), just rename CMakeLists.txt to CMakeLists.txt.other and rename CMakeLists.txt.old to CMakeLists.txt llvm-svn: 214850
Diffstat (limited to 'openmp/runtime/src/kmp_version.c')
-rw-r--r--openmp/runtime/src/kmp_version.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/openmp/runtime/src/kmp_version.c b/openmp/runtime/src/kmp_version.c
index f64d05266b8..b836c39d192 100644
--- a/openmp/runtime/src/kmp_version.c
+++ b/openmp/runtime/src/kmp_version.c
@@ -53,6 +53,8 @@
#define KMP_COMPILER "Clang " stringer( __clang_major__ ) "." stringer( __clang_minor__ )
#elif KMP_COMPILER_GCC
#define KMP_COMPILER "GCC " stringer( __GNUC__ ) "." stringer( __GNUC_MINOR__ )
+#elif KMP_COMPILER_MSVC
+ #define KMP_COMPILER "MSVC " stringer( __MSC_FULL_VER )
#endif
#ifndef KMP_COMPILER
#warning "Unknown compiler"
OpenPOWER on IntegriCloud