diff options
author | Jim Ingham <jingham@apple.com> | 2012-11-29 00:41:12 +0000 |
---|---|---|
committer | Jim Ingham <jingham@apple.com> | 2012-11-29 00:41:12 +0000 |
commit | 8c3f2764fb638e19133eded70a244d968bbf7126 (patch) | |
tree | ccba9a3e7ae45f94e67a12b508d41b51838e224f | |
parent | 7730b9a47af0cabade0e2d807d2b20238e950f7e (diff) | |
download | bcm5719-llvm-8c3f2764fb638e19133eded70a244d968bbf7126.tar.gz bcm5719-llvm-8c3f2764fb638e19133eded70a244d968bbf7126.zip |
Add an example of using the target.process.extra-startup-command to turn on debugserver logging since
we always forget how to do this...
llvm-svn: 168840
-rw-r--r-- | lldb/source/Target/Process.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lldb/source/Target/Process.cpp b/lldb/source/Target/Process.cpp index 02f78d4df56..20f140c3437 100644 --- a/lldb/source/Target/Process.cpp +++ b/lldb/source/Target/Process.cpp @@ -93,7 +93,8 @@ static PropertyDefinition g_properties[] = { { "disable-memory-cache" , OptionValue::eTypeBoolean, false, DISABLE_MEM_CACHE_DEFAULT, NULL, NULL, "Disable reading and caching of memory in fixed-size units." }, - { "extra-startup-command", OptionValue::eTypeArray , false, OptionValue::eTypeString, NULL, NULL, "A list containing extra commands understood by the particular process plugin used." }, + { "extra-startup-command", OptionValue::eTypeArray , false, OptionValue::eTypeString, NULL, NULL, "A list containing extra commands understood by the particular process plugin used. " + "For instance, to turn on debugserver logging set this to \"QSetLogging:bitmask=LOG_DEFAULT;\"" }, { "python-os-plugin-path", OptionValue::eTypeFileSpec, false, 0, NULL, NULL, "A path to a python OS plug-in module file that contains a OperatingSystemPlugIn class." }, { NULL , OptionValue::eTypeInvalid, false, 0, NULL, NULL, NULL } }; |