We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 13dbdc6 commit 1793a7aCopy full SHA for 1793a7a
src/test/run-make/issue-10971-temps-dir/Makefile
@@ -3,11 +3,8 @@
3
# Regression test for issue #10971
4
# Running two invocations in parallel would overwrite each other's temp files.
5
6
-## clean up unused env variables which might cause harm.
7
-unexport RUSTC_LINKER
8
-
9
all:
10
touch $(TMPDIR)/lib.rs
11
12
$(RUSTC) --crate-type=lib -Z temps-dir=$(TMPDIR)/temp1 $(TMPDIR)/lib.rs & \
13
- $(RUSTC) --crate-type=cdylib -Z temps-dir=$(TMPDIR)/temp2 $(TMPDIR)/lib.rs
+ $(RUSTC) --crate-type=staticlib -Z temps-dir=$(TMPDIR)/temp2 $(TMPDIR)/lib.rs
0 commit comments