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 {
1062
1062
fn dist_extended ( ) {
1063
1063
let ctx = TestCtx :: new ( ) ;
1064
1064
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"
1069
1075
[build] rustc 0 <host> -> UnstableBookGen 1 <host>
1070
1076
[build] rustc 0 <host> -> Rustbook 1 <host>
1071
1077
[build] llvm <host>
1072
1078
[build] rustc 0 <host> -> rustc 1 <host>
1079
+ [build] rustc 0 <host> -> LldWrapper 1 <host>
1073
1080
[build] rustc 0 <host> -> WasmComponentLd 1 <host>
1081
+ [build] rustc 1 <host> -> LlvmBitcodeLinker 2 <host>
1074
1082
[build] rustc 1 <host> -> std 1 <host>
1075
1083
[build] rustc 1 <host> -> rustc 2 <host>
1084
+ [build] rustc 1 <host> -> LldWrapper 2 <host>
1076
1085
[build] rustc 1 <host> -> WasmComponentLd 2 <host>
1086
+ [build] rustc 2 <host> -> LlvmBitcodeLinker 3 <host>
1077
1087
[build] rustdoc 1 <host>
1078
1088
[doc] std 2 <host>
1079
1089
[build] rustc 2 <host> -> std 2 <host>
@@ -1092,7 +1102,6 @@ mod snapshot {
1092
1102
[build] rustc 0 <host> -> cargo-clippy 1 <host>
1093
1103
[build] rustc 0 <host> -> miri 1 <host>
1094
1104
[build] rustc 0 <host> -> cargo-miri 1 <host>
1095
- [build] rustc 1 <host> -> LlvmBitcodeLinker 2 <host>
1096
1105
" ) ;
1097
1106
}
1098
1107
You can’t perform that action at this time.
0 commit comments