Skip to content

Commit b315e85

Browse files
committed
Disable BOLT to make try builds faster and change perf
1 parent 7cfd7d3 commit b315e85

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/opt-dist/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
186186
.build_dir(checkout_dir.join("obj").join("build"))
187187
.shared_llvm(true)
188188
// FIXME: Enable bolt for aarch64 once it's fixed upstream. Broken as of December 2024.
189-
.use_bolt(!is_aarch64)
189+
.use_bolt(false)
190190
.skipped_tests(vec![])
191191
.run_tests(true)
192192
.fast_try_build(is_fast_try_build)

0 commit comments

Comments
 (0)