Skip to content

Commit aebd981

Browse files
committed
make.py -S toolchains now just prints the toolchains, no more mbed OS x
1 parent 111a65b commit aebd981

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/make.py

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -189,7 +189,11 @@
189189
if options.supported_toolchains == "matrix":
190190
print mcu_toolchain_matrix(platform_filter=options.general_filter_regex)
191191
elif options.supported_toolchains == "toolchains":
192-
print mcu_toolchain_list()
192+
toolchain_list = mcu_toolchain_list()
193+
# Only print the lines that matter
194+
for line in toolchain_list.split("\n"):
195+
if not "mbed" in line:
196+
print line
193197
elif options.supported_toolchains == "targets":
194198
print mcu_target_list()
195199
exit(0)

0 commit comments

Comments
 (0)