2023-03-30 07:58:50 -05:00
|
|
|
include ../tools.mk
|
2021-04-04 08:54:21 -05: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-06 18:14:54 -05:00
|
|
|
$(RUSTC) --crate-type=lib -Z temps-dir=$(TMPDIR)/temp1 $(TMPDIR)/lib.rs & \
|
2021-11-10 01:25:35 -06:00
|
|
|
$(RUSTC) --crate-type=staticlib -Z temps-dir=$(TMPDIR)/temp2 $(TMPDIR)/lib.rs
|