================ @@ -46,6 +46,10 @@ bool canUseDebuginfod(); /// environment variable. SmallVector<StringRef> getDefaultDebuginfodUrls(); +/// Sets the list of debuginfod server URLs to query. This overrides the +/// environment variable DEBUGINFOD_URLS. +void setDefaultDebuginfodUrls(SmallVector<StringRef> URLs); ---------------- clayborg wrote:
pass in a const reference to avoid copying on calling this?: ``` void setDefaultDebuginfodUrls(const SmallVector<StringRef> &URLs); ``` https://github.com/llvm/llvm-project/pull/70996 _______________________________________________ lldb-commits mailing list lldb-commits@lists.llvm.org https://lists.llvm.org/cgi-bin/mailman/listinfo/lldb-commits