2022-08-22 19:00:00 -05:00
|
|
|
include ../tools.mk
|
2016-02-12 09:11:58 -06:00
|
|
|
|
|
|
|
# Checks that all the targets returned by `rustc --print target-list` are valid
|
|
|
|
# target specifications
|
|
|
|
all:
|
|
|
|
for target in $(shell $(BARE_RUSTC) --print target-list); do \
|
2019-05-27 19:40:11 -05:00
|
|
|
$(BARE_RUSTC) --target $$target --print sysroot; \
|
2016-02-12 09:11:58 -06:00
|
|
|
done
|