5 releases (3 breaking)
0.4.0 | Oct 30, 2024 |
---|---|
0.3.1 | Oct 30, 2024 |
0.3.0 | Oct 30, 2024 |
0.2.0 | Jul 25, 2024 |
0.1.0 | Jul 25, 2024 |
#105 in Build Utils
367 downloads per month
6KB
86 lines
gen-compile-commands
Simple utility to generate compile_commands.json
based on compile_flags.txt
.
Without compile_commands.json
clangd can't enumerate project files.
While include/symbol resolution works, find references and other features
that require full project scanning do not work.
gen-compile-commands
uses single compile_flags.txt
file as a template
for all source files discovered in --src-dir
.
Installation
cargo install gen-compile-commands
Usage
Usage: gen-compile-commands [OPTIONS] --root <ROOT> --compile-flags <COMPILE_FLAGS> --out <OUT>
Options:
--root <ROOT> Root project directory, all files in `compile_commands.json` will be specified relative to this path
--compile-flags <COMPILE_FLAGS> Path to the `compile_flags.txt`. Used for every file in `compile_commands.json`
--out <OUT> Path to the resulting `compile_commands.json`
--src-dir <SRC_DIR> Directory to scan for source files
--ext <EXT> Source file extensions to include in `compile_commands.json` [default: c++ cc]
--compiler <COMPILER> Path to the compiler [default: /usr/bin/clang++]
-h, --help Print help
Dependencies
~1.7–9MB
~89K SLoC