diff options
| author | Stefanus Du Toit <stefanus.du.toit@intel.com> | 2013-07-23 17:29:44 +0000 |
|---|---|---|
| committer | Stefanus Du Toit <stefanus.du.toit@intel.com> | 2013-07-23 17:29:44 +0000 |
| commit | 403477bdac9fa505bb4abc5982b8796cf9f5c6b2 (patch) | |
| tree | 247dfa54b7db9e8e9047ea2dcb2e029473aaba65 | |
| parent | bc4d7134f4ebff1963b40551dafff6a6a7174d00 (diff) | |
| download | bcm5719-llvm-403477bdac9fa505bb4abc5982b8796cf9f5c6b2.tar.gz bcm5719-llvm-403477bdac9fa505bb4abc5982b8796cf9f5c6b2.zip | |
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
| -rwxr-xr-x | lldb/www/build.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lldb/www/build.html b/lldb/www/build.html index 89b413bde75..61d80ac63a9 100755 --- a/lldb/www/build.html +++ b/lldb/www/build.html @@ -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>
|

