@@ -634,6 +634,7 @@ pub struct Target {
634
634
pub runner : Option < String > ,
635
635
pub no_std : bool ,
636
636
pub codegen_backends : Option < Vec < String > > ,
637
+ pub optimized_compiler_builtins : Option < bool > ,
637
638
}
638
639
639
640
impl Target {
@@ -1219,6 +1220,7 @@ define_config! {
1219
1220
no_std: Option <bool > = "no-std" ,
1220
1221
codegen_backends: Option <Vec <String >> = "codegen-backends" ,
1221
1222
runner: Option <String > = "runner" ,
1223
+ optimized_compiler_builtins: Option <bool > = "optimized-compiler-builtins" ,
1222
1224
}
1223
1225
}
1224
1226
@@ -2096,6 +2098,7 @@ impl Config {
2096
2098
target. sanitizers = cfg. sanitizers ;
2097
2099
target. profiler = cfg. profiler ;
2098
2100
target. rpath = cfg. rpath ;
2101
+ target. optimized_compiler_builtins = cfg. optimized_compiler_builtins ;
2099
2102
2100
2103
if let Some ( ref backends) = cfg. codegen_backends {
2101
2104
let available_backends = [ "llvm" , "cranelift" , "gcc" ] ;
@@ -2609,6 +2612,13 @@ impl Config {
2609
2612
self . target_config . get ( & target) . and_then ( |t| t. rpath ) . unwrap_or ( self . rust_rpath )
2610
2613
}
2611
2614
2615
+ pub fn optimized_compiler_builtins ( & self , target : TargetSelection ) -> bool {
2616
+ self . target_config
2617
+ . get ( & target)
2618
+ . and_then ( |t| t. optimized_compiler_builtins )
2619
+ . unwrap_or ( self . optimized_compiler_builtins )
2620
+ }
2621
+
2612
2622
pub fn llvm_enabled ( & self , target : TargetSelection ) -> bool {
2613
2623
self . codegen_backends ( target) . contains ( & "llvm" . to_owned ( ) )
2614
2624
}
@@ -3162,6 +3172,9 @@ fn check_incompatible_options_for_ci_rustc(
3162
3172
3163
3173
let profiler = & ci_cfg. profiler ;
3164
3174
err ! ( current_cfg. profiler, profiler, "build" ) ;
3175
+
3176
+ let optimized_compiler_builtins = & ci_cfg. optimized_compiler_builtins ;
3177
+ err ! ( current_cfg. optimized_compiler_builtins, optimized_compiler_builtins, "build" ) ;
3165
3178
}
3166
3179
}
3167
3180
0 commit comments