Fixed SSE4.1 for old CPUs

Enable SSE4.1 only where it's needed.
This commit is contained in:
SChernykh 2020-09-27 08:55:57 +02:00
parent 3a01ebe277
commit 0e9ed351a1
2 changed files with 8 additions and 4 deletions

View file

@ -64,6 +64,10 @@ if (WITH_RANDOMX)
set_property(SOURCE src/crypto/randomx/jit_compiler_a64_static.S PROPERTY LANGUAGE C)
endif()
if (CMAKE_C_COMPILER_ID MATCHES GNU OR CMAKE_C_COMPILER_ID MATCHES Clang)
set_source_files_properties(src/crypto/randomx/blake2/blake2b.c PROPERTIES COMPILE_FLAGS -msse4.1)
endif()
if (CMAKE_CXX_COMPILER_ID MATCHES Clang)
set_source_files_properties(src/crypto/randomx/jit_compiler_x86.cpp PROPERTIES COMPILE_FLAGS -Wno-unused-const-variable)
endif()