mirror of https://github.com/ARMmbed/mbed-os.git
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
parent
cce10e2c0d
commit
afde624a26
|
@ -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
|
||||||
|
|
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue