Sha256: c4952c2ab90b36c84fe8e680d1faacf7d6dbc6475378338d7d77f24cdb9f7640

Contents?: true

Size: 367 Bytes

Versions: 30

Compression:

Stored size: 367 Bytes

Contents

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

      def name
        'clang'
      end

      private

      def required_version
        REQUIRED_VERSION
      end

      def version_regexp
        CLANG_VERSION_REGEXP
      end
    end
  end
end

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
libv8-6.3.292.48.1 ext/libv8/compiler/clang.rb
libv8-6.3.292.48.0 ext/libv8/compiler/clang.rb
libv8-6.3.292.48.0beta2 ext/libv8/compiler/clang.rb
libv8-6.3.292.48.0beta1 ext/libv8/compiler/clang.rb
libv8-6.2.414.42.1 ext/libv8/compiler/clang.rb
libv8-6.2.414.42.0 ext/libv8/compiler/clang.rb
libv8-6.2.414.42.0beta1 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.3 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.2 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.1 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.0 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.0beta2 ext/libv8/compiler/clang.rb
libv8-6.0.286.54.0beta1 ext/libv8/compiler/clang.rb
libv8-6.0.286.44.0beta1 ext/libv8/compiler/clang.rb
libv8-5.9.211.38.1 ext/libv8/compiler/clang.rb
libv8-5.9.211.38.0 ext/libv8/compiler/clang.rb
libv8-5.9.211.38.0beta0 ext/libv8/compiler/clang.rb
libv8-5.7.492.65.1 ext/libv8/compiler/clang.rb
libv8-5.7.492.65.0 ext/libv8/compiler/clang.rb
libv8-5.7.492.65.0beta1 ext/libv8/compiler/clang.rb