From c6cd1008f8f3526cbaf22fd8a47c710b5831ab09 Mon Sep 17 00:00:00 2001 From: Alex Crichton Date: Tue, 17 Aug 2021 14:31:42 -0500 Subject: [PATCH] Actually process memory64 feature in CLI (#3197) I forgot the last step to actually set it in `Config`... --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index 6403270ce2..a23509710d 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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, );