diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-08-23 14:51:04 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-23 14:51:04 +0200 |
commit | 86ef743c0fc266d4e6d86fd33da3f0ee983b4f19 (patch) | |
tree | 24d29c71a858c16d444568c9840ddfd800654615 /core/runtime.rs | |
parent | 24f7f3fda984e7226b5858085a7ed1c53ab081e0 (diff) |
chore: upgrade rusty_v8 to v0.49.0 (#15547)
Diffstat (limited to 'core/runtime.rs')
-rw-r--r-- | core/runtime.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/core/runtime.rs b/core/runtime.rs index 7cb566712..50c108f33 100644 --- a/core/runtime.rs +++ b/core/runtime.rs @@ -233,6 +233,9 @@ fn v8_init( " --harmony-import-assertions", " --no-validate-asm", " --turbo_fast_api_calls", + // This flag prevents "unresolved external reference" panic during + // build, which started happening in V8 10.6 + " --noexperimental-async-stack-tagging-api", ); if predictable { |