Skip to content

Commit a35c454

Browse files
committed
this is what we do
1 parent 1dd7fce commit a35c454

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

wasm_anon/build.zig

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -119,8 +119,8 @@ pub fn build(b: *std.Build) void {
119119
// .{ "loop", 0, null },
120120
.{ "conversions", 6, null },
121121
.{ "memory", 0, 1 },
122-
.{ "memory_copy", 0, null },
123-
.{ "memory_fill", 0, null },
122+
.{ "bulk-memory/memory_copy", 0, null },
123+
.{ "bulk-memory/memory_fill", 0, null },
124124
.{ "load", 0, null },
125125
.{ "store", 0, null },
126126
.{ "call", 2, null },

wasm_anon/src/wast_runner.zig

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -558,7 +558,7 @@ const Tokenizer = struct {
558558
};
559559

560560
fn wat2wasm(source: []const u8, allocator: std.mem.Allocator) ![]u8 {
561-
const argv = &[_][]const u8{ "wat2wasm", "-", "--output=-" };
561+
const argv = &[_][]const u8{ "wat2wasm", "--enable-all", "-", "--output=-" };
562562

563563
const Child = std.process.Child;
564564
var child: Child = .init(argv, allocator);

0 commit comments

Comments
 (0)