Skip to content

Commit afde624

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

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tools/options.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def get_default_options_parser(add_clean=True, add_options=True):
7777
'debug-info',
7878
'analyze',
7979
'small-build',
80-
'big-build'],
80+
'standard-build'],
8181
"build option"))
8282

8383
return parser

tools/toolchains/gcc.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ def __init__(self, target, options=None, notify=None, macros=None, silent=False,
273273
GCC.__init__(self, target, options, notify, macros, silent, TOOLCHAIN_PATHS['GCC_ARM'], extra_verbose=extra_verbose)
274274

275275
# Use latest gcc nanolib
276-
if "big-build" in self.options:
276+
if "standard-build" in self.options:
277277
use_nano = False
278278
elif "small-build" in self.options:
279279
use_nano = True

0 commit comments

Comments
 (0)