fix location of the emitted object file

This commit is contained in:
Jorge Aparicio 2017-03-06 11:18:56 -05:00
parent bc1bd8a609
commit c759eea7a6

View file

@ -7,6 +7,6 @@ all:
else
all:
$(RUSTC) -C opt-level=3 --emit=obj used.rs
nm -C used.o | grep FOO
nm -C used.o | grep -v BAR
nm -C $(TMPDIR)/used.o | grep FOO
nm -C $(TMPDIR)/used.o | grep -v BAR
endif