3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2026-02-26 18:15:37 +00:00

Merge pull request #8761 from Z3Prover/copilot/add-compilation-database

csa-analysis: add compilation database to CMake configure step
This commit is contained in:
Nikolaj Bjorner 2026-02-24 16:11:43 -08:00 committed by GitHub
commit 6a4e8de5f3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -66,7 +66,7 @@ Run CMake inside a fresh `build` directory. Use `scan-build` to wrap the CMake c
```bash
mkdir -p build
cd build
scan-build cmake -DCMAKE_BUILD_TYPE=Debug -G Ninja ../
scan-build cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -G Ninja ../
```
### 3. Build Z3 with scan-build