diff --git a/src/bootstrap/cc_detect.rs b/src/bootstrap/cc_detect.rs index 7ce44687611..dca782c29c2 100644 --- a/src/bootstrap/cc_detect.rs +++ b/src/bootstrap/cc_detect.rs @@ -149,6 +149,10 @@ pub fn find(build: &mut Build) { build.verbose(&format!("AR_{} = {:?}", &target.triple, ar)); build.ar.insert(target, ar); } + + if let Some(ranlib) = config.and_then(|c| c.ranlib.clone()) { + build.ranlib.insert(target, ranlib); + } } }