diff options
| author | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
|---|---|---|
| committer | Virgile Bello <virgile.bello@gmail.com> | 2013-09-05 16:42:23 +0000 |
| commit | e2607b50ea6b6a651a3a640ed6ccf80f37fca182 (patch) | |
| tree | 848082207b6646690b580b4fe252166ddbab9e0f /lldb/source/Interpreter/OptionGroupPlatform.cpp | |
| parent | f792acb20fd0233f2e5cf400ceabd4f2416db3b5 (diff) | |
| download | bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.tar.gz bcm5719-llvm-e2607b50ea6b6a651a3a640ed6ccf80f37fca182.zip | |
Add OptionParser.h
llvm-svn: 190063
Diffstat (limited to 'lldb/source/Interpreter/OptionGroupPlatform.cpp')
| -rw-r--r-- | lldb/source/Interpreter/OptionGroupPlatform.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lldb/source/Interpreter/OptionGroupPlatform.cpp b/lldb/source/Interpreter/OptionGroupPlatform.cpp index a54edafd019..83e28bdd02c 100644 --- a/lldb/source/Interpreter/OptionGroupPlatform.cpp +++ b/lldb/source/Interpreter/OptionGroupPlatform.cpp @@ -85,10 +85,10 @@ OptionGroupPlatform::OptionParsingStarting (CommandInterpreter &interpreter) static OptionDefinition g_option_table[] = { - { LLDB_OPT_SET_ALL, false, "platform", 'p', required_argument, NULL, 0, eArgTypePlatform, "Specify name of the platform to use for this target, creating the platform if necessary."}, - { LLDB_OPT_SET_ALL, false, "version" , 'v', required_argument, NULL, 0, eArgTypeNone, "Specify the initial SDK version to use prior to connecting." }, - { LLDB_OPT_SET_ALL, false, "build" , 'b', required_argument, NULL, 0, eArgTypeNone, "Specify the initial SDK build number." }, - { LLDB_OPT_SET_ALL, false, "sysroot" , 'S', required_argument, NULL, 0, eArgTypeFilename, "Specify the SDK root directory that contains a root of all remote system files." } + { LLDB_OPT_SET_ALL, false, "platform", 'p', OptionParser::eRequiredArgument, NULL, 0, eArgTypePlatform, "Specify name of the platform to use for this target, creating the platform if necessary."}, + { LLDB_OPT_SET_ALL, false, "version" , 'v', OptionParser::eRequiredArgument, NULL, 0, eArgTypeNone, "Specify the initial SDK version to use prior to connecting." }, + { LLDB_OPT_SET_ALL, false, "build" , 'b', OptionParser::eRequiredArgument, NULL, 0, eArgTypeNone, "Specify the initial SDK build number." }, + { LLDB_OPT_SET_ALL, false, "sysroot" , 'S', OptionParser::eRequiredArgument, NULL, 0, eArgTypeFilename, "Specify the SDK root directory that contains a root of all remote system files." } }; const OptionDefinition* |

