forked from OSchip/llvm-project
Add a quick note about how to build lldb with debug info using
cmake/ninja on linux/bsd systems. llvm-svn: 282790
This commit is contained in:
parent
bef95792cc
commit
f9f7dec07a
lldb/www
|
@ -287,10 +287,17 @@
|
|||
ninja on your system. To build using ninja:
|
||||
</p>
|
||||
<code>
|
||||
> cmake .. -G Ninja
|
||||
> cmake ../llvm -G Ninja
|
||||
<br />> ninja lldb
|
||||
<br />> 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>
|
||||
> 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>
|
||||
|
|
Loading…
Reference in New Issue