[Lldb-commits] [lldb] r176524 - Typos: be more precise on the build page when mentioning the non-cmake build system
Daniel Malea
daniel.malea at intel.com
Tue Mar 5 14:43:08 PST 2013
Author: dmalea
Date: Tue Mar 5 16:43:08 2013
New Revision: 176524
URL: http://llvm.org/viewvc/llvm-project?rev=176524&view=rev
Log:
Typos: be more precise on the build page when mentioning the non-cmake build system
Modified:
lldb/trunk/www/build.html
Modified: lldb/trunk/www/build.html
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/www/build.html?rev=176524&r1=176523&r2=176524&view=diff
==============================================================================
--- lldb/trunk/www/build.html (original)
+++ lldb/trunk/www/build.html Tue Mar 5 16:43:08 2013
@@ -136,13 +136,13 @@
<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 GNU Makefiles that build LLDB:</p>
+ <p>If you do not have Ninja, you can still use CMake to generate Unix Makefiles that build LLDB:</p>
<code>
<br>> cmake -C ..
<br>> make lldb
<br>> make check-lldb
</code>
- <h2>To build with configure and GNU Make</h2>
+ <h2>To build with autoconf</h2>
<p>If you are using clang:</p>
<code>
<br>> $llvm/configure --enable-cxx11
@@ -157,7 +157,7 @@
<p> If you wish to build with libc++ instead of libstdc++ (the default), you should run configure with the
<tt>--enable-libcpp</tt> flag.</p>
<p> If you wish to build a release version of LLDB, run configure with the <tt>--enable-optimized</tt> flag.</p>
- <p> To run the LLDB test suite after building with configure and make, run:</p>
+ <p> To run the LLDB test suite after building with autoconf, run:</p>
<code>
<br>> make -C tools/lldb/test
</code>
More information about the lldb-commits
mailing list