Skip to content

Commit

Permalink
cleanup: enable wasm gc
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed May 7, 2024
1 parent ed050b8 commit 8376d6a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion runtime/src/plugin.rs
Original file line number Diff line number Diff line change
Expand Up @@ -239,7 +239,8 @@ impl Plugin {
.coredump_on_trap(debug_options.coredump.is_some())
.profiler(debug_options.profiling_strategy)
.wasm_tail_call(true)
.wasm_function_references(true);
.wasm_function_references(true)
.wasm_gc(true);

match cache_dir {
Some(None) => (),
Expand Down

0 comments on commit 8376d6a

Please sign in to comment.