llvmbot wrote:
<!--LLVM PR SUMMARY COMMENT--> @llvm/pr-subscribers-lldb Author: Jonas Devlieghere (JDevlieghere) <details> <summary>Changes</summary> Document DBGSearchPaths on the Symbols on macOS page. rdar://169137293 --- Full diff: https://github.com/llvm/llvm-project/pull/178634.diff 1 Files Affected: - (modified) lldb/docs/use/symbols.rst (+13) ``````````diff 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 --------------------------------- `````````` </details> https://github.com/llvm/llvm-project/pull/178634 _______________________________________________ lldb-commits mailing list [email protected] https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits
