Auto merge of #96080 - nikic:ranlib, r=Mark-Simulacrum

Respect ranlib specified for target during LLVM build

The ranlib specified for the target was never actually transferred
into the builder configuration. In the dist-x86_64-linux build we
ended up using ranlib instead of llvm-ranlib.

Found this investigating a build failure in #94214.
This commit is contained in:
bors 2022-04-18 09:58:22 +00:00
commit 491f619f56

View file

@ -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);
}
}
}