Actually process memory64 feature in CLI (#3197)

I forgot the last step to actually set it in `Config`...
This commit is contained in:
Alex Crichton
2021-08-17 14:31:42 -05:00
committed by GitHub
parent 0642e62f16
commit c6cd1008f8

View File

@@ -363,6 +363,7 @@ impl CommonOptions {
.wasm_multi_value(features.multi_value || self.enable_multi_value || self.enable_all)
.wasm_threads(features.threads || self.enable_threads || self.enable_all)
.wasm_multi_memory(features.multi_memory || self.enable_multi_memory || self.enable_all)
.wasm_memory64(features.memory64 || self.enable_all)
.wasm_module_linking(
features.module_linking || self.enable_module_linking || self.enable_all,
);