class MxxRu::Cpp::Toolsets::IccWin

Toolset implementation for Intel C++ Compiler for Windows.

Public Class Methods

new( a_name = "icc_win" ) click to toggle source
Calls superclass method MxxRu::Cpp::Toolsets::Vc8Family::new
# File lib/mxx_ru/cpp/toolsets/icc_win.rb, line 39
def initialize( a_name = "icc_win" )
  super( a_name )
end

Public Instance Methods

compiler_name() click to toggle source
# File lib/mxx_ru/cpp/toolsets/icc_win.rb, line 43
def compiler_name
  return tag( COMPILER_NAME_TAG, "icl" )
end
librarian_name() click to toggle source

Returns librarian name.

# File lib/mxx_ru/cpp/toolsets/icc_win.rb, line 53
def librarian_name
  return tag( LIBRARIAN_NAME_TAG, "xilib" )
end
linker_name() click to toggle source

Returns linker name.

# File lib/mxx_ru/cpp/toolsets/icc_win.rb, line 48
def linker_name
  return tag( LINKER_NAME_TAG, "xilink" )
end