Generate compile_commands.json by default#9763
Merged
areusch merged 3 commits intoapache:mainfrom Jan 7, 2022
driazati:cc
Merged
Generate compile_commands.json by default#9763areusch merged 3 commits intoapache:mainfrom driazati:cc
areusch merged 3 commits intoapache:mainfrom
driazati:cc
Conversation
Member
|
Yeah usually we need |
masahi
approved these changes
Dec 17, 2021
Member
Author
|
I think it's better in |
junrushao
approved these changes
Dec 17, 2021
Member
|
Thank you @driazati for the explanation!! |
This is low overhead (it only affects the make-generation step, not the actual build) and makes developer tooling like clangd work much better, so we should have it on by default instead of off (which is CMake's default). If necessary, it can be disabled with ```bash cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=0 ... ```
areusch
reviewed
Jan 3, 2022
Contributor
areusch
left a comment
There was a problem hiding this comment.
thanks, this makes sense. one question for you
Co-authored-by: Andrew Reusch <areusch@gmail.com>
areusch
approved these changes
Jan 7, 2022
ylc
pushed a commit
to ylc/tvm
that referenced
this pull request
Feb 16, 2022
* Generate compile_commands.json by default This is low overhead (it only affects the make-generation step, not the actual build) and makes developer tooling like clangd work much better, so we should have it on by default instead of off (which is CMake's default). If necessary, it can be disabled with ```bash cmake -DCMAKE_EXPORT_COMPILE_COMMANDS=0 ... ``` * Add skip when run in a subproject * Update CMakeLists.txt Co-authored-by: Andrew Reusch <areusch@gmail.com> Co-authored-by: driazati <driazati@users.noreply.github.com> Co-authored-by: Andrew Reusch <areusch@gmail.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This is low overhead (it only affects the make-generation step, not the actual build) and makes developer tooling like clangd work much better, so we should have it on by default instead of off (which is CMake's default). If necessary, it can be disabled with
or adding this to
config.cmakeIf CMake is run from a subproject, this does nothing and leaves it to the parent to configure. For example, this does not generate
compile_commands.jsonby default:cc @areusch