#json-file #generator #scanning #clangd #txt-file #generate #compile-commands

build gen-compile-commands

Simple compile_commands.json generator

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

Download history 226/week @ 2024-07-22 18/week @ 2024-07-29 21/week @ 2024-09-16 30/week @ 2024-09-23 3/week @ 2024-09-30 334/week @ 2024-10-28 33/week @ 2024-11-04

367 downloads per month

Custom license

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