Skip to content
Snippets Groups Projects
Commit ac9311a4 authored by Martine Lenders's avatar Martine Lenders
Browse files

makefiles/info.inc.mk: provide info targets about toolchain support

parent c0a7da30
No related branches found
No related tags found
No related merge requests found
.PHONY: info-objsize info-buildsizes info-build info-boards-supported \ .PHONY: info-objsize info-buildsizes info-build info-boards-supported \
info-features-missing info-modules info-cpu \ info-features-missing info-modules info-cpu \
info-features-provided info-features-required \ info-features-provided info-features-required \
info-debug-variable-% info-debug-variable-% info-toolchains-supported \
check-toolchain-supported
info-objsize: info-objsize:
@case "$(SORTROW)" in \ @case "$(SORTROW)" in \
...@@ -130,3 +131,9 @@ info-features-missing: ...@@ -130,3 +131,9 @@ info-features-missing:
info-debug-variable-%: info-debug-variable-%:
@echo $($*) @echo $($*)
info-toolchains-supported:
@echo $(filter-out $(TOOLCHAINS_BLACKLIST),$(TOOLCHAINS_SUPPORTED))
check-toolchain-supported:
@exit $(if $(filter $(TOOLCHAIN),$(filter-out $(TOOLCHAINS_BLACKLIST),$(TOOLCHAINS_SUPPORTED))),0,1)
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment