This repository was archived by the owner on May 28, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -53,8 +53,9 @@ pub fn prebuilt_gcc_config(builder: &Builder<'_>, target: TargetSelection) -> Gc
53
53
static STAMP_HASH_MEMO : OnceLock < String > = OnceLock :: new ( ) ;
54
54
let smart_stamp_hash = STAMP_HASH_MEMO . get_or_init ( || {
55
55
generate_smart_stamp_hash (
56
- & builder. config . src . join ( "src/llvm-project" ) ,
57
- builder. in_tree_llvm_info . sha ( ) . unwrap_or_default ( ) ,
56
+ builder,
57
+ & builder. config . src . join ( "src/gcc" ) ,
58
+ builder. in_tree_gcc_info . sha ( ) . unwrap_or_default ( ) ,
58
59
)
59
60
} ) ;
60
61
Original file line number Diff line number Diff line change @@ -142,6 +142,7 @@ pub struct Build {
142
142
miri_info : GitInfo ,
143
143
rustfmt_info : GitInfo ,
144
144
in_tree_llvm_info : GitInfo ,
145
+ in_tree_gcc_info : GitInfo ,
145
146
local_rebuild : bool ,
146
147
fail_fast : bool ,
147
148
doc_tests : DocTests ,
@@ -311,6 +312,7 @@ impl Build {
311
312
312
313
// we always try to use git for LLVM builds
313
314
let in_tree_llvm_info = GitInfo :: new ( false , & src. join ( "src/llvm-project" ) ) ;
315
+ let in_tree_gcc_info = GitInfo :: new ( false , & src. join ( "src/gcc" ) ) ;
314
316
315
317
let initial_target_libdir_str = if config. dry_run ( ) {
316
318
"/dummy/lib/path/to/lib/" . to_string ( )
@@ -396,6 +398,7 @@ impl Build {
396
398
miri_info,
397
399
rustfmt_info,
398
400
in_tree_llvm_info,
401
+ in_tree_gcc_info,
399
402
cc : RefCell :: new ( HashMap :: new ( ) ) ,
400
403
cxx : RefCell :: new ( HashMap :: new ( ) ) ,
401
404
ar : RefCell :: new ( HashMap :: new ( ) ) ,
You can’t perform that action at this time.
0 commit comments