Skip to content

Commit cce10e2

Browse files
committed
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.
1 parent 22acfbf commit cce10e2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tools/options.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,9 @@ def get_default_options_parser(add_clean=True, add_options=True):
7575
'run Goanna static code analyzer")'),
7676
type=argparse_lowercase_hyphen_type(['save-asm',
7777
'debug-info',
78-
'analyze'],
78+
'analyze',
79+
'small-build',
80+
'big-build'],
7981
"build option"))
8082

8183
return parser

0 commit comments

Comments
 (0)