File tree 1 file changed +1
-2
lines changed
1 file changed +1
-2
lines changed Original file line number Diff line number Diff line change @@ -993,7 +993,6 @@ impl Config {
993
993
// This is currently all tier 1 targets and tier 2 targets with host tools
994
994
// (since others may not have CI artifacts)
995
995
// https://doc.rust-lang.org/rustc/platform-support.html#tier-1
996
- // FIXME: this is duplicated in bootstrap.py
997
996
let supported_platforms = [
998
997
// tier 1
999
998
"aarch64-unknown-linux-gnu" ,
@@ -1176,14 +1175,14 @@ impl Config {
1176
1175
1177
1176
if config. llvm_from_ci {
1178
1177
let triple = & config. build . triple ;
1178
+ let ci_llvm_bin = config. ci_llvm_root ( ) . join ( "bin" ) ;
1179
1179
let mut build_target = config
1180
1180
. target_config
1181
1181
. entry ( config. build )
1182
1182
. or_insert_with ( || Target :: from_triple ( & triple) ) ;
1183
1183
1184
1184
check_ci_llvm ! ( build_target. llvm_config) ;
1185
1185
check_ci_llvm ! ( build_target. llvm_filecheck) ;
1186
- let ci_llvm_bin = config. out . join ( & * config. build . triple ) . join ( "ci-llvm/bin" ) ;
1187
1186
build_target. llvm_config = Some ( ci_llvm_bin. join ( exe ( "llvm-config" , config. build ) ) ) ;
1188
1187
build_target. llvm_filecheck = Some ( ci_llvm_bin. join ( exe ( "FileCheck" , config. build ) ) ) ;
1189
1188
}
You can’t perform that action at this time.
0 commit comments