How to guide for setting up clang tooling for llvm repo.
Details
Diff Detail
Event Timeline
Looks good. A few nits here and there.
docs/HowToSetupToolingForLLVM.html | ||
---|---|---|
29 | .. create a compilation .. | |
33–34 | In either case you need to configure your build using CMake to use clang tools. | |
79 | Add the section separators (<!-- =...= -->) around this as well. | |
81 | ... use the <a ... | |
82 | ... aimed at making ... | |
83 | ... using a development version .. | |
86 | I'd remove "when this how-to is being written".. | |
97 | ... clone the Ninja ... | |
105 | .. just be copied ... | |
111 | ... all of this ... | |
123 | Really? "For lazy people"? |
Can we add a short note on vim integration:
- VIM integration **
Put this into your .vimrc:
set makeprg=clang-check\ %
map <F5> :make<CR><CR>
When editing C++ code, hit F5 to reparse the current buffer. The
output will go into the error window, which you can enable with :cope.
.. create a compilation ..