1 2 3 4 5 6 7 8 9 10 11
-include ../tools.mk ifdef IS_WINDOWS # Do nothing on MSVC. all: exit 0 else all: $(RUSTC) -C opt-level=3 --emit=obj used.rs nm $(TMPDIR)/used.o | grep FOO endif