mirror of
https://github.com/HChaZZY/Stockfish.git
synced 2025-12-25 19:46:55 +08:00
Display NEON in compiler string
if NEON intrinsics are being used and USE_NEON is defined. closes https://github.com/official-stockfish/Stockfish/pull/3008 No functional change
This commit is contained in:
committed by
Joost VandeVondele
parent
cd0b8b4cf2
commit
8cf43c6317
@@ -242,6 +242,9 @@ const std::string compiler_info() {
|
||||
#if defined(USE_MMX)
|
||||
compiler += " MMX";
|
||||
#endif
|
||||
#if defined(USE_NEON)
|
||||
compiler += " NEON";
|
||||
#endif
|
||||
|
||||
#if !defined(NDEBUG)
|
||||
compiler += " DEBUG";
|
||||
|
||||
Reference in New Issue
Block a user