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 22d0ab0 commit 296a179Copy full SHA for 296a179
src/librustc_codegen_llvm/back/linker.rs
@@ -449,7 +449,8 @@ impl<'a> Linker for GccLinker<'a> {
449
}
450
451
fn subsystem(&mut self, subsystem: &str) {
452
- self.linker_arg(&format!("--subsystem={}", subsystem));
+ self.linker_arg("--subsystem");
453
+ self.linker_arg(&subsystem);
454
455
456
fn finalize(&mut self) -> Command {
0 commit comments