2022-08-23 00:00:00 +00:00
|
|
|
include ../../run-make-fulldeps/tools.mk
|
2021-04-04 15:54:21 +02:00
|
|
|
|
|
|
|
# Regression test for issue #10971
|
|
|
|
# Running two invocations in parallel would overwrite each other's temp files.
|
|
|
|
|
|
|
|
all:
|
|
|
|
touch $(TMPDIR)/lib.rs
|
|
|
|
|
2021-11-07 00:14:54 +01:00
|
|
|
$(RUSTC) --crate-type=lib -Z temps-dir=$(TMPDIR)/temp1 $(TMPDIR)/lib.rs & \
|
2021-11-10 08:25:35 +01:00
|
|
|
$(RUSTC) --crate-type=staticlib -Z temps-dir=$(TMPDIR)/temp2 $(TMPDIR)/lib.rs
|