@@ -1957,7 +1957,7 @@ def status_(ignore=False):
1957
1957
1958
1958
# Compile command which invokes the mbed OS native build system
1959
1959
@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' ),
1961
1961
dict (name = ['-m' , '--mcu' ], help = 'Compile target. Example: K64F, NUCLEO_F401RE, NRF51822...' ),
1962
1962
dict (name = '--library' , dest = 'compile_library' , action = 'store_true' , help = 'Compile the current program or library as a static library.' ),
1963
1963
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
2041
2041
2042
2042
# Test command
2043
2043
@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' ),
2045
2045
dict (name = ['-m' , '--mcu' ], help = 'Compile target. Example: K64F, NUCLEO_F401RE, NRF51822...' ),
2046
2046
dict (name = '--compile-list' , dest = 'compile_list' , action = 'store_true' , help = 'List all tests that can be built' ),
2047
2047
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):
2285
2285
return config_ ('target' , name , global_cfg = global_cfg )
2286
2286
2287
2287
@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' ),
2289
2289
dict (name = ['-G' , '--global' ], dest = 'global_cfg' , action = 'store_true' , help = 'Use global settings, not local' ),
2290
2290
dict (name = ['-S' , '--supported' ], dest = 'supported' , action = 'store_true' , help = 'Shows supported matrix of targets and toolchains' ),
2291
2291
help = 'Set or get default toolchain\n \n ' ,
0 commit comments