Skip to content

Commit 5647a08

Browse files
committed
Remove references about uARM toolchain (because it's a toolchain, just an alias to ARM small build)
1 parent 7d5ce09 commit 5647a08

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

mbed/mbed.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1957,7 +1957,7 @@ def status_(ignore=False):
19571957

19581958
# Compile command which invokes the mbed OS native build system
19591959
@subcommand('compile',
1960-
dict(name=['-t', '--toolchain'], help='Compile toolchain. Example: ARM, uARM, GCC_ARM, IAR'),
1960+
dict(name=['-t', '--toolchain'], help='Compile toolchain. Example: ARM, GCC_ARM, IAR'),
19611961
dict(name=['-m', '--mcu'], help='Compile target. Example: K64F, NUCLEO_F401RE, NRF51822...'),
19621962
dict(name='--library', dest='compile_library', action='store_true', help='Compile the current program or library as a static library.'),
19631963
dict(name='--config', dest='compile_config', action='store_true', help='Show run-time compile configuration'),
@@ -2041,7 +2041,7 @@ def compile_(toolchain=None, mcu=None, source=False, build=False, compile_librar
20412041

20422042
# Test command
20432043
@subcommand('test',
2044-
dict(name=['-t', '--toolchain'], help='Compile toolchain. Example: ARM, uARM, GCC_ARM, IAR'),
2044+
dict(name=['-t', '--toolchain'], help='Compile toolchain. Example: ARM, GCC_ARM, IAR'),
20452045
dict(name=['-m', '--mcu'], help='Compile target. Example: K64F, NUCLEO_F401RE, NRF51822...'),
20462046
dict(name='--compile-list', dest='compile_list', action='store_true', help='List all tests that can be built'),
20472047
dict(name='--run-list', dest='run_list', action='store_true', help='List all built tests that can be ran'),
@@ -2285,7 +2285,7 @@ def target_(name=None, global_cfg=False, supported=False):
22852285
return config_('target', name, global_cfg=global_cfg)
22862286

22872287
@subcommand('toolchain',
2288-
dict(name='name', nargs='?', help='Default toolchain name. Example: ARM, uARM, GCC_ARM, IAR'),
2288+
dict(name='name', nargs='?', help='Default toolchain name. Example: ARM, GCC_ARM, IAR'),
22892289
dict(name=['-G', '--global'], dest='global_cfg', action='store_true', help='Use global settings, not local'),
22902290
dict(name=['-S', '--supported'], dest='supported', action='store_true', help='Shows supported matrix of targets and toolchains'),
22912291
help='Set or get default toolchain\n\n',

0 commit comments

Comments
 (0)