File tree Expand file tree Collapse file tree 1 file changed +14
-5
lines changed
src/bootstrap/src/core/builder Expand file tree Collapse file tree 1 file changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -1062,18 +1062,28 @@ mod snapshot {
10621062 fn dist_extended ( ) {
10631063 let ctx = TestCtx :: new ( ) ;
10641064 insta:: assert_snapshot!(
1065- ctx
1066- . config( "dist" )
1067- . args( & [ "--set" , "build.extended=true" ] )
1068- . render_steps( ) , @r"
1065+ ctx. config( "dist" )
1066+ . args( & [
1067+ "--set" ,
1068+ "build.extended=true" ,
1069+ "--set" ,
1070+ "rust.llvm-bitcode-linker=true" ,
1071+ "--set" ,
1072+ "rust.lld=true" ,
1073+ ] )
1074+ . render_steps( ) , @r"
10691075 [build] rustc 0 <host> -> UnstableBookGen 1 <host>
10701076 [build] rustc 0 <host> -> Rustbook 1 <host>
10711077 [build] llvm <host>
10721078 [build] rustc 0 <host> -> rustc 1 <host>
1079+ [build] rustc 0 <host> -> LldWrapper 1 <host>
10731080 [build] rustc 0 <host> -> WasmComponentLd 1 <host>
1081+ [build] rustc 1 <host> -> LlvmBitcodeLinker 2 <host>
10741082 [build] rustc 1 <host> -> std 1 <host>
10751083 [build] rustc 1 <host> -> rustc 2 <host>
1084+ [build] rustc 1 <host> -> LldWrapper 2 <host>
10761085 [build] rustc 1 <host> -> WasmComponentLd 2 <host>
1086+ [build] rustc 2 <host> -> LlvmBitcodeLinker 3 <host>
10771087 [build] rustdoc 1 <host>
10781088 [doc] std 2 <host>
10791089 [build] rustc 2 <host> -> std 2 <host>
@@ -1092,7 +1102,6 @@ mod snapshot {
10921102 [build] rustc 0 <host> -> cargo-clippy 1 <host>
10931103 [build] rustc 0 <host> -> miri 1 <host>
10941104 [build] rustc 0 <host> -> cargo-miri 1 <host>
1095- [build] rustc 1 <host> -> LlvmBitcodeLinker 2 <host>
10961105 " ) ;
10971106 }
10981107
You can’t perform that action at this time.
0 commit comments