compiledb icon indicating copy to clipboard operation
compiledb copied to clipboard

Tool for generating Clang's JSON Compilation Database files for make-based build systems.

Results 55 compiledb issues
Sort by recently updated
recently updated
newest added

Hi, when I exec `compiledb -n make` in Linux kernel source code,It's not working there is the log Thanks! ``` /usr1/jza/linux-5.2.15$ compiledb -n make Traceback (most recent call last): File...

it adapts to Chinese system, but the path still can't have Chinese

I'm seeing empty compilation databases from facebook/zstd makefile. It has a pattern of: ``` Foo: $(MAKE) -C lib ``` Meaning if we: ``` compiledb make Foo ``` There are lots...

The final pasting of working dir and captured filenames from make output uses python native pathname joining. This cannot allow for the special pathname conventions Posix shell environments (MSYS, cygwin)...

I sometimes use the extension .c++ for my C++ source files. This is the patch I apply locally when I need compiledb in those projects. It would be nice to...

I have a Makefile with a build rule similar to this one : ```make %.o: %.cpp $(CC) -o $@ -c $< $(LDFLAGS) $(CFLAGS) 2>>errors_build.txt ``` I redirect the error output...

Poor performance on Windows host when parse big build log file, the test result as following: 1. build the project with many source file, make -n -j8 | tee build.log...

I have these following files. ```bash ➜ test-compiledb$ tree . ├── Makefile ├── main.c └── subdir ├── Makefile └── main.c ➜ test-compiledb$ cat Makefile default: make -w -C subdir gcc...

I have the following two files: `make.log` is build log for `make`; `gmake.log` is build log for `gmake`; There is no difference except build tool( `make`/`gmake`) in the build. But...

I have a makefile that uses a specific matter to trigger a full rebuild when the `Makefile` itself changes, like so ~~~ include config.mk # rebuild when makefile changes -include...