X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=9189e327fd1f49b2048e9a515e53ffc70c2bd6aa;hp=5912514c23dbadaf63133281c130497fe3a63a72;hb=0a6532a39d2e2cfd92ba0a2c4fa8c6ad6c29b581;hpb=20a6f99cdb87d5877d490abceb795f7e68c5b4a6 diff --git a/src/misc.cpp b/src/misc.cpp index 5912514c..9189e327 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -68,20 +68,21 @@ static const string AppTag = ""; const string engine_name() { const string months("Jan Feb Mar Apr May Jun Jul Aug Sep Oct Nov Dec"); - const string cpu64(CpuIs64Bit ? " 64bit" : ""); + const string cpu64(Is64Bit ? " 64bit" : ""); + const string popcnt(HasPopCnt ? " SSE4.2" : ""); if (!EngineVersion.empty()) - return AppName + " " + EngineVersion + cpu64; + return AppName + " " + EngineVersion + cpu64 + popcnt; stringstream s, date(__DATE__); // From compiler, format is "Sep 21 2008" string month, day, year; date >> month >> day >> year; - s << setfill('0') << AppName + " " + AppTag + " " - << year.substr(2, 2) << setw(2) - << (1 + months.find(month) / 4) << setw(2) - << day << cpu64; + s << AppName + " " + AppTag + " " + << setfill('0') << year.substr(2) + << setw(2) << (1 + months.find(month) / 4) + << setw(2) << day << cpu64 << popcnt; return s.str(); }