summaryrefslogtreecommitdiffstats
path: root/src/corelib/global/qlibraryinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/global/qlibraryinfo.cpp')
-rw-r--r--src/corelib/global/qlibraryinfo.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/global/qlibraryinfo.cpp b/src/corelib/global/qlibraryinfo.cpp
index 689de48e26..39bfd339c3 100644
--- a/src/corelib/global/qlibraryinfo.cpp
+++ b/src/corelib/global/qlibraryinfo.cpp
@@ -257,9 +257,9 @@ QLibraryInfo::buildDate()
#if 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_version__ " (Apple)"
+# define COMPILER_STRING "Clang " __clang_version__ " (Apple)"
# else
-# define COMPILER_STRING __clang_version__
+# define COMPILER_STRING "Clang " __clang_version__
# endif
#elif defined(Q_CC_GNU)
# define COMPILER_STRING "GCC " __VERSION__