summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorSteffen Winter <steffen.winter@proton.me>2023-11-26 22:56:58 +0100
committerSteffen Winter <steffen.winter@proton.me>2023-11-27 11:42:30 +0100
commit2f59e61d875b86cb99d9d24819dea607239ad517 (patch)
treed6209acdbd18adf0a3373144acd1d18092b68db0 /README.md
parent7588d96dd4e0fdbba4943bddd7709004876aa7ab (diff)
Add GPU options for cmake based builds
Diffstat (limited to 'README.md')
-rw-r--r--README.md4
1 files changed, 3 insertions, 1 deletions
diff --git a/README.md b/README.md
index 140347a..4ee8474 100644
--- a/README.md
+++ b/README.md
@@ -340,7 +340,7 @@ Also needs a UTF8 locale and a font that covers:
For x86_64 Linux the flag `GPU_SUPPORT` is automatically set to `true`, to manually disable gpu support set the flag to false, like:
- `make GPU_SUPPORT=false`
+ `make GPU_SUPPORT=false` (or `cmake -DBTOP_GPU=false` with CMake)
* **NVIDIA**
@@ -503,6 +503,8 @@ Also needs a UTF8 locale and a font that covers:
| `-DBTOP_USE_MOLD=<ON\|OFF>` | Use mold to link btop (OFF by default) |
| `-DBTOP_PEDANTIC=<ON\|OFF>` | Compile with additional warnings (OFF by default) |
| `-DBTOP_WERROR=<ON\|OFF>` | Compile with warnings as errors (OFF by default) |
+ | `-DBTOP_GPU=<ON\|OFF>` | Enable GPU support (ON by default) |
+ | `-DBTOP_RSMI_STATIC=<ON\|OFF>` | Build and link the ROCm SMI library statically (OFF by default) |
| `-DCMAKE_INSTALL_PREFIX=<path>` | The installation prefix ('/usr/local' by default) |
To force a compiler, run `CXX=<compiler> cmake -B build -G Ninja`