Skip to content

Commit

Permalink
Document new flags for the build systems
Browse files Browse the repository at this point in the history
  • Loading branch information
imwints committed Sep 13, 2023
1 parent 9b9afc1 commit d9faa05
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -344,6 +344,10 @@ Also needs a UTF8 locale and a font that covers:
Append `STRIP=true` to force stripping of debug symbols (adds `-s` linker flag).
Append `ENABLE_SYSLOG=true` to log to syslog instead of a logfile.
Append `ENABLE_JOURNALD=true` to log to journald instead of a logfile.
Append `ARCH=<architecture>` to manually set the target architecture.
If omitted the makefile uses the machine triple (output of `-dumpmachine` compiler parameter) to detect the target system.
Expand Down Expand Up @@ -447,6 +451,8 @@ Also needs a UTF8 locale and a font that covers:
| `-DBTOP_STATIC=<ON\|OFF>` | Enables static linking (OFF by default) |
| `-DBTOP_LTO=<ON\|OFF>` | Enables link time optimization (ON by default) |
| `-DBTOP_USE_MOLD=<ON\|OFF>` | Use mold to link btop (OFF by default) |
| `-DBTOP_LOG_SYSLOG=<ON\|OFF>` | Log to syslog instead of a logfile (OFF by default) |
| `-DBTOP_LOG_JOURNALD=<ON\|OFF>` | Log to journald instead of a logfile (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) |
| `-DCMAKE_INSTALL_PREFIX=<path>` | The installation prefix ('/usr/local' by default) |
Expand Down Expand Up @@ -509,6 +515,8 @@ Also needs a UTF8 locale and a font that covers:
Append `STRIP=true` to force stripping of debug symbols (adds `-s` linker flag).
Append `ENABLE_SYSLOG=true` to log to syslog instead of a logfile.
Append `ARCH=<architecture>` to manually set the target architecture.
If omitted the makefile uses the machine triple (output of `-dumpmachine` compiler parameter) to detect the target system.
Expand Down Expand Up @@ -603,6 +611,8 @@ Also needs a UTF8 locale and a font that covers:
Append `STRIP=true` to force stripping of debug symbols (adds `-s` linker flag).
Append `ENABLE_SYSLOG=true` to log to syslog instead of a logfile.
Append `ARCH=<architecture>` to manually set the target architecture.
If omitted the makefile uses the machine triple (output of `-dumpmachine` compiler parameter) to detect the target system.
Expand Down Expand Up @@ -719,6 +729,7 @@ Also needs a UTF8 locale and a font that covers:
| `-DBTOP_STATIC=<ON\|OFF>` | Enables static linking (OFF by default) |
| `-DBTOP_LTO=<ON\|OFF>` | Enables link time optimization (ON by default) |
| `-DBTOP_USE_MOLD=<ON\|OFF>` | Use mold to link btop (OFF by default) |
| `-DBTOP_LOG_SYSLOG=<ON\|OFF>` | Log to syslog instead of a logfile (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) |
| `-DCMAKE_INSTALL_PREFIX=<path>` | The installation prefix ('/usr/local' by default) |
Expand Down

0 comments on commit d9faa05

Please sign in to comment.