From fad9aae937abde5d1df1b885e7bd7a01fea6fd34 Mon Sep 17 00:00:00 2001 From: Daniel Malea Date: Tue, 5 Mar 2013 22:43:08 +0000 Subject: [PATCH] Typos: be more precise on the build page when mentioning the non-cmake build system llvm-svn: 176524 --- lldb/www/build.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lldb/www/build.html b/lldb/www/build.html index c57dda5a2684..72709bb26c56 100755 --- a/lldb/www/build.html +++ b/lldb/www/build.html @@ -136,13 +136,13 @@
> ninja check-lldb

Using CMake + Unix Makefiles

-

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

+

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


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

To build with configure and GNU Make

+

To build with autoconf

If you are using clang:


> $llvm/configure --enable-cxx11 @@ -157,7 +157,7 @@

If you wish to build with libc++ instead of libstdc++ (the default), you should run configure with the --enable-libcpp flag.

If you wish to build a release version of LLDB, run configure with the --enable-optimized flag.

-

To run the LLDB test suite after building with configure and make, run:

+

To run the LLDB test suite after building with autoconf, run:


> make -C tools/lldb/test