Sha256: 4008d168831c2e6bc0f802d18f019b26ffbce96094157cd55628c56a05f1d51e

Contents?: true

Size: 337 Bytes

Versions: 8

Compression:

Stored size: 337 Bytes

Contents

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

      def name
        'GCC'
      end

      def compatible?
        version > '4.3' unless version.nil?
      end

      private

      def version_regexp
        GCC_VERSION_REGEXP
      end
    end
  end
end

Version data entries

8 entries across 8 versions & 2 rubygems

Version Path
libv8-3.16.14.19.1 ext/libv8/compiler/gcc.rb
libv8-3.16.14.19 ext/libv8/compiler/gcc.rb
libv8-3.16.14.18 ext/libv8/compiler/gcc.rb
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/ext/libv8/compiler/gcc.rb
libv8-3.16.14.17 ext/libv8/compiler/gcc.rb
libv8-3.16.14.16 ext/libv8/compiler/gcc.rb
libv8-3.16.14.15 ext/libv8/compiler/gcc.rb
libv8-3.16.14.14 ext/libv8/compiler/gcc.rb