mirror of
https://github.com/rubyjs/libv8
synced 2023-03-27 23:21:48 -04:00
Raise the minimum supported version of GCC to 4.8
See https://code.google.com/p/v8-wiki/wiki/BuildingWithGYP#GCC_+_make for more info
This commit is contained in:
parent
2a545e9ba0
commit
4192cb6704
2 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ module Libv8
|
|||
end
|
||||
|
||||
def compatible?
|
||||
version > '4.3' unless version.nil?
|
||||
version > '4.7' unless version.nil?
|
||||
end
|
||||
|
||||
private
|
||||
|
|
|
@ -19,7 +19,7 @@ module Libv8::Compiler
|
|||
end
|
||||
|
||||
describe '#compatible?' do
|
||||
context 'when GCC\'s version is >= 4.3' do
|
||||
context 'when GCC\'s version is >= 4.8' do
|
||||
it 'returns true' do
|
||||
stub_as_available 'c++', :gcc, '4.9.0'
|
||||
expect(subject).to be_compatible
|
||||
|
|
Loading…
Reference in a new issue