We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a36019 commit 2f33093Copy full SHA for 2f33093
src/librustc_driver/lib.rs
@@ -810,9 +810,8 @@ impl RustcDefaultCalls {
810
PrintRequest::TargetCPUs | PrintRequest::TargetFeatures => {
811
rustc_trans::print(*req, sess);
812
}
813
- PrintRequest::NativeStaticLibs => {
814
- println!("Native static libs can be printed only during linking");
815
- }
+ // Any output here interferes with Cargo's parsing of other printed output
+ PrintRequest::NativeStaticLibs => {}
816
817
818
return Compilation::Stop;
0 commit comments