X-Git-Url: https://git.sesse.net/?p=stockfish;a=blobdiff_plain;f=src%2Fmisc.cpp;h=459ea10035b6ae9e6a4de47e01a60f2dec596865;hp=aeb3c912bf23a286e3c31028e66aaa5ed31938fc;hb=0e17a89e4dee73bd46e496cf6bed467432f116e6;hpb=6bc0256292cf51d390fee0cb78963da884dc2677 diff --git a/src/misc.cpp b/src/misc.cpp index aeb3c912..459ea100 100644 --- a/src/misc.cpp +++ b/src/misc.cpp @@ -219,9 +219,13 @@ const std::string compiler_info() { compiler += "\nCompilation settings include: "; compiler += (Is64Bit ? " 64bit" : " 32bit"); + #if defined(USE_VNNI) + compiler += " VNNI"; + #endif #if defined(USE_AVX512) compiler += " AVX512"; #endif + compiler += (HasPext ? " BMI2" : ""); #if defined(USE_AVX2) compiler += " AVX2"; #endif @@ -231,11 +235,17 @@ const std::string compiler_info() { #if defined(USE_SSSE3) compiler += " SSSE3"; #endif - compiler += (HasPext ? " BMI2" : ""); - compiler += (HasPopCnt ? " POPCNT" : ""); + #if defined(USE_SSE2) + compiler += " SSE2"; + #endif + compiler += (HasPopCnt ? " POPCNT" : ""); #if defined(USE_MMX) compiler += " MMX"; #endif + #if defined(USE_NEON) + compiler += " NEON"; + #endif + #if !defined(NDEBUG) compiler += " DEBUG"; #endif