mirror of
https://github.com/sockspls/badfish
synced 2025-05-01 17:19:36 +00: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:
parent
cd0b8b4cf2
commit
8cf43c6317
1 changed files with 3 additions and 0 deletions
|
@ -242,6 +242,9 @@ const std::string compiler_info() {
|
||||||
#if defined(USE_MMX)
|
#if defined(USE_MMX)
|
||||||
compiler += " MMX";
|
compiler += " MMX";
|
||||||
#endif
|
#endif
|
||||||
|
#if defined(USE_NEON)
|
||||||
|
compiler += " NEON";
|
||||||
|
#endif
|
||||||
|
|
||||||
#if !defined(NDEBUG)
|
#if !defined(NDEBUG)
|
||||||
compiler += " DEBUG";
|
compiler += " DEBUG";
|
||||||
|
|
Loading…
Add table
Reference in a new issue