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>)>
156
156
let target_triple =
157
157
std:: env:: var ( "PGO_HOST" ) . expect ( "PGO_HOST environment variable missing" ) ;
158
158
159
- let is_aarch64 = target_triple. starts_with ( "aarch64" ) ;
160
-
161
159
let checkout_dir = Utf8PathBuf :: from ( "/checkout" ) ;
162
160
let env = EnvironmentBuilder :: default ( )
163
161
. host_tuple ( target_triple)
@@ -168,7 +166,7 @@ fn create_environment(args: Args) -> anyhow::Result<(Environment, Vec<String>)>
168
166
. build_dir ( checkout_dir. join ( "obj" ) )
169
167
. shared_llvm ( true )
170
168
// FIXME: Enable bolt for aarch64 once it's fixed upstream. Broken as of December 2024.
171
- . use_bolt ( !is_aarch64 )
169
+ . use_bolt ( false )
172
170
. skipped_tests ( vec ! [ ] )
173
171
. run_tests ( true )
174
172
. fast_try_build ( is_fast_try_build)
You can’t perform that action at this time.
0 commit comments