From 403477bdac9fa505bb4abc5982b8796cf9f5c6b2 Mon Sep 17 00:00:00 2001 From: Stefanus Du Toit Date: Tue, 23 Jul 2013 17:29:44 +0000 Subject: [PATCH] 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 --- lldb/www/build.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lldb/www/build.html b/lldb/www/build.html index 89b413bde75b..61d80ac63a98 100755 --- a/lldb/www/build.html +++ b/lldb/www/build.html @@ -142,14 +142,14 @@ ninja on your system. To build using ninja:

- > cmake -C .. -G Ninja + > cmake .. -G Ninja
> ninja lldb
> ninja check-lldb

Using CMake + Unix Makefiles

If you do not have Ninja, you can still use CMake to generate Unix Makefiles that build LLDB:

- > cmake -C .. + > cmake ..
> make
> make check-lldb