electron/patches/v8
Robo 44460e84c0
chore: cherry-pick 0c8b6e41 from v8 (#27672)
* chore: cherry-pick 0c8b6e41 from v8

Backports https://chromium-review.googlesource.com/c/v8/v8/+/2679688

* update patches

Co-authored-by: Electron Bot <electron@github.com>
2021-02-09 09:21:49 -08:00
..
.patches chore: cherry-pick 0c8b6e41 from v8 (#27672) 2021-02-09 09:21:49 -08:00
add_realloc.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
build_gn.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
chore_disallow_copying_cppheapcreateparams.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
dcheck.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
do_not_export_private_v8_symbols_on_windows.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
export_symbols_needed_for_windows_build.patch chore: bump chromium to a264339194bfa02f5ecb3b8cba449 (master) (#27111) 2021-01-12 15:31:23 -08:00
expose_mksnapshot.patch chore: bump chromium to bf3f97675b5d9eade34526ebf730c (master) (#27305) 2021-01-25 08:46:00 -08:00
fix_build_deprecated_attirbute_for_older_msvc_versions.patch chore: bump chromium to 096e5313aaf19dfa0c4710145c34d (master) (#26535) 2020-12-14 10:57:36 -08:00
mac_wasm_work_around_macos_11_2_code_page_decommit_failures.patch chore: cherry-pick 0c8b6e41 from v8 (#27672) 2021-02-09 09:21:49 -08:00
README.md
revert_cleanup_switch_offset_of_to_offsetof_where_possible.patch chore: bump chromium to a264339194bfa02f5ecb3b8cba449 (master) (#27111) 2021-01-12 15:31:23 -08:00
workaround_an_undefined_symbol_error.patch chore: bump chromium to a264339194bfa02f5ecb3b8cba449 (master) (#27111) 2021-01-12 15:31:23 -08:00

Exporting node's patches to v8

$ cd third_party/electron_node
$ CURRENT_NODE_VERSION=vX.Y.Z  # e.g. v10.11.0

# Find the last commit with the message "deps: update V8 to <some version>"
# This commit corresponds to node resetting V8 to its pristine upstream
# state at the stated version.
$ LAST_V8_UPDATE="$(git log --grep='^deps: update V8' --format='%H' -1 deps/v8)"

# This creates a patch file containing all changes in deps/v8 from
# $LAST_V8_UPDATE up to the current node version, formatted in a way that
# it will apply cleanly to the V8 repository (i.e. with `deps/v8`
# stripped off the path and excluding the v8/gypfiles directory, which
# isn't present in V8.
$ git format-patch \
    --relative=deps/v8 \
    $LAST_V8_UPDATE..$CURRENT_NODE_VERSION \
    deps/v8 \
    ':(exclude)deps/v8/gypfiles' \
    --stdout

When upgrading to a new version of node, make sure to match node's patches to v8 by removing all the deps_* patches and re-exporting node's v8 patches using the process above.