Skip to content

Commit f27717d

Browse files
authored
Enable old algos
1 parent 4eaec29 commit f27717d

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

CMakeLists.txt

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 2.8)
22
project(xlarig)
33

44
option(WITH_LIBCPUID "Enable libcpuid support" ON)
5-
option(WITH_HWLOC "Enable hwloc support" OFF)
6-
option(WITH_CN_LITE "Enable CryptoNight-Lite algorithms family" OFF)
7-
option(WITH_CN_HEAVY "Enable CryptoNight-Heavy algorithms family" OFF)
8-
option(WITH_CN_PICO "Enable CryptoNight-Pico algorithm" OFF)
9-
option(WITH_CN_GPU "Enable CryptoNight-GPU algorithm" OFF)
5+
option(WITH_HWLOC "Enable hwloc support" ON)
6+
option(WITH_CN_LITE "Enable CryptoNight-Lite algorithms family" ON)
7+
option(WITH_CN_HEAVY "Enable CryptoNight-Heavy algorithms family" ON)
8+
option(WITH_CN_PICO "Enable CryptoNight-Pico algorithm" ON)
9+
option(WITH_CN_GPU "Enable CryptoNight-GPU algorithm" ON)
1010
option(WITH_RANDOMX "Enable RandomX algorithms family" ON)
1111
option(WITH_ARGON2 "Enable Argon2 algorithms family" ON)
1212
option(WITH_HTTP "Enable HTTP protocol support (client/server)" ON)
@@ -16,9 +16,10 @@ option(WITH_ASM "Enable ASM PoW implementations" ON)
1616
option(WITH_MSR "Enable MSR mod & 1st-gen Ryzen fix" ON)
1717
option(WITH_ENV_VARS "Enable environment variables support in config file" ON)
1818
option(WITH_EMBEDDED_CONFIG "Enable internal embedded JSON config" OFF)
19-
option(WITH_OPENCL "Enable OpenCL backend" OFF)
20-
option(WITH_CUDA "Enable CUDA backend" OFF)
21-
option(WITH_NVML "Enable NVML (NVIDIA Management Library) support (only if CUDA backend enabled)" OFF)
19+
option(WITH_OPENCL "Enable OpenCL backend" ON)
20+
option(WITH_CUDA "Enable CUDA backend" ON)
21+
option(WITH_NVML "Enable NVML (NVIDIA Management Library) support (only if CUDA backend enabled)" ON)
22+
option(WITH_ADL "Enable ADL (AMD Display Library) or sysfs support (only if OpenCL backend enabled)" ON)
2223
option(WITH_STRICT_CACHE "Enable strict checks for OpenCL cache" ON)
2324
option(WITH_INTERLEAVE_DEBUG_LOG "Enable debug log for threads interleave" OFF)
2425

0 commit comments

Comments
 (0)