mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
no need to explicitly specifiy make generator
This commit is contained in:
parent
e3351e5e8e
commit
bffcb98b35
4 changed files with 5 additions and 6 deletions
5
Rakefile
5
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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
module Libv8
|
||||
VERSION = "3.10.7.0"
|
||||
VERSION = "3.10.8.0"
|
||||
end
|
||||
|
|
2
vendor/v8
vendored
2
vendor/v8
vendored
|
@ -1 +1 @@
|
|||
Subproject commit 09a5564086c71bc40bcfea0e102b3a3f31fc8180
|
||||
Subproject commit e675a0f1eabf3b3d21d8b18294c73490d830cdd1
|
Loading…
Reference in a new issue