We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
done_stamp
lld_stamp
1 parent b54d652 commit b03fba7Copy full SHA for b03fba7
src/bootstrap/src/core/build_steps/llvm.rs
@@ -1015,8 +1015,8 @@ impl Step for Lld {
1015
1016
let out_dir = builder.lld_out(target);
1017
1018
- let done_stamp = BuildStamp::new(&out_dir).with_prefix("lld");
1019
- if done_stamp.path().exists() {
+ let lld_stamp = BuildStamp::new(&out_dir).with_prefix("lld");
+ if lld_stamp.path().exists() {
1020
return out_dir;
1021
}
1022
@@ -1091,7 +1091,7 @@ impl Step for Lld {
1091
1092
cfg.build();
1093
1094
- t!(done_stamp.write());
+ t!(lld_stamp.write());
1095
out_dir
1096
1097
0 commit comments