We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d6ff46c + 1627ba1 commit d70ae9bCopy full SHA for d70ae9b
src/librustc_codegen_ssa/back/linker.rs
@@ -266,7 +266,7 @@ impl<'a> GccLinker<'a> {
266
if let Some(implib_name) = implib_name {
267
let implib = out_filename.parent().map(|dir| dir.join(&implib_name));
268
if let Some(implib) = implib {
269
- self.linker_arg(&format!("--out-implib,{}", (*implib).to_str().unwrap()));
+ self.linker_arg(&format!("--out-implib={}", (*implib).to_str().unwrap()));
270
}
271
272
0 commit comments