We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bdd64a commit 91aa2f2Copy full SHA for 91aa2f2
compiler/rustc_codegen_cranelift/src/toolchain.rs
@@ -7,7 +7,7 @@ use rustc_session::Session;
7
8
/// Tries to infer the path of a binary for the target toolchain from the linker name.
9
pub(crate) fn get_toolchain_binary(sess: &Session, tool: &str) -> PathBuf {
10
- let (mut linker, _linker_flavor) = linker_and_flavor(sess);
+ let (mut linker, _linker_flavor) = linker_and_flavor(sess, false);
11
let linker_file_name =
12
linker.file_name().unwrap().to_str().expect("linker filename should be valid UTF-8");
13
0 commit comments