[Lldb-commits] [lldb] r350479 - Fix symbols.enable-external-lookup description wording

Jan Kratochvil via lldb-commits lldb-commits at lists.llvm.org
Sat Jan 5 13:39:03 PST 2019


Author: jankratochvil
Date: Sat Jan  5 13:39:03 2019
New Revision: 350479

URL: http://llvm.org/viewvc/llvm-project?rev=350479&view=rev
Log:
Fix symbols.enable-external-lookup description wording

D55859 changed "external tools or libraries" to "external sources" according to
Pavel Labath.  Now it is changed sort of back to "external tools and
repositories" according to Adrian Prantl.
	https://reviews.llvm.org/D55859#1345881

Modified:
    lldb/trunk/source/Core/ModuleList.cpp

Modified: lldb/trunk/source/Core/ModuleList.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ModuleList.cpp?rev=350479&r1=350478&r2=350479&view=diff
==============================================================================
--- lldb/trunk/source/Core/ModuleList.cpp (original)
+++ lldb/trunk/source/Core/ModuleList.cpp Sat Jan  5 13:39:03 2019
@@ -69,10 +69,10 @@ namespace {
 static constexpr PropertyDefinition g_properties[] = {
     {"enable-external-lookup", OptionValue::eTypeBoolean, true, true, nullptr,
      {},
-     "Control the use of external sources to locate symbol files. "
-     "Directories listed in target.debug-file-search-paths and directory of "
-     "the executable are always checked first for separate debug info files. "
-     "Then depending on this setting: "
+     "Control the use of external tools and repositories to locate symbol "
+     "files. Directories listed in target.debug-file-search-paths and "
+     "directory of the executable are always checked first for separate debug "
+     "info files. Then depending on this setting: "
      "On macOS, Spotlight would be also used to locate a matching .dSYM "
      "bundle based on the UUID of the executable. "
      "On NetBSD, directory /usr/libdata/debug would be also searched. "




More information about the lldb-commits mailing list