mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-15 06:42:57 +00:00
10 lines
272 B
Makefile
10 lines
272 B
Makefile
include ../tools.mk
|
|
|
|
# This test makes sure that files referenced via #[debugger_visualizer] are
|
|
# included in `--emit dep-info` output.
|
|
|
|
all:
|
|
$(RUSTC) --emit dep-info main.rs
|
|
$(CGREP) "foo.py" < $(TMPDIR)/main.d
|
|
$(CGREP) "my_visualizers/bar.natvis" < $(TMPDIR)/main.d
|