break --subsystem=x into 2 args; closer to former presumably known-good incantation
This commit is contained in:
parent
22d0ab0bc3
commit
296a179b1c
1 changed files with 2 additions and 1 deletions
|
@ -449,7 +449,8 @@ impl<'a> Linker for GccLinker<'a> {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn subsystem(&mut self, subsystem: &str) {
|
fn subsystem(&mut self, subsystem: &str) {
|
||||||
self.linker_arg(&format!("--subsystem={}", subsystem));
|
self.linker_arg("--subsystem");
|
||||||
|
self.linker_arg(&subsystem);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn finalize(&mut self) -> Command {
|
fn finalize(&mut self) -> Command {
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue