Rename big-build option into standard-build.

With this change, the name is more descriptive and aligned with the targets
definitions in hal/targets.json.
pull/2409/head
Vincent Coubard 2016-08-12 09:50:24 +01:00
parent cce10e2c0d
commit afde624a26
2 changed files with 2 additions and 2 deletions

View File

@ -77,7 +77,7 @@ def get_default_options_parser(add_clean=True, add_options=True):
'debug-info', 'debug-info',
'analyze', 'analyze',
'small-build', 'small-build',
'big-build'], 'standard-build'],
"build option")) "build option"))
return parser return parser

View File

@ -273,7 +273,7 @@ class GCC_ARM(GCC):
GCC.__init__(self, target, options, notify, macros, silent, TOOLCHAIN_PATHS['GCC_ARM'], extra_verbose=extra_verbose) GCC.__init__(self, target, options, notify, macros, silent, TOOLCHAIN_PATHS['GCC_ARM'], extra_verbose=extra_verbose)
# Use latest gcc nanolib # Use latest gcc nanolib
if "big-build" in self.options: if "standard-build" in self.options:
use_nano = False use_nano = False
elif "small-build" in self.options: elif "small-build" in self.options:
use_nano = True use_nano = True