[Lldb-commits] [lldb] r168916 - /lldb/trunk/source/Target/Process.cpp
Greg Clayton
gclayton at apple.com
Thu Nov 29 10:48:47 PST 2012
Author: gclayton
Date: Thu Nov 29 12:48:47 2012
New Revision: 168916
URL: http://llvm.org/viewvc/llvm-project?rev=168916&view=rev
Log:
<rdar://problem/12655594>
Be sure to resolve the file path for the "target.process.python-os-plugin-path" setting.
Modified:
lldb/trunk/source/Target/Process.cpp
Modified: lldb/trunk/source/Target/Process.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Target/Process.cpp?rev=168916&r1=168915&r2=168916&view=diff
==============================================================================
--- lldb/trunk/source/Target/Process.cpp (original)
+++ lldb/trunk/source/Target/Process.cpp Thu Nov 29 12:48:47 2012
@@ -95,7 +95,7 @@
{ "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. "
"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." },
+ { "python-os-plugin-path", OptionValue::eTypeFileSpec, false, true, 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 }
};
More information about the lldb-commits
mailing list