forked from OSchip/llvm-project
Remove spurious "-C" flag from CMake command lines in build.html.
-C usually specifies a script to prepopulate the CMake cache. In this case no script is specified, so CMake appears to just ignore it. So don't mention it in the first place - it's not desired anyways. Reviewed by: Daniel Malea llvm-svn: 186964
This commit is contained in:
parent
bc4d7134f4
commit
403477bdac
|
@ -142,14 +142,14 @@
|
|||
ninja on your system. To build using ninja:
|
||||
</p>
|
||||
<code>
|
||||
> cmake -C .. -G Ninja
|
||||
> cmake .. -G Ninja
|
||||
<br>> ninja lldb
|
||||
<br>> ninja check-lldb
|
||||
</code>
|
||||
<h3>Using CMake + Unix Makefiles</h3>
|
||||
<p>If you do not have Ninja, you can still use CMake to generate Unix Makefiles that build LLDB:</p>
|
||||
<code>
|
||||
> cmake -C ..
|
||||
> cmake ..
|
||||
<br>> make
|
||||
<br>> make check-lldb
|
||||
</code>
|
||||
|
|
Loading…
Reference in New Issue