Skip to content

Commit 4313b20

Browse files
committed
framework: report which compiler was used to build the game
1 parent 098edeb commit 4313b20

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/engine/framework/System.cpp

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -681,7 +681,8 @@ static void Init(int argc, char** argv)
681681
#endif
682682

683683
// Print a banner and a copy of the command-line arguments
684-
Log::Notice(Q3_VERSION " " PLATFORM_STRING " " XSTRING(ARCH_STRING) " " __DATE__);
684+
Log::Notice(Q3_VERSION " " PLATFORM_STRING " " XSTRING(ARCH_STRING) " (" XSTRING(DAEMON_CXX_COMPILER_STRING) ") " __DATE__);
685+
685686
std::string argsString = "cmdline:";
686687
for (int i = 1; i < argc; i++) {
687688
argsString.push_back(' ');

0 commit comments

Comments
 (0)