Skip to content

Commit 538d5dc

Browse files
authored
Rollup merge of #135326 - onur-ozkan:target-specific-compiler-builtins, r=jieyouxu
support target specific `optimized-compiler-builtins` Makes it possible to control `optimized-compiler-builtins` for per target. This was raised in the [zulip discussion](https://rust-lang.zulipchat.com/#narrow/channel/326414-t-infra.2Fbootstrap/topic/Building.20and.20packaging.20Rust.20with.20x86_64-unknown-uefi.20support/near/492765883) yesterday.
2 parents 23c22a6 + 5a19c26 commit 538d5dc

File tree

5 files changed

+36
-2
lines changed

5 files changed

+36
-2
lines changed

config.example.toml

+9
Original file line numberDiff line numberDiff line change
@@ -922,6 +922,15 @@
922922
# argument as the test binary.
923923
#runner = <none> (string)
924924

925+
# Use the optimized LLVM C intrinsics for `compiler_builtins`, rather than Rust intrinsics
926+
# on this target.
927+
# Requires the LLVM submodule to be managed by bootstrap (i.e. not external) so that `compiler-rt`
928+
# sources are available.
929+
#
930+
# Setting this to `false` generates slower code, but removes the requirement for a C toolchain in
931+
# order to run `x check`.
932+
#optimized-compiler-builtins = build.optimized-compiler-builtins (bool)
933+
925934
# =============================================================================
926935
# Distribution options
927936
#

src/bootstrap/src/core/build_steps/compile.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ pub fn std_cargo(builder: &Builder<'_>, target: TargetSelection, stage: u32, car
469469
// If `compiler-rt` is available ensure that the `c` feature of the
470470
// `compiler-builtins` crate is enabled and it's configured to learn where
471471
// `compiler-rt` is located.
472-
let compiler_builtins_c_feature = if builder.config.optimized_compiler_builtins {
472+
let compiler_builtins_c_feature = if builder.config.optimized_compiler_builtins(target) {
473473
// NOTE: this interacts strangely with `llvm-has-rust-patches`. In that case, we enforce `submodules = false`, so this is a no-op.
474474
// But, the user could still decide to manually use an in-tree submodule.
475475
//

src/bootstrap/src/core/config/config.rs

+13
Original file line numberDiff line numberDiff line change
@@ -634,6 +634,7 @@ pub struct Target {
634634
pub runner: Option<String>,
635635
pub no_std: bool,
636636
pub codegen_backends: Option<Vec<String>>,
637+
pub optimized_compiler_builtins: Option<bool>,
637638
}
638639

639640
impl Target {
@@ -1219,6 +1220,7 @@ define_config! {
12191220
no_std: Option<bool> = "no-std",
12201221
codegen_backends: Option<Vec<String>> = "codegen-backends",
12211222
runner: Option<String> = "runner",
1223+
optimized_compiler_builtins: Option<bool> = "optimized-compiler-builtins",
12221224
}
12231225
}
12241226

@@ -2096,6 +2098,7 @@ impl Config {
20962098
target.sanitizers = cfg.sanitizers;
20972099
target.profiler = cfg.profiler;
20982100
target.rpath = cfg.rpath;
2101+
target.optimized_compiler_builtins = cfg.optimized_compiler_builtins;
20992102

21002103
if let Some(ref backends) = cfg.codegen_backends {
21012104
let available_backends = ["llvm", "cranelift", "gcc"];
@@ -2609,6 +2612,13 @@ impl Config {
26092612
self.target_config.get(&target).and_then(|t| t.rpath).unwrap_or(self.rust_rpath)
26102613
}
26112614

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+
26122622
pub fn llvm_enabled(&self, target: TargetSelection) -> bool {
26132623
self.codegen_backends(target).contains(&"llvm".to_owned())
26142624
}
@@ -3162,6 +3172,9 @@ fn check_incompatible_options_for_ci_rustc(
31623172

31633173
let profiler = &ci_cfg.profiler;
31643174
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");
31653178
}
31663179
}
31673180

src/bootstrap/src/core/config/tests.rs

+8-1
Original file line numberDiff line numberDiff line change
@@ -120,13 +120,15 @@ fn override_toml() {
120120
"--set=change-id=1".to_owned(),
121121
"--set=rust.lto=fat".to_owned(),
122122
"--set=rust.deny-warnings=false".to_owned(),
123+
"--set=build.optimized-compiler-builtins=true".to_owned(),
123124
"--set=build.gdb=\"bar\"".to_owned(),
124125
"--set=build.tools=[\"cargo\"]".to_owned(),
125126
"--set=llvm.build-config={\"foo\" = \"bar\"}".to_owned(),
126127
"--set=target.x86_64-unknown-linux-gnu.runner=bar".to_owned(),
127128
"--set=target.x86_64-unknown-linux-gnu.rpath=false".to_owned(),
128129
"--set=target.aarch64-unknown-linux-gnu.sanitizers=false".to_owned(),
129130
"--set=target.aarch64-apple-darwin.runner=apple".to_owned(),
131+
"--set=target.aarch64-apple-darwin.optimized-compiler-builtins=false".to_owned(),
130132
]),
131133
|&_| {
132134
toml::from_str(
@@ -167,6 +169,7 @@ runner = "x86_64-runner"
167169
);
168170
assert_eq!(config.gdb, Some("bar".into()), "setting string value with quotes");
169171
assert!(!config.deny_warnings, "setting boolean value");
172+
assert!(config.optimized_compiler_builtins, "setting boolean value");
170173
assert_eq!(
171174
config.tools,
172175
Some(["cargo".to_string()].into_iter().collect()),
@@ -193,7 +196,11 @@ runner = "x86_64-runner"
193196
..Default::default()
194197
};
195198
let darwin = TargetSelection::from_user("aarch64-apple-darwin");
196-
let darwin_values = Target { runner: Some("apple".into()), ..Default::default() };
199+
let darwin_values = Target {
200+
runner: Some("apple".into()),
201+
optimized_compiler_builtins: Some(false),
202+
..Default::default()
203+
};
197204
assert_eq!(
198205
config.target_config,
199206
[(x86_64, x86_64_values), (aarch64, aarch64_values), (darwin, darwin_values)]

src/bootstrap/src/utils/change_tracker.rs

+5
Original file line numberDiff line numberDiff line change
@@ -325,4 +325,9 @@ pub const CONFIG_CHANGE_HISTORY: &[ChangeInfo] = &[
325325
severity: ChangeSeverity::Warning,
326326
summary: "Removed `rust.parallel-compiler` as it was deprecated in #132282 long time ago.",
327327
},
328+
ChangeInfo {
329+
change_id: 135326,
330+
severity: ChangeSeverity::Warning,
331+
summary: "It is now possible to configure `optimized-compiler-builtins` for per target.",
332+
},
328333
];

0 commit comments

Comments
 (0)