diff options
author | Casper Beyer <caspervonb@pm.me> | 2021-04-26 23:54:07 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-26 17:54:07 +0200 |
commit | e4e7d957e8cde899d48878c83f2099b0028dfdef (patch) | |
tree | 23e0503921c4749aab4a0ba08ddaec6b7756f4ba /core | |
parent | 791513d608279796a6a1fd963ea1d5b012699baa (diff) |
feat(core): enable wasm threading support (#10116)
Diffstat (limited to 'core')
-rw-r--r-- | core/runtime.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index da7d6598a..5a0b59776 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -160,6 +160,7 @@ fn v8_init(v8_platform: Option<v8::UniquePtr<v8::Platform>>) { // remove this to make it work asynchronously too. But that requires getting // PumpMessageLoop and RunMicrotasks setup correctly. // See https://github.com/denoland/deno/issues/2544 + " --experimental-wasm-threads", " --no-wasm-async-compilation", " --harmony-top-level-await", " --harmony-import-assertions", |