@@ -2,11 +2,11 @@ cmake_minimum_required(VERSION 2.8)
2
2
project (xlarig )
3
3
4
4
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 )
10
10
option (WITH_RANDOMX "Enable RandomX algorithms family" ON )
11
11
option (WITH_ARGON2 "Enable Argon2 algorithms family" ON )
12
12
option (WITH_HTTP "Enable HTTP protocol support (client/server)" ON )
@@ -16,9 +16,10 @@ option(WITH_ASM "Enable ASM PoW implementations" ON)
16
16
option (WITH_MSR "Enable MSR mod & 1st-gen Ryzen fix" ON )
17
17
option (WITH_ENV_VARS "Enable environment variables support in config file" ON )
18
18
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 )
22
23
option (WITH_STRICT_CACHE "Enable strict checks for OpenCL cache" ON )
23
24
option (WITH_INTERLEAVE_DEBUG_LOG "Enable debug log for threads interleave" OFF )
24
25
0 commit comments