From 172c5893e3febbb66d25707bbaa2060954d1fd1b Mon Sep 17 00:00:00 2001 From: LoudSnorer Date: Wed, 12 Apr 2023 21:14:23 -0400 Subject: [PATCH] Add Compiler version to systemInformation --- oscar/SleepLib/common.cpp | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/oscar/SleepLib/common.cpp b/oscar/SleepLib/common.cpp index 18738e13..3dfcf763 100644 --- a/oscar/SleepLib/common.cpp +++ b/oscar/SleepLib/common.cpp @@ -185,6 +185,21 @@ QString getGraphicsEngine() return gfxEngine; } +QString getCompilerVersion() +{ + #ifdef __clang_version__ + return QString("clang++:%1").arg(__clang_version__); + #elif defined(__MINGW64__) + return QString("MINGW64:%1").arg(__VERSION__); + #elif defined(__MINGW32__) + return QString("MINGW32:%1").arg(__VERSION__); + #elif defined (__GNUG__) or defined (__GNUC__) + return QString("GNU C++:%1").arg(__VERSION__); + #else + return QString(); + #endif +} + QStringList buildInfo; QStringList makeBuildInfo (QString forcedEngine){ @@ -194,6 +209,10 @@ QStringList makeBuildInfo (QString forcedEngine){ buildInfo << (QObject::tr("Operating system:") + " " + QSysInfo::prettyProductName()); buildInfo << (QObject::tr("Graphics Engine:") + " " + getOpenGLVersionString()); buildInfo << (QObject::tr("Graphics Engine type:") + " " + getGraphicsEngine()); + QString compiler = getCompilerVersion(); + if (compiler.length() >0 ) + buildInfo << (QObject::tr("Compiler:") + " " + compiler); + if (forcedEngine != "") buildInfo << forcedEngine;