mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-25 00:29:14 -05:00
Upgrade V8 to 8.6.337 (#430)
This commit is contained in:
parent
5f493585fc
commit
24fa76aaaa
10 changed files with 15 additions and 14 deletions
|
@ -1,6 +1,6 @@
|
|||
# Rusty V8 Binding
|
||||
|
||||
V8 Version: 8.5.216, 2020-06-25
|
||||
V8 Version: 8.6.337, 2020-08-05
|
||||
|
||||
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=master)](https://github.com/denoland/rusty_v8/actions)
|
||||
[![crates](https://img.shields.io/crates/v/rusty_v8.svg)](https://crates.io/crates/rusty_v8)
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit ef3586804494b7e402b6c1791d5dccdf2971afff
|
||||
Subproject commit 23ef5333a357fc7314630ef88b44c3a545881dee
|
2
build
2
build
|
@ -1 +1 @@
|
|||
Subproject commit f503a500c8d6da6c1fb525d445a431c6ff8a37ed
|
||||
Subproject commit f9d174a05aa7588a89616aed121e5f8ca12687ae
|
2
build.rs
2
build.rs
|
@ -149,7 +149,7 @@ fn download_ninja_gn_binaries() {
|
|||
.parent()
|
||||
.unwrap();
|
||||
let bin_dir = target_dir
|
||||
.join("ninja_gn_binaries-20200506")
|
||||
.join("ninja_gn_binaries-20200806")
|
||||
.join(platform());
|
||||
let gn = bin_dir.join("gn");
|
||||
let ninja = bin_dir.join("ninja");
|
||||
|
|
|
@ -1 +1 @@
|
|||
Subproject commit 7c62aff244e3e705ad8c154c706e2aed87201611
|
||||
Subproject commit deee1e0703b6f42c3cd2ba848a988dc54ac02212
|
2
third_party/zlib
vendored
2
third_party/zlib
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 93be846a6cf7826ba2b372ce5c0432b4b94d64ff
|
||||
Subproject commit 7492de9a52f656b070f41968e39a6efa603590d5
|
|
@ -1 +1 @@
|
|||
Subproject commit 62d4c43363c5571ca427cfea4d92d699eb26f72a
|
||||
Subproject commit 8a232eb21c25d1901794b418b8aeaae772e3cd0f
|
|
@ -18,7 +18,7 @@ except ImportError: # For Py3 compatibility
|
|||
from urllib.error import HTTPError, URLError
|
||||
from urllib.request import urlopen
|
||||
|
||||
URL = "https://github.com/denoland/ninja_gn_binaries/archive/20200506.tar.gz"
|
||||
URL = "https://github.com/denoland/ninja_gn_binaries/archive/20200806.tar.gz"
|
||||
DIR = None
|
||||
|
||||
|
||||
|
|
|
@ -1,15 +1,16 @@
|
|||
# WARNING: This is not an automated tool! This is just some commands to copy and
|
||||
# paste manually to upgrade V8.
|
||||
|
||||
export BRANCH=20200626_rusty_v8
|
||||
export COMMITDATE=2020-06-25T12:06:47.000Z
|
||||
export BRANCH=20200806_rusty_v8
|
||||
export COMMITDATE=2020-08-05T17:03:41.000Z
|
||||
|
||||
git submodule update -f
|
||||
git submodule foreach 'git remote rm upstream; true' &&
|
||||
git -C build remote add upstream https://chromium.googlesource.com/chromium/src/build &&
|
||||
git -C buildtools remote add upstream https://chromium.googlesource.com/chromium/src/buildtools &&
|
||||
git submodule foreach 'git remote add upstream `git remote get-url origin`; true' &&
|
||||
git submodule foreach 'git remote update' &&
|
||||
git submodule foreach 'export SHA=`git log upstream/master -n1 --until=$COMMITDATE --pretty=%H` && git merge $SHA -m "Merge commit $SHA from `git remote get-url upstream`"'
|
||||
git submodule foreach '[ -f ./include/v8.h ] || (git remote add upstream `git remote get-url origin`; true)' &&
|
||||
git submodule foreach '[ -f ./include/v8.h ] || git remote update' &&
|
||||
git submodule foreach '[ -f ./include/v8.h ] || (export SHA=`git log upstream/master -n1 --until=$COMMITDATE --pretty=%H` && git merge $SHA -m "Merge commit $SHA from `git remote get-url upstream`")'
|
||||
|
||||
git -C build push git@github.com:denoland/chromium_build HEAD:refs/heads/$BRANCH
|
||||
git -C buildtools push git@github.com:denoland/chromium_buildtools HEAD:refs/heads/$BRANCH
|
||||
|
|
2
v8
2
v8
|
@ -1 +1 @@
|
|||
Subproject commit fb20b5d83e381586c7b16fc7aad554eaa5432416
|
||||
Subproject commit 4f52dde736e657ac01cf74a6cdc38c752f9a5dae
|
Loading…
Reference in a new issue