4851d5663c
`run-make-fulldeps` is never cross-compiled, so a lot of these tests never accounted for --target. Ignore them when cross-compiling for now.
11 lines
235 B
Makefile
11 lines
235 B
Makefile
# ignore-cross-compile
|
|
include ../tools.mk
|
|
|
|
# ignore-windows
|
|
# `ln` is actually `cp` on msys.
|
|
|
|
all:
|
|
$(RUSTC) foo.rs --crate-type=rlib -o $(TMPDIR)/foo.xxx
|
|
ln -nsf $(TMPDIR)/foo.xxx $(TMPDIR)/libfoo.rlib
|
|
$(RUSTC) bar.rs -L $(TMPDIR)
|