Skip to content

Commit b994b17

Browse files
committed
Remove object file directly rather than running "rm". Close rust-lang#1778 also.
1 parent 0973bcc commit b994b17

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

src/rustc/back/link.rs

+4-1
Original file line numberDiff line numberDiff line change
@@ -700,7 +700,10 @@ fn link_binary(sess: session,
700700

701701
// Remove the temporary object file if we aren't saving temps
702702
if !sess.opts.save_temps {
703-
run::run_program("rm", [obj_filename]);
703+
if ! os::remove_file(obj_filename) {
704+
sess.warn(#fmt["failed to delete object file '%s'",
705+
obj_filename]);
706+
}
704707
}
705708
}
706709
//

0 commit comments

Comments
 (0)