File tree 3 files changed +12
-3
lines changed
3 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -709,7 +709,15 @@ impl<'a> Builder<'a> {
709
709
return ;
710
710
}
711
711
712
- add_dylib_path ( vec ! [ self . rustc_libdir( compiler) ] , cmd) ;
712
+ let mut dylib_dirs = vec ! [ self . rustc_libdir( compiler) ] ;
713
+
714
+ // Ensure that the downloaded LLVM libraries can be found.
715
+ if self . config . llvm_from_ci {
716
+ let ci_llvm_lib = self . out . join ( & * compiler. host . triple ) . join ( "ci-llvm" ) . join ( "lib" ) ;
717
+ dylib_dirs. push ( ci_llvm_lib) ;
718
+ }
719
+
720
+ add_dylib_path ( dylib_dirs, cmd) ;
713
721
}
714
722
715
723
/// Gets a path to the compiler specified.
Original file line number Diff line number Diff line change @@ -449,6 +449,7 @@ impl Step for Miri {
449
449
SourceType :: Submodule ,
450
450
& [ ] ,
451
451
) ;
452
+ cargo. add_rustc_lib_path ( builder, compiler) ;
452
453
cargo. arg ( "--" ) . arg ( "miri" ) . arg ( "setup" ) ;
453
454
454
455
// Tell `cargo miri setup` where to find the sources.
@@ -500,6 +501,7 @@ impl Step for Miri {
500
501
SourceType :: Submodule ,
501
502
& [ ] ,
502
503
) ;
504
+ cargo. add_rustc_lib_path ( builder, compiler) ;
503
505
504
506
// miri tests need to know about the stage sysroot
505
507
cargo. env ( "MIRI_SYSROOT" , miri_sysroot) ;
@@ -508,8 +510,6 @@ impl Step for Miri {
508
510
509
511
cargo. arg ( "--" ) . args ( builder. config . cmd . test_args ( ) ) ;
510
512
511
- cargo. add_rustc_lib_path ( builder, compiler) ;
512
-
513
513
let mut cargo = Command :: from ( cargo) ;
514
514
if !try_run ( builder, & mut cargo) {
515
515
return ;
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ pub fn libdir(target: TargetSelection) -> &'static str {
45
45
}
46
46
47
47
/// Adds a list of lookup paths to `cmd`'s dynamic library lookup path.
48
+ /// If The dylib_path_par is already set for this cmd, the old value will be overwritten!
48
49
pub fn add_dylib_path ( path : Vec < PathBuf > , cmd : & mut Command ) {
49
50
let mut list = dylib_path ( ) ;
50
51
for path in path {
You can’t perform that action at this time.
0 commit comments