mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-10 20:03:34 -03:00
d82bb90a5b
An LLVM installation will have `llvm-config` available to query for info. Ask it for the `--cmakedir`, and use that in our bitcoin-tidy example, rather than listing multiple different (potential) paths per distro/OS etc.
11 lines
220 B
Text
11 lines
220 B
Text
# Bitcoin Tidy
|
|
|
|
Example Usage:
|
|
|
|
```bash
|
|
cmake -S . -B build -DLLVM_DIR=$(llvm-config --cmakedir) -DCMAKE_BUILD_TYPE=Release
|
|
|
|
cmake --build build -j$(nproc)
|
|
|
|
cmake --build build --target bitcoin-tidy-tests -j$(nproc)
|
|
```
|