Sha256: 15b1e8c33a7a15f8eeec3fa52f2706578eca65a6e5629577dc1eeb1e367a0db5

Contents?: true

Size: 253 Bytes

Versions: 11

Compression:

Stored size: 253 Bytes

Contents

module Libv8
  module Compiler
    class GCC < GenericCompiler
      VERSION_REGEXP = /gcc version (\d+\.\d+(\.\d+)*)/i

      def name
        'GCC'
      end

      def compatible?
        version > '4.3' and version < '5'
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 2 rubygems

Version Path
libv8-tmpfork-3.16.14.13 ext/libv8/compiler/gcc.rb
libv8-3.16.14.13 ext/libv8/compiler/gcc.rb
libv8-3.16.14.12 ext/libv8/compiler/gcc.rb
libv8-3.16.14.11 ext/libv8/compiler/gcc.rb
libv8-3.16.14.10 ext/libv8/compiler/gcc.rb
libv8-3.16.14.8 ext/libv8/compiler/gcc.rb
libv8-3.16.14.8.rc1 ext/libv8/compiler/gcc.rb
libv8-3.16.14.7 ext/libv8/compiler/gcc.rb
libv8-3.16.14.6 ext/libv8/compiler/gcc.rb
libv8-3.16.14.5 ext/libv8/compiler/gcc.rb
libv8-3.16.14.4 ext/libv8/compiler/gcc.rb