Allow 'small-build' and 'big-build' to be used as options.

These two flags are already tested in tools/toolchains/gcc.py but can't
be used at the moment because they are not part of the argument list of
the option parameter.
pull/2409/head
Vincent Coubard 2016-08-10 09:48:04 +01:00
parent 22acfbf077
commit cce10e2c0d
1 changed files with 3 additions and 1 deletions

View File

@ -75,7 +75,9 @@ def get_default_options_parser(add_clean=True, add_options=True):
'run Goanna static code analyzer")'),
type=argparse_lowercase_hyphen_type(['save-asm',
'debug-info',
'analyze'],
'analyze',
'small-build',
'big-build'],
"build option"))
return parser