summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStefanus Du Toit <stefanus.du.toit@intel.com>2013-07-23 17:29:44 +0000
committerStefanus Du Toit <stefanus.du.toit@intel.com>2013-07-23 17:29:44 +0000
commit403477bdac9fa505bb4abc5982b8796cf9f5c6b2 (patch)
tree247dfa54b7db9e8e9047ea2dcb2e029473aaba65
parentbc4d7134f4ebff1963b40551dafff6a6a7174d00 (diff)
downloadbcm5719-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-xlldb/www/build.html4
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>
- &gt; cmake -C .. -G Ninja
+ &gt; cmake .. -G Ninja
<br>&gt; ninja lldb
<br>&gt; 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>
- &gt; cmake -C ..
+ &gt; cmake ..
<br>&gt; make
<br>&gt; make check-lldb
</code>
OpenPOWER on IntegriCloud