Skip to content
This repository has been archived by the owner on Dec 4, 2023. It is now read-only.

Commit

Permalink
Use last good version before build error
Browse files Browse the repository at this point in the history
Using bisect, I was able to find that the build error was introduced in
v8/v8@5bbca54,
so let's use the version before that one while we wait for upstream to
merge the patch (https://bugs.chromium.org/p/v8/issues/detail?id=10708)
  • Loading branch information
nightpool committed Jul 17, 2020
1 parent 5c7c6e3 commit c46dcba
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### v8.4.255.0 - 2020-07-15

* Update upstream v8 version to 8.4.255.0

### v7.3.495.0 - 2020-04-14

* Update upstream v8 version to 7.3.495.0
Expand Down
4 changes: 2 additions & 2 deletions ext/libv8/builder.rb
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ def setup_python!
# then this will be 4.5.95
#
def source_version
Libv8::V8_MINOR_VERSION
Libv8::VERSION.gsub(/\.[^.]+$/, '')
end

##
Expand All @@ -84,7 +84,7 @@ def setup_build_deps!

Dir.chdir('v8') do
system 'git fetch origin'
unless system "git checkout branch-heads/#{source_version}"
unless system "git checkout #{source_version}"
fail "unable to checkout source for v8 #{source_version}"
end
system "gclient sync" or fail "could not sync v8 build dependencies"
Expand Down
3 changes: 1 addition & 2 deletions lib/libv8/version.rb
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
module Libv8
V8_MINOR_VERSION = "8.4"
VERSION = "8.4.371.0"
VERSION = "8.4.255.0"
end
2 changes: 1 addition & 1 deletion vendor/depot_tools
Submodule depot_tools updated from 3229d9 to 9d9199

0 comments on commit c46dcba

Please sign in to comment.