Author: jmolenda
Date: Thu Sep 29 16:47:15 2016
New Revision: 282790

URL: http://llvm.org/viewvc/llvm-project?rev=282790&view=rev
Log:
Add a quick note about how to build lldb with debug info using
cmake/ninja on linux/bsd systems.

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=282790&r1=282789&r2=282790&view=diff
==============================================================================
--- lldb/trunk/www/build.html (original)
+++ lldb/trunk/www/build.html Thu Sep 29 16:47:15 2016
@@ -287,10 +287,17 @@
               ninja on your system. To build using ninja:
             </p>
             <code>
-              &gt; cmake .. -G Ninja
+              &gt; cmake ../llvm -G Ninja
               <br />&gt; ninja lldb
               <br />&gt; ninja check-lldb
             </code>
+            <p>
+              If you want to debug the lldb that you're building -- that is, 
build it with debug info enabled -- pass
+              two additional arguments to cmake before running ninja:
+            </p>
+            <code>
+              &gt; cmake ../llvm -G Ninja -DLLDB_EXPORT_ALL_SYMBOLS=1 
-DCMAKE_BUILD_TYPE=Debug
+            </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>


_______________________________________________
lldb-commits mailing list
lldb-commits@lists.llvm.org
http://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits

Reply via email to