File tree 2 files changed +2
-2
lines changed
2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ test = false
36
36
# Most of the time updating these dependencies requires modifications
37
37
# to the bootstrap codebase; otherwise, some targets will fail. That's
38
38
# why these dependencies are explicitly pinned.
39
- cc = " = 1.0.73"
39
+ cc = " 1.0.73"
40
40
cmake = " =0.1.48"
41
41
42
42
build_helper = { path = " ../tools/build_helper" }
Original file line number Diff line number Diff line change @@ -1374,7 +1374,7 @@ impl Step for Libunwind {
1374
1374
if file. is_file ( ) && file. extension ( ) == Some ( OsStr :: new ( "o" ) ) {
1375
1375
// file name starts with "Unwind-EHABI", "Unwind-seh" or "libunwind"
1376
1376
let file_name = file. file_name ( ) . unwrap ( ) . to_str ( ) . expect ( "UTF-8 file name" ) ;
1377
- if cpp_sources. iter ( ) . any ( |f| file_name. starts_with ( & f[ ..f. len ( ) - 4 ] ) ) {
1377
+ if cpp_sources. iter ( ) . any ( |f| file_name. contains ( & f[ ..f. len ( ) - 4 ] ) ) {
1378
1378
cc_cfg. object ( & file) ;
1379
1379
count += 1 ;
1380
1380
}
You can’t perform that action at this time.
0 commit comments