]> git.proxmox.com Git - rustc.git/blobdiff - tests/run-make/print-target-list/Makefile
Update upstream source from tag 'upstream/1.70.0+dfsg1'
[rustc.git] / tests / run-make / print-target-list / Makefile
diff --git a/tests/run-make/print-target-list/Makefile b/tests/run-make/print-target-list/Makefile
new file mode 100644 (file)
index 0000000..f23c40d
--- /dev/null
@@ -0,0 +1,8 @@
+include ../tools.mk
+
+# 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 \
+               $(BARE_RUSTC) --target $$target --print sysroot; \
+       done