We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 01cdc50 commit 5be3974Copy full SHA for 5be3974
src/bootstrap/llvm.rs
@@ -1159,8 +1159,8 @@ impl Step for CrtBeginEnd {
1159
return out_dir;
1160
}
1161
1162
- let crtbegin_src = builder.src.join("src/llvm-project/compiler-rt/lib/crt/crtbegin.c");
1163
- let crtend_src = builder.src.join("src/llvm-project/compiler-rt/lib/crt/crtend.c");
+ let crtbegin_src = builder.src.join("src/llvm-project/compiler-rt/lib/builtins/crtbegin.c");
+ let crtend_src = builder.src.join("src/llvm-project/compiler-rt/lib/builtins/crtend.c");
1164
if up_to_date(&crtbegin_src, &out_dir.join("crtbegin.o"))
1165
&& up_to_date(&crtend_src, &out_dir.join("crtendS.o"))
1166
{
0 commit comments