File tree 2 files changed +11
-0
lines changed
2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -609,3 +609,13 @@ extern "rust-intrinsic" {
609
609
#[ rustc_nounwind]
610
610
fn va_arg < T : sealed_trait:: VaArgSafe > ( ap : & mut VaListImpl < ' _ > ) -> T ;
611
611
}
612
+
613
+ // Link the MSVC default lib
614
+ #[ cfg( all( windows, target_env = "msvc" ) ) ]
615
+ #[ link(
616
+ name = "/defaultlib:msvcrt" ,
617
+ modifiers = "+verbatim" ,
618
+ cfg( not( target_feature = "crt-static" ) )
619
+ ) ]
620
+ #[ link( name = "/defaultlib:libcmt" , modifiers = "+verbatim" , cfg( target_feature = "crt-static" ) ) ]
621
+ extern "C" { }
Original file line number Diff line number Diff line change 178
178
#![ feature( ip_bits) ]
179
179
#![ feature( is_ascii_octdigit) ]
180
180
#![ feature( isqrt) ]
181
+ #![ feature( link_cfg) ]
181
182
#![ feature( maybe_uninit_uninit_array) ]
182
183
#![ feature( non_null_convenience) ]
183
184
#![ feature( offset_of_enum) ]
You can’t perform that action at this time.
0 commit comments