@@ -27,6 +27,7 @@ use crate::core::builder::crate_description;
27
27
use crate :: core:: builder:: Cargo ;
28
28
use crate :: core:: builder:: { Builder , Kind , PathSet , RunConfig , ShouldRun , Step , TaskPath } ;
29
29
use crate :: core:: config:: { DebuginfoLevel , LlvmLibunwind , RustcLto , TargetSelection } ;
30
+ use crate :: utils:: exec:: BehaviorOnFailure ;
30
31
use crate :: utils:: helpers:: {
31
32
exe, get_clang_cl_resource_dir, is_debug_info, is_dylib, output, symlink_dir, t, up_to_date,
32
33
} ;
@@ -289,7 +290,8 @@ impl Step for Std {
289
290
target_deps,
290
291
self . is_for_mir_opt_tests , // is_check
291
292
false ,
292
- ) ;
293
+ )
294
+ . unwrap ( ) ;
293
295
294
296
builder. ensure ( StdLink :: from_std (
295
297
self ,
@@ -969,7 +971,8 @@ impl Step for Rustc {
969
971
vec ! [ ] ,
970
972
false ,
971
973
true , // Only ship rustc_driver.so and .rmeta files, not all intermediate .rlib files.
972
- ) ;
974
+ )
975
+ . unwrap ( ) ;
973
976
974
977
// When building `librustc_driver.so` (like `libLLVM.so`) on linux, it can contain
975
978
// unexpected debuginfo from dependencies, for example from the C++ standard library used in
@@ -1381,7 +1384,7 @@ impl Step for CodegenBackend {
1381
1384
let tmp_stamp = out_dir. join ( ".tmp.stamp" ) ;
1382
1385
1383
1386
let _guard = builder. msg_build ( compiler, format_args ! ( "codegen backend {backend}" ) , target) ;
1384
- let files = run_cargo ( builder, cargo, vec ! [ ] , & tmp_stamp, vec ! [ ] , false , false ) ;
1387
+ let files = run_cargo ( builder, cargo, vec ! [ ] , & tmp_stamp, vec ! [ ] , false , false ) . unwrap ( ) ;
1385
1388
if builder. config . dry_run ( ) {
1386
1389
return ;
1387
1390
}
@@ -1907,7 +1910,8 @@ pub fn run_cargo(
1907
1910
additional_target_deps : Vec < ( PathBuf , DependencyType ) > ,
1908
1911
is_check : bool ,
1909
1912
rlib_only_metadata : bool ,
1910
- ) -> Vec < PathBuf > {
1913
+ ) -> Result < Vec < PathBuf > , String > {
1914
+ let failure_behavior = cargo. bootstrap_command . failure_behavior ;
1911
1915
// `target_root_dir` looks like $dir/$target/release
1912
1916
let target_root_dir = stamp. parent ( ) . unwrap ( ) ;
1913
1917
// `target_deps_dir` looks like $dir/$target/release/deps
@@ -2011,11 +2015,15 @@ pub fn run_cargo(
2011
2015
} ) ;
2012
2016
2013
2017
if !ok {
2014
- crate :: exit!( 1 ) ;
2018
+ if failure_behavior == BehaviorOnFailure :: Ignore {
2019
+ return Ok ( Vec :: new ( ) ) ;
2020
+ }
2021
+
2022
+ return Err ( "Command failed." . to_owned ( ) ) ;
2015
2023
}
2016
2024
2017
2025
if builder. config . dry_run ( ) {
2018
- return Vec :: new ( ) ;
2026
+ return Ok ( Vec :: new ( ) ) ;
2019
2027
}
2020
2028
2021
2029
// Ok now we need to actually find all the files listed in `toplevel`. We've
@@ -2038,6 +2046,7 @@ pub fn run_cargo(
2038
2046
} ) ;
2039
2047
let path_to_add = match max {
2040
2048
Some ( triple) => triple. 0 . to_str ( ) . unwrap ( ) ,
2049
+ None if failure_behavior == BehaviorOnFailure :: Ignore => continue ,
2041
2050
None => panic ! ( "no output generated for {prefix:?} {extension:?}" ) ,
2042
2051
} ;
2043
2052
if is_dylib ( path_to_add) {
@@ -2063,7 +2072,7 @@ pub fn run_cargo(
2063
2072
new_contents. extend ( b"\0 " ) ;
2064
2073
}
2065
2074
t ! ( fs:: write( stamp, & new_contents) ) ;
2066
- deps. into_iter ( ) . map ( |( d, _) | d) . collect ( )
2075
+ Ok ( deps. into_iter ( ) . map ( |( d, _) | d) . collect ( ) )
2067
2076
}
2068
2077
2069
2078
pub fn stream_cargo (
0 commit comments