From 4b1b36acb48fab133ca4a3241148fa9683915874 Mon Sep 17 00:00:00 2001 From: Hennadii Stepanov <32963518+hebasto@users.noreply.github.com> Date: Mon, 2 Jun 2025 13:49:19 +0100 Subject: [PATCH] doc: Remove build instruction for running `clang-tidy` One of the benefits of using a compilation database, which is available after the CMake build system generation step, is that it is not necessary to actually build the code in order to run `clang-tidy`. --- doc/developer-notes.md | 1 - 1 file changed, 1 deletion(-) diff --git a/doc/developer-notes.md b/doc/developer-notes.md index b6496fd71a9..bb6fa215f0d 100644 --- a/doc/developer-notes.md +++ b/doc/developer-notes.md @@ -221,7 +221,6 @@ Configure with clang as the compiler: ```sh cmake -B build -DCMAKE_C_COMPILER=clang -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_EXPORT_COMPILE_COMMANDS=ON -cmake --build build -j $(nproc) ``` The output is denoised of errors from external dependencies.