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 | ||
---|---|---|
28 | .. create a compilation .. | |
32–33 | In either case you need to configure your build using CMake to use clang tools. | |
78 | Add the section separators (<!-- =...= -->) around this as well. | |
80 | ... use the <a ... | |
81 | ... aimed at making ... | |
82 | ... using a development version .. | |
85 | I'd remove "when this how-to is being written".. | |
96 | ... clone the Ninja ... | |
104 | .. just be copied ... | |
110 | ... all of this ... | |
122 | 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 ..