120 lines
4.3 KiB
CMake
120 lines
4.3 KiB
CMake
if (WITH_RANDOMX)
|
|
add_definitions(/DXMRIG_ALGO_RANDOMX)
|
|
set(WITH_ARGON2 ON)
|
|
|
|
list(APPEND HEADERS_CRYPTO
|
|
src/crypto/rx/Rx.h
|
|
src/crypto/rx/RxAlgo.h
|
|
src/crypto/rx/RxBasicStorage.h
|
|
src/crypto/rx/RxCache.h
|
|
src/crypto/rx/RxConfig.h
|
|
src/crypto/rx/RxDataset.h
|
|
src/crypto/rx/RxQueue.h
|
|
src/crypto/rx/RxSeed.h
|
|
src/crypto/rx/RxVm.h
|
|
)
|
|
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/aes_hash.cpp
|
|
src/crypto/randomx/allocator.cpp
|
|
src/crypto/randomx/blake2_generator.cpp
|
|
src/crypto/randomx/blake2/blake2b.c
|
|
src/crypto/randomx/bytecode_machine.cpp
|
|
src/crypto/randomx/dataset.cpp
|
|
src/crypto/randomx/instructions_portable.cpp
|
|
src/crypto/randomx/randomx.cpp
|
|
src/crypto/randomx/reciprocal.c
|
|
src/crypto/randomx/soft_aes.cpp
|
|
src/crypto/randomx/superscalar.cpp
|
|
src/crypto/randomx/virtual_machine.cpp
|
|
src/crypto/randomx/virtual_memory.cpp
|
|
src/crypto/randomx/vm_compiled_light.cpp
|
|
src/crypto/randomx/vm_compiled.cpp
|
|
src/crypto/randomx/vm_interpreted_light.cpp
|
|
src/crypto/randomx/vm_interpreted.cpp
|
|
src/crypto/rx/Rx.cpp
|
|
src/crypto/rx/RxAlgo.cpp
|
|
src/crypto/rx/RxBasicStorage.cpp
|
|
src/crypto/rx/RxCache.cpp
|
|
src/crypto/rx/RxConfig.cpp
|
|
src/crypto/rx/RxDataset.cpp
|
|
src/crypto/rx/RxQueue.cpp
|
|
src/crypto/rx/RxVm.cpp
|
|
|
|
src/crypto/defyx/align.h
|
|
src/crypto/defyx/brg_endian.h
|
|
src/crypto/defyx/defyx.cpp
|
|
src/crypto/defyx/defyx.h
|
|
src/crypto/defyx/KangarooTwelve.c
|
|
src/crypto/defyx/KangarooTwelve.h
|
|
src/crypto/defyx/KeccakP-1600-reference.c
|
|
src/crypto/defyx/KeccakP-1600-SnP.h
|
|
src/crypto/defyx/KeccakSponge-common.h
|
|
src/crypto/defyx/KeccakSponge.inc
|
|
src/crypto/defyx/KeccakSpongeWidth1600.c
|
|
src/crypto/defyx/KeccakSpongeWidth1600.h
|
|
src/crypto/defyx/Phases.h
|
|
src/crypto/defyx/sha256.c
|
|
src/crypto/defyx/sha256.h
|
|
src/crypto/defyx/sysendian.h
|
|
src/crypto/defyx/yescrypt.h
|
|
src/crypto/defyx/yescrypt-best.c
|
|
)
|
|
|
|
if (CMAKE_C_COMPILER_ID MATCHES MSVC)
|
|
enable_language(ASM_MASM)
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/jit_compiler_x86_static.asm
|
|
src/crypto/randomx/jit_compiler_x86.cpp
|
|
)
|
|
elseif (NOT XMRIG_ARM AND CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/jit_compiler_x86_static.S
|
|
src/crypto/randomx/jit_compiler_x86.cpp
|
|
)
|
|
# cheat because cmake and ccache hate each other
|
|
set_property(SOURCE src/crypto/randomx/jit_compiler_x86_static.S PROPERTY LANGUAGE C)
|
|
elseif (XMRIG_ARM AND CMAKE_SIZEOF_VOID_P EQUAL 8)
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/randomx/jit_compiler_a64_static.S
|
|
src/crypto/randomx/jit_compiler_a64.cpp
|
|
)
|
|
# cheat because cmake and ccache hate each other
|
|
set_property(SOURCE src/crypto/randomx/jit_compiler_a64_static.S PROPERTY LANGUAGE C)
|
|
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()
|
|
|
|
if (WITH_HWLOC)
|
|
list(APPEND HEADERS_CRYPTO
|
|
src/crypto/rx/RxNUMAStorage.h
|
|
)
|
|
|
|
list(APPEND SOURCES_CRYPTO
|
|
src/crypto/rx/RxNUMAStorage.cpp
|
|
)
|
|
endif()
|
|
|
|
if (WITH_MSR AND NOT XMRIG_ARM AND CMAKE_SIZEOF_VOID_P EQUAL 8 AND (XMRIG_OS_WIN OR XMRIG_OS_LINUX))
|
|
add_definitions(/DXMRIG_FEATURE_MSR)
|
|
add_definitions(/DXMRIG_FIX_RYZEN)
|
|
message("-- WITH_MSR=ON")
|
|
|
|
if (XMRIG_OS_WIN)
|
|
list(APPEND SOURCES_CRYPTO src/crypto/rx/Rx_win.cpp)
|
|
elseif (XMRIG_OS_LINUX)
|
|
list(APPEND SOURCES_CRYPTO src/crypto/rx/Rx_linux.cpp)
|
|
endif()
|
|
|
|
list(APPEND HEADERS_CRYPTO src/crypto/rx/msr/MsrItem.h)
|
|
list(APPEND SOURCES_CRYPTO src/crypto/rx/msr/MsrItem.cpp)
|
|
else()
|
|
remove_definitions(/DXMRIG_FEATURE_MSR)
|
|
remove_definitions(/DXMRIG_FIX_RYZEN)
|
|
message("-- WITH_MSR=OFF")
|
|
endif()
|
|
else()
|
|
remove_definitions(/DXMRIG_ALGO_RANDOMX)
|
|
endif()
|