File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -156,8 +156,6 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
156156 let target_triple =
157157 std:: env:: var ( "PGO_HOST" ) . expect ( "PGO_HOST environment variable missing" ) ;
158158
159- let is_aarch64 = target_triple. starts_with ( "aarch64" ) ;
160-
161159 let checkout_dir = Utf8PathBuf :: from ( "/checkout" ) ;
162160 let env = EnvironmentBuilder :: default ( )
163161 . host_tuple ( target_triple)
@@ -168,7 +166,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
168166 . build_dir ( checkout_dir. join ( "obj" ) )
169167 . shared_llvm ( true )
170168 // FIXME: Enable bolt for aarch64 once it's fixed upstream. Broken as of December 2024.
171- . use_bolt ( !is_aarch64 )
169+ . use_bolt ( false )
172170 . skipped_tests ( vec ! [ ] )
173171 . run_tests ( true )
174172 . fast_try_build ( is_fast_try_build)
You can’t perform that action at this time.
0 commit comments