[Lldb-commits] [PATCH] D51934: [target] Change target create's behavior wrt loading dependent files.

Greg Clayton via Phabricator via lldb-commits lldb-commits at lists.llvm.org
Wed Sep 12 07:39:38 PDT 2018


clayborg added inline comments.


================
Comment at: source/Commands/CommandObjectTarget.cpp:143-151
+static OptionEnumValueElement g_dependents_enumaration[4] = {
+    {eLoadDependentsDefault, "default",
+     "Only load dependents when the target is an executables."},
+    {eLoadDependentsNo, "true",
+     "Load dependents, even if the target is not an executable."},
+    {eLoadDependentsYes, "false",
+     "Don't load dependents, even if the target is an executable."},
----------------
Maybe document which is the default value in one of these three strings?


https://reviews.llvm.org/D51934





More information about the lldb-commits mailing list