This flag allows specifying a custom path for the compilation
database. Unfortunately we can't use the -p flag like other
clang-tidy tools because it's already taken.
Details
Diff Detail
- Repository
- rL LLVM
Event Timeline
What's your use case? Can it be addressed by just forwarding the -p flag to clang-tidy?
The script shouldn't know anything about implementation details of the compilation database being used (since it can be something other than JSON compilation database).
I just need to pass the full path to the compilation DB to clang-tidy. The problem is that invoking clang-tidy-diff.py -- -p PATH will run clang-tidy -- -p PATH, in order words adding -p to the compiler command line, not clang-tidy's.
The script shouldn't know anything about implementation details of the compilation database being used (since it can be something other than JSON compilation database).
I copied the code to look for the DB verbatim from run-clang-tidy.py. I personally don't need the search logic, and just tried to keep this consistent with run-clang-tidy.py. I'd be happy to remove the search logic if you prefer that.
I meant adding -p flag to the script and forwarding it to clang-tidy the same way as -quiet, -checks, etc. But there's already -p flag with a different meaning, so calling the new flag -path makes sense. I would still just forward it, if it's present.
The script shouldn't know anything about implementation details of the compilation database being used (since it can be something other than JSON compilation database).
I copied the code to look for the DB verbatim from run-clang-tidy.py. I personally don't need the search logic, and just tried to keep this consistent with run-clang-tidy.py. I'd be happy to remove the search logic if you prefer that.
I see. I guess, this is needed as an optimization or something like that. Not useful for clang-tidy-diff.py.
clang-tidy/tool/clang-tidy-diff.py | ||
---|---|---|
35–45 ↗ | (On Diff #87938) | Let's remove this. |
90–97 ↗ | (On Diff #87938) | Let's remove this. |
149 ↗ | (On Diff #87938) | Let's only add this flag when args.build_path is not None. |