diff options
author | Greg Clayton <gclayton@apple.com> | 2013-06-26 22:24:05 +0000 |
---|---|---|
committer | Greg Clayton <gclayton@apple.com> | 2013-06-26 22:24:05 +0000 |
commit | abc18417b63ffd2cf1ed0d40cc4e94241a53c835 (patch) | |
tree | f7059f48e24c0efd03ce9119375be30b88b71a50 /lldb | |
parent | 111db4f94c0b610848d1925548aaf8dd8027cd30 (diff) | |
download | bcm5719-llvm-abc18417b63ffd2cf1ed0d40cc4e94241a53c835.tar.gz bcm5719-llvm-abc18417b63ffd2cf1ed0d40cc4e94241a53c835.zip |
Update the platform options help strings.
llvm-svn: 185028
Diffstat (limited to 'lldb')
-rwxr-xr-x | lldb/examples/python/globals.py | 2 | ||||
-rwxr-xr-x | lldb/examples/python/symbolication.py | 2 | ||||
-rwxr-xr-x | lldb/examples/python/types.py | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/lldb/examples/python/globals.py b/lldb/examples/python/globals.py index 67314b827c7..fb2739c8b69 100755 --- a/lldb/examples/python/globals.py +++ b/lldb/examples/python/globals.py @@ -57,7 +57,7 @@ def globals(command_args): parser = optparse.OptionParser(description=description, prog='globals',usage=usage) parser.add_option('-v', '--verbose', action='store_true', dest='verbose', help='display verbose debug info', default=False) parser.add_option('-a', '--arch', type='string', metavar='arch', dest='arch', help='Specify an architecture (or triple) to use when extracting from a file.') - parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='specify one platform by name') + parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='Specify the platform to use when creating the debug target. Valid values include "localhost", "darwin-kernel", "ios-simulator", "remote-freebsd", "remote-macosx", "remote-ios", "remote-linux".') try: (options, args) = parser.parse_args(command_args) except: diff --git a/lldb/examples/python/symbolication.py b/lldb/examples/python/symbolication.py index e4c79b6c432..412a0de7c34 100755 --- a/lldb/examples/python/symbolication.py +++ b/lldb/examples/python/symbolication.py @@ -538,7 +538,7 @@ def Symbolicate(command_args): description='''Symbolicate one or more addresses using LLDB's python scripting API..''' parser = optparse.OptionParser(description=description, prog='crashlog.py',usage=usage) parser.add_option('-v', '--verbose', action='store_true', dest='verbose', help='display verbose debug info', default=False) - parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='specify one platform by name') + parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='Specify the platform to use when creating the debug target. Valid values include "localhost", "darwin-kernel", "ios-simulator", "remote-freebsd", "remote-macosx", "remote-ios", "remote-linux".') parser.add_option('-f', '--file', type='string', metavar='file', dest='file', help='Specify a file to use when symbolicating') parser.add_option('-a', '--arch', type='string', metavar='arch', dest='arch', help='Specify a architecture to use when symbolicating') parser.add_option('-s', '--slide', type='int', metavar='slide', dest='slide', help='Specify the slide to use on the file specified with the --file option', default=None) diff --git a/lldb/examples/python/types.py b/lldb/examples/python/types.py index d2451e0e026..d16cad0c823 100755 --- a/lldb/examples/python/types.py +++ b/lldb/examples/python/types.py @@ -79,7 +79,7 @@ be verified in all specified modules. parser = optparse.OptionParser(description=description, prog='framestats',usage=usage) if not for_lldb_command: parser.add_option('-a', '--arch', type='string', dest='arch', help='The architecture to use when creating the debug target.', default=None) - parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='specify one platform by name') + parser.add_option('-p', '--platform', type='string', metavar='platform', dest='platform', help='Specify the platform to use when creating the debug target. Valid values include "localhost", "darwin-kernel", "ios-simulator", "remote-freebsd", "remote-macosx", "remote-ios", "remote-linux".') parser.add_option('-m', '--module', action='append', type='string', metavar='MODULE', dest='modules', help='Specify one or more modules which will be used to verify the types.', default=[]) parser.add_option('-d', '--debug', action='store_true', dest='debug', help='Pause 10 seconds to wait for a debugger to attach.', default=False) parser.add_option('-t', '--type', action='append', type='string', metavar='TYPENAME', dest='typenames', help='Specify one or more type names which should be verified. If no type names are specified, all class and struct types will be verified.', default=[]) |