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 b73535f commit c7a39b1Copy full SHA for c7a39b1
src/librustc_codegen_llvm/back/linker.rs
@@ -1079,6 +1079,9 @@ impl<'a> Linker for WasmLd<'a> {
1079
// For now we just never have an entry symbol
1080
self.cmd.arg("--no-entry");
1081
1082
+ // Make the default table accessible
1083
+ self.cmd.arg("--export-table");
1084
+
1085
let mut cmd = Command::new("");
1086
::std::mem::swap(&mut cmd, &mut self.cmd);
1087
cmd
0 commit comments