@@ -2218,7 +2218,7 @@ def compile_(toolchain=None, target=None, profile=False, compile_library=False,
2218
2218
2219
2219
if supported :
2220
2220
popen ([python_cmd , '-u' , os .path .join (tools_dir , 'make.py' )]
2221
- + (['-S' , supported ] if supported else [] ) + (['-v' ] if very_verbose else [])
2221
+ + (['-S' , supported ]) + (['-v' ] if very_verbose else [])
2222
2222
+ (['--app-config' , app_config ] if app_config else [])
2223
2223
+ args ,
2224
2224
env = env )
@@ -2574,7 +2574,7 @@ def config_(var=None, value=None, global_cfg=False, unset=False, list_config=Fal
2574
2574
"This is an alias to 'mbed config [--global] target [name]'\n " ))
2575
2575
def target_ (name = None , global_cfg = False , supported = False ):
2576
2576
if supported :
2577
- return compile_ (supported = supported )
2577
+ return compile_ (supported = 'matrix' )
2578
2578
return config_ ('target' , name , global_cfg = global_cfg )
2579
2579
2580
2580
@subcommand ('toolchain' ,
@@ -2587,7 +2587,7 @@ def target_(name=None, global_cfg=False, supported=False):
2587
2587
"This is an alias to 'mbed config [--global] toolchain [name]'\n " ))
2588
2588
def toolchain_ (name = None , global_cfg = False , supported = False ):
2589
2589
if supported :
2590
- return compile_ (supported = supported )
2590
+ return compile_ (supported = 'matrix' )
2591
2591
return config_ ('toolchain' , name , global_cfg = global_cfg )
2592
2592
2593
2593
@subcommand ('help' ,
0 commit comments