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 2ded197 commit 23522e4Copy full SHA for 23522e4
src/librustc_codegen_ssa/back/linker.rs
@@ -404,7 +404,8 @@ impl<'a> Linker for GccLinker<'a> {
404
// Symbol visibility takes care of this for the WebAssembly.
405
// Additionally the only known linker, LLD, doesn't support the script
406
// arguments just yet
407
- if self.sess.target.target.arch == "wasm32" {
+ if self.sess.target.target.arch == "wasm32" ||
408
+ self.sess.target.target.target_os == "uwp" {
409
return;
410
}
411
0 commit comments