bazel-compile-commands-extractor icon indicating copy to clipboard operation
bazel-compile-commands-extractor copied to clipboard

Goal: Enable awesome tooling for Bazel users of the C language family.

Results 88 bazel-compile-commands-extractor issues
Sort by recently updated
recently updated
newest added

Hi there, Thanks for the awesome work on this. This is super useful for us, and saves us a lot of time too. We just set this up today, and...

For the document, `Open a BUILD file—we'd recommend using (or creating) //BUILD—and add something like:` ```bazel load("@hedron_compile_commands//:refresh_compile_commands.bzl", "refresh_compile_commands") refresh_compile_commands( name = "refresh_compile_commands", # Specify the targets of interest. # For...

I've just tried this tool and it works well. Thanks a lot for your work! However, when I run the command `bazel run @hedron_compile_commands//:refresh_all`, it adds lots of .o files...

Creating a ticket based on a recent [comment](https://github.com/hedronvision/bazel-compile-commands-extractor/pull/86#issuecomment-2090855740) in a past closed ticket. Was wondering if there is example usage for `refresh_compile_commands` with a `targets` `select`. As stated in the...

Hi, I have a fork that enables the user to specify a custom bazel binary name. This is useful for us since we use a wrapper around the bazel executable....

This PR allows the user to configure the `bazel` binary name (or path). This is useful for where I work since we use a wrapper around the binary (with a...

Howdy, I work at Google on [Pigweed](http://pigweed.dev/), an open-source platform for embedded systems development that’s widely used both inside of Google and by other companies, and that’s shipping in millions...

edit: See below comments where I dug in a bit deeper and found a potentially broader issue. Hi! I love this project and have been using it successfully for many...

It's possible that users don't have a `bazel` in their path depending on your project configuration. This allows passing `--bazel whatever` to override to a custom wrapper, or anything else.

I recently started getting a `No source files found in compile args` error while running `refresh_compile_commands`. The error message told me to file an issue for this. Repository is here:...