Add detection for the Intel compiler in QLibraryInfo::build()
Change-Id: I26ed74ac963226abc42d50c0edac6ce9a1c0fd23 Reviewed-by: Friedemann Kleint <Friedemann.Kleint@digia.com> Reviewed-by: Oswald Buddenhagen <oswald.buddenhagen@digia.com>
This commit is contained in:
parent
790bc92bc0
commit
d041ae30d6
@ -255,7 +255,9 @@ QLibraryInfo::buildDate()
|
||||
}
|
||||
#endif //QT_NO_DATESTRING
|
||||
|
||||
#if defined(Q_CC_CLANG) // must be before GNU, because clang claims to be GNU too
|
||||
#if defined(Q_CC_INTEL) // must be before GNU, Clang and MSVC because ICC/ICL claim to be them
|
||||
# define COMPILER_STRING __VERSION__ /* __VERSION__ starts with "Intel(R) C++" */
|
||||
#elif defined(Q_CC_CLANG) // must be before GNU, because clang claims to be GNU too
|
||||
# ifdef __apple_build_version__ // Apple clang has other version numbers
|
||||
# define COMPILER_STRING "Clang " __clang_version__ " (Apple)"
|
||||
# else
|
||||
|
Loading…
Reference in New Issue
Block a user