Class: Libv8::Compiler::GCC

Inherits:
GenericCompiler show all
Defined in:
ext/libv8/compiler/gcc.rb

Constant Summary collapse

GCC_VERSION_REGEXP =
/gcc version (\d+\.\d+(\.\d+)*)/i
REQUIRED_VERSION =
'4.7'

Constants inherited from GenericCompiler

Libv8::Compiler::GenericCompiler::GENERIC_TARGET_REGEXP, Libv8::Compiler::GenericCompiler::GENERIC_VERSION_REGEXP

Instance Method Summary collapse

Methods inherited from GenericCompiler

#call, #compatible?, #initialize, #target, #to_s, #version

Constructor Details

This class inherits a constructor from Libv8::Compiler::GenericCompiler

Instance Method Details

#nameObject



7
8
9
# File 'ext/libv8/compiler/gcc.rb', line 7

def name
  'GCC'
end