Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
05c8ef8
deps: update V8 to 8.6.395
targos Oct 15, 2020
a57e39a
build: reset embedder string to "-node.0"
targos Oct 15, 2020
973e411
src: update NODE_MODULE_VERSION to 88
targos Sep 29, 2020
44b5689
deps: V8: un-cherry-pick bd019bd
refack Mar 27, 2019
225ebf5
deps: patch V8 to run on older XCode versions
ryzokuken Sep 14, 2019
d7a9747
deps: V8: patch register-arm64.h
refack May 22, 2019
96c79fa
deps: V8: forward declaration of `Rtl*FunctionTable`
refack May 22, 2019
d92466a
deps: make v8.h compatible with VS2015
joaocgreis Nov 1, 2019
e04e842
deps: V8: silence irrelevant warnings
targos Mar 27, 2019
474690c
deps: patch V8 to run on Xcode 8
mmarchini Mar 10, 2020
8d57783
deps: update V8 postmortem metadata script
cjihrig Jul 4, 2020
b234368
deps: update V8 postmortem metadata script
cjihrig Sep 15, 2020
e3c8ba9
deps: fix platform-embedded-file-writer-win for ARM64
targos Oct 14, 2020
8f6c837
deps: fix V8 build issue with inline methods
gengjiawen Oct 14, 2020
956f949
deps: V8: cherry-pick 6be2f6e26e8d
targos Sep 29, 2020
3c11c7e
deps: V8: cherry-pick 717543bbf0ef
targos Sep 29, 2020
8e7f284
deps: V8: cherry-pick d76abfed3512
targos Oct 14, 2020
d06bb7d
deps: V8: cherry-pick 3176bfd447a9
addaleax Oct 12, 2020
67e998e
tools: update V8 gypfiles for 8.5
ryzokuken May 12, 2020
dbd425a
test: update tests after increasing typed array size to 4GB
ktran Jun 18, 2020
788046f
wasi: drop --experimental-wasm-bigint requirement
cjihrig Jul 22, 2020
b2ae455
tools: update V8 gypfiles for 8.6
ryzokuken Jul 4, 2020
2a0b88c
src: Implement NodePlatform::PostJob
backes Jul 21, 2020
725b750
process: update v8 fast api calls usage
MayaLekova Jul 23, 2020
ecc85de
tools: disable x86 safe exception handlers in V8
targos Oct 14, 2020
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deps: V8: cherry-pick 717543bbf0ef
Original commit message:

    [zone]: fix build on msvc in wasm module

    Fix: nodejs/node-v8#172
    Change-Id: Ibdbee76470ec8a4c20af7650dc5fac4602873430
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2414688
    Reviewed-by: Jakob Kummerow <[email protected]>
    Commit-Queue: Jakob Kummerow <[email protected]>
    Cr-Commit-Position: refs/heads/master@{#70109}

Refs: v8/v8@717543b
  • Loading branch information
targos committed Oct 17, 2020
commit 3c11c7e004de72c8559efc60e7dcf92ef4e3092d
2 changes: 1 addition & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.12',
'v8_embedder_string': '-node.13',

##### V8 defaults for Node.js #####

Expand Down
2 changes: 2 additions & 0 deletions deps/v8/src/wasm/wasm-module-builder.h
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,8 @@ class V8_EXPORT_PRIVATE WasmModuleBuilder : public ZoneObject {
// Indirect functions must be allocated before adding extra tables.
bool allocating_indirect_functions_allowed_ = true;
#endif

DISALLOW_COPY_AND_ASSIGN(WasmModuleBuilder);
};

inline FunctionSig* WasmFunctionBuilder::signature() {
Expand Down