@@ -18,7 +18,7 @@ use rustc_errors::{
18
18
Diag , DiagArgMap , DiagCtxt , DiagMessage , ErrCode , FatalError , FluentBundle , Level , MultiSpan ,
19
19
Style ,
20
20
} ;
21
- use rustc_fs_util:: link_or_copy;
21
+ use rustc_fs_util:: { link_or_copy, LinkOrCopy } ;
22
22
use rustc_hir:: def_id:: { CrateNum , LOCAL_CRATE } ;
23
23
use rustc_incremental:: {
24
24
copy_cgu_workproduct_to_incr_comp_cache_dir, in_incr_comp_dir, in_incr_comp_dir_sess,
@@ -546,9 +546,12 @@ fn copy_all_cgu_workproducts_to_incr_comp_cache_dir(
546
546
if let Some ( path) = & module. bytecode {
547
547
files. push ( ( OutputType :: Bitcode . extension ( ) , path. as_path ( ) ) ) ;
548
548
}
549
- if let Some ( ( id, product) ) =
550
- copy_cgu_workproduct_to_incr_comp_cache_dir ( sess, & module. name , files. as_slice ( ) )
551
- {
549
+ if let Some ( ( id, product) ) = copy_cgu_workproduct_to_incr_comp_cache_dir (
550
+ sess,
551
+ & module. name ,
552
+ files. as_slice ( ) ,
553
+ & module. links_from_incr_cache ,
554
+ ) {
552
555
work_products. insert ( id, product) ;
553
556
}
554
557
}
@@ -940,7 +943,9 @@ fn execute_copy_from_cache_work_item<B: ExtraBackendMethods>(
940
943
) -> WorkItemResult < B > {
941
944
let incr_comp_session_dir = cgcx. incr_comp_session_dir . as_ref ( ) . unwrap ( ) ;
942
945
943
- let load_from_incr_comp_dir = |output_path : PathBuf , saved_path : & str | {
946
+ let mut links_from_incr_cache = Vec :: new ( ) ;
947
+
948
+ let mut load_from_incr_comp_dir = |output_path : PathBuf , saved_path : & str | {
944
949
let source_file = in_incr_comp_dir ( incr_comp_session_dir, saved_path) ;
945
950
debug ! (
946
951
"copying preexisting module `{}` from {:?} to {}" ,
@@ -949,7 +954,11 @@ fn execute_copy_from_cache_work_item<B: ExtraBackendMethods>(
949
954
output_path. display( )
950
955
) ;
951
956
match link_or_copy ( & source_file, & output_path) {
952
- Ok ( _) => Some ( output_path) ,
957
+ Ok ( LinkOrCopy :: Copy ) => Some ( output_path) ,
958
+ Ok ( LinkOrCopy :: Link ) => {
959
+ links_from_incr_cache. push ( source_file) ;
960
+ Some ( output_path)
961
+ }
953
962
Err ( error) => {
954
963
cgcx. create_dcx ( ) . handle ( ) . emit_err ( errors:: CopyPathBuf {
955
964
source_file,
@@ -972,7 +981,7 @@ fn execute_copy_from_cache_work_item<B: ExtraBackendMethods>(
972
981
load_from_incr_comp_dir ( dwarf_obj_out, saved_dwarf_object_file)
973
982
} ) ;
974
983
975
- let load_from_incr_cache = |perform, output_type : OutputType | {
984
+ let mut load_from_incr_cache = |perform, output_type : OutputType | {
976
985
if perform {
977
986
let saved_file = module. source . saved_files . get ( output_type. extension ( ) ) ?;
978
987
let output_path = cgcx. output_filenames . temp_path ( output_type, Some ( & module. name ) ) ;
@@ -992,6 +1001,7 @@ fn execute_copy_from_cache_work_item<B: ExtraBackendMethods>(
992
1001
}
993
1002
994
1003
WorkItemResult :: Finished ( CompiledModule {
1004
+ links_from_incr_cache,
995
1005
name : module. name ,
996
1006
kind : ModuleKind :: Regular ,
997
1007
object,
0 commit comments