This website requires JavaScript.
Explore
Help
Register
Sign In
mikros
/
rust
Watch
1
Star
0
Fork
0
You've already forked rust
Code
Issues
Pull Requests
Packages
Projects
Releases
Wiki
Activity
10b08e3c9c
rust
/
tests
/
run-make-fulldeps
/
bare-outfile
/
Makefile
7 lines
104 B
Makefile
Raw
Normal View
History
Unescape
Escape
Diagnose missing includes in run-make tests
2022-08-22 19:00:00 -05:00
i
n
c
l
u
d
e
.
.
/
t
o
o
l
s
.
m
k
Add a test for a bare outfile param to rustc
2015-03-08 20:54:59 -05:00
all
:
Fix run-make/bare-outfile test The reason this was not failing is fascinating. The variable $(rustc) is empty, so the make recipe was expanded as " -o foo foo.rs". make interpreted this as an instruction to run the command "o foo foo.rs" and ignore any failure that occurred, because it uses a leading '-' on a command to signal that behavior.
2015-10-01 22:05:25 -05:00
cp foo.rs
$(
TMPDIR
)
cd
$(
TMPDIR
)
&&
$(
RUSTC
)
-o foo foo.rs
$(
call RUN,foo
)
Reference in New Issue
Copy Permalink