Sha256: d150588b15c1fe78978bc648ce4ccf57c0df47aa7b3fc37bfe82d9610aaebae0

Contents?: true

Size: 351 Bytes

Versions: 20

Compression:

Stored size: 351 Bytes

Contents

module Libv8
  module Compiler
    class Clang < GenericCompiler
      CLANG_VERSION_REGEXP = /clang version (\d+\.\d+(\.\d+)*) \(/i

      def name
        'clang'
      end

      def compatible?
        version >= '3.1' unless version.nil?
      end

      private

      def version_regexp
        CLANG_VERSION_REGEXP
      end
    end
  end
end

Version data entries

20 entries across 20 versions & 2 rubygems

Version Path
libv8-3.16.14.19.1 ext/libv8/compiler/clang.rb
libv8-3.16.14.19 ext/libv8/compiler/clang.rb
libv8-3.16.14.18 ext/libv8/compiler/clang.rb
arcabouco-0.2.13 vendor/bundle/gems/libv8-3.16.14.17/ext/libv8/compiler/clang.rb
libv8-3.16.14.17 ext/libv8/compiler/clang.rb
libv8-3.16.14.16 ext/libv8/compiler/clang.rb
libv8-5.1.281.59.1 ext/libv8/compiler/clang.rb
libv8-5.1.281.59.0 ext/libv8/compiler/clang.rb
libv8-5.1.281.59.0beta3 ext/libv8/compiler/clang.rb
libv8-5.0.71.48.3 ext/libv8/compiler/clang.rb
libv8-5.0.71.48.2 ext/libv8/compiler/clang.rb
libv8-5.0.71.48.0beta2 ext/libv8/compiler/clang.rb
libv8-3.16.14.15 ext/libv8/compiler/clang.rb
libv8-3.16.14.14 ext/libv8/compiler/clang.rb
libv8-4.5.95.5 ext/libv8/compiler/clang.rb
libv8-4.5.95.4 ext/libv8/compiler/clang.rb
libv8-4.5.95.3 ext/libv8/compiler/clang.rb
libv8-4.5.95.2 ext/libv8/compiler/clang.rb
libv8-4.5.95.1 ext/libv8/compiler/clang.rb
libv8-4.5.95.0 ext/libv8/compiler/clang.rb