mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
Merge pull request #19 from danielgranat/9f7559e8df98355ddf66dcbfa6934ee3436a0b06
Stumbled upon this problem with version check with python 2.7.1+
This commit is contained in:
commit
162582b285
1 changed files with 6 additions and 3 deletions
9
Rakefile
9
Rakefile
|
@ -61,10 +61,13 @@ task :compile, [:version] do |t, options|
|
|||
|
||||
print "Checking for Python..."
|
||||
version = `python --version 2>&1`
|
||||
version_number = version.split.last.match("[0-9.]+")[0]
|
||||
crash "Python not found!" if version.split.first != "Python"
|
||||
crash "Python 3.x is unsupported by V8!" if Gem::Version.new(version.split.last) >= Gem::Version.new(3)
|
||||
crash "Python 2.4+ is required by V8!" if Gem::Version.new(version.split.last) < Gem::Version.new("2.4")
|
||||
puts version.split.last
|
||||
crash "Python 3.x is unsupported by V8!" if
|
||||
Gem::Version.new(version_number) >=
|
||||
Gem::Version.new(3)
|
||||
crash "Python 2.4+ is required by V8!" if Gem::Version.new(version_number) < Gem::Version.new("2.4")
|
||||
puts version_number
|
||||
end
|
||||
|
||||
puts "Compiling V8 (#{options.version})..."
|
||||
|
|
Loading…
Add table
Reference in a new issue