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 a835b48 commit e8325b0Copy full SHA for e8325b0
compiler/rustc_codegen_ssa/src/back/command.rs
@@ -111,6 +111,12 @@ impl Command {
111
LldFlavor::Link => "link",
112
LldFlavor::Ld64 => "darwin",
113
});
114
+ if let LldFlavor::Wasm = flavor {
115
+ // LLVM expects host-specific formatting for @file
116
+ // arguments, but we always generate posix formatted files
117
+ // at this time. Indicate as such.
118
+ c.arg("--rsp-quoting=posix");
119
+ }
120
c
121
}
122
};
0 commit comments