Changeset View
Changeset View
Standalone View
Standalone View
runtime/src/kmp_version.c
Show First 20 Lines • Show All 42 Lines • ▼ Show 20 Lines | #if KMP_COMPILER_ICC | ||||
#elif __INTEL_COMPILER == 1400 | #elif __INTEL_COMPILER == 1400 | ||||
#define KMP_COMPILER "Intel C++ Compiler 14.0" | #define KMP_COMPILER "Intel C++ Compiler 14.0" | ||||
#elif __INTEL_COMPILER == 1410 | #elif __INTEL_COMPILER == 1410 | ||||
#define KMP_COMPILER "Intel C++ Compiler 14.1" | #define KMP_COMPILER "Intel C++ Compiler 14.1" | ||||
#elif __INTEL_COMPILER == 1500 | #elif __INTEL_COMPILER == 1500 | ||||
#define KMP_COMPILER "Intel C++ Compiler 15.0" | #define KMP_COMPILER "Intel C++ Compiler 15.0" | ||||
#elif __INTEL_COMPILER == 1600 | #elif __INTEL_COMPILER == 1600 | ||||
#define KMP_COMPILER "Intel C++ Compiler 16.0" | #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 | #elif __INTEL_COMPILER == 9999 | ||||
#define KMP_COMPILER "Intel C++ Compiler mainline" | #define KMP_COMPILER "Intel C++ Compiler mainline" | ||||
#endif | #endif | ||||
#elif KMP_COMPILER_CLANG | #elif KMP_COMPILER_CLANG | ||||
#define KMP_COMPILER "Clang " stringer( __clang_major__ ) "." stringer( __clang_minor__ ) | #define KMP_COMPILER "Clang " stringer( __clang_major__ ) "." stringer( __clang_minor__ ) | ||||
#elif KMP_COMPILER_GCC | #elif KMP_COMPILER_GCC | ||||
#define KMP_COMPILER "GCC " stringer( __GNUC__ ) "." stringer( __GNUC_MINOR__ ) | #define KMP_COMPILER "GCC " stringer( __GNUC__ ) "." stringer( __GNUC_MINOR__ ) | ||||
#elif KMP_COMPILER_MSVC | #elif KMP_COMPILER_MSVC | ||||
▲ Show 20 Lines • Show All 150 Lines • Show Last 20 Lines |