diff --git a/Rakefile b/Rakefile index e990c79..ac58a62 100644 --- a/Rakefile +++ b/Rakefile @@ -12,8 +12,7 @@ task :checkout do sh "git submodule update --init" Dir.chdir(V8_Source) do sh "git fetch" - # sh "git checkout #{V8_Version}" - sh "git checkout master" + sh "git checkout #{V8_Version}" sh "make dependencies" end end @@ -29,7 +28,7 @@ task :manual_compile do require File.expand_path '../ext/libv8/arch.rb', __FILE__ include Libv8::Arch Dir.chdir(V8_Source) do - sh "make #{libv8_arch}.release GYP_GENERATORS=make" + sh "make #{libv8_arch}.release" end end diff --git a/ext/libv8/extconf.rb b/ext/libv8/extconf.rb index f6816a0..59a386c 100644 --- a/ext/libv8/extconf.rb +++ b/ext/libv8/extconf.rb @@ -5,5 +5,5 @@ require File.expand_path '../arch.rb', __FILE__ include Libv8::Arch Dir.chdir(File.expand_path '../../../vendor/v8', __FILE__) do - puts `make #{libv8_arch}.release GYP_GENERATORS=make` + puts `make #{libv8_arch}.release` end diff --git a/lib/libv8/version.rb b/lib/libv8/version.rb index 5eeec14..f25aae4 100644 --- a/lib/libv8/version.rb +++ b/lib/libv8/version.rb @@ -1,3 +1,3 @@ module Libv8 - VERSION = "3.10.7.0" + VERSION = "3.10.8.0" end diff --git a/vendor/v8 b/vendor/v8 index 09a5564..e675a0f 160000 --- a/vendor/v8 +++ b/vendor/v8 @@ -1 +1 @@ -Subproject commit 09a5564086c71bc40bcfea0e102b3a3f31fc8180 +Subproject commit e675a0f1eabf3b3d21d8b18294c73490d830cdd1