================ @@ -0,0 +1,163 @@ +# Scripted Symbol Locator Tutorial + +The **Scripted Symbol Locator** lets you write a Python class that tells LLDB +where to find executables, symbol files, and source files for your debug +targets. This is useful when your build artifacts live in a custom location, +such as a symbol server or a local build-ID-indexed cache. + +## Quick Start + +1. **Write a locator class.** Create a Python file (e.g., `my_locator.py`) + with a class that implements the methods you need: + + ```python + import os + import lldb + + class MyLocator: ---------------- medismailben wrote:
We should derive this from the base class in the lldb python module https://github.com/llvm/llvm-project/pull/181334 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
