Don't export table by default in wasm

This commit is contained in:
Sergey Pepyakin 2019-01-23 15:05:39 +01:00
parent 6bba352cad
commit 0db2587a1c

View file

@ -911,9 +911,6 @@ impl<'a> WasmLd<'a> {
// For now we just never have an entry symbol
cmd.arg("--no-entry");
// Make the default table accessible
cmd.arg("--export-table");
// Rust code should never have warnings, and warnings are often
// indicative of bugs, let's prevent them.
cmd.arg("--fatal-warnings");