Author: Jonas Devlieghere Date: 2026-02-12T09:26:00-08:00 New Revision: e4bbd9b1dca7f8aa62851f363aea5e405fad8ae1
URL: https://github.com/llvm/llvm-project/commit/e4bbd9b1dca7f8aa62851f363aea5e405fad8ae1 DIFF: https://github.com/llvm/llvm-project/commit/e4bbd9b1dca7f8aa62851f363aea5e405fad8ae1.diff LOG: [lldb] Document DBGSearchPaths (#178634) Document DBGSearchPaths on the Symbols on macOS page. rdar://169137293 Added: Modified: lldb/docs/use/symbols.rst Removed: ################################################################################ diff --git a/lldb/docs/use/symbols.rst b/lldb/docs/use/symbols.rst index b2de52c306f1a..4b01e5730b23b 100644 --- a/lldb/docs/use/symbols.rst +++ b/lldb/docs/use/symbols.rst @@ -73,6 +73,19 @@ this default is set to an empty array: # Specify an array of paths to limit spotlight searches to certain directories % defaults write com.apple.DebugSymbols DBGSpotlightPaths -array /path/dir1 /path/dir2 + +**DBGSearchPaths** + +You can specify an ordered list of directories to use when manually searching +for dSYM files. Each directory will be recursively searched for any dSYM +bundles, and the the first UUID match will be returned. + +:: + + $ defaults write com.apple.DebugSymbols DBGSearchPaths -string /single/path/to/search + $ defaults write com.apple.DebugSymbols DBGSearchPaths -array /path/to/search1 /path/to/search2 + + Shell Script Property List Format --------------------------------- _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
