================
@@ -97,3 +97,33 @@ for any source file and line breakpoints that the IDE set
using:
::
(lldb) breakpoint list --verbose
+
+How Do I Find Out Which Features My Version Of LLDB Has?
+--------------------------------------------------------
+
+Some features such as XML parsing are optional and must be enabled when LLDB is
+built. To check which features your copy of LLDB has enabled, use the
``version``
+command from within LLDB:
+
+::
+
+ (lldb) version -v
+
+.. note::
+ This feature was added in LLDB 22. If you are using an earlier version, you
+ can use the method below.
+
+Alternatively, you can check the shared library dependencies of LLDB. For
example
+on Linux you can use the following command:
----------------
DavidSpickett wrote:
> I think it's reasonable to expect a dev to have MSVC installed and that they
> can use dumpbin.exe rather than suggesting a third party tool.
They are a Google search away from equivalents too, so this is fine. Thanks,
I've added dumpbin to the doc.
https://github.com/llvm/llvm-project/pull/171468
_______________________________________________
lldb-commits mailing list
[email protected]
https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits