class MxxRu::Cpp::Toolsets::GccSparcSolaris

Toolset implemetation for GCC port on SPARC Solaris.

Public Class Methods

new( a_name = "gcc" ) click to toggle source
Calls superclass method
# File lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb, line 38
def initialize( a_name = "gcc" )
  super( a_name )

  setup_tag( GCC_PORT_TAG, GCC_PORT_UNIX )
  setup_tag( "host_os", "unix" )
  setup_tag( "target_os", "unix" )
  setup_tag( "unix_port", "solaris" )
  setup_tag( "arch", "sparc" )
end

Public Instance Methods

setup_mandatory_options( target ) click to toggle source
Calls superclass method
# File lib/mxx_ru/cpp/toolsets/gcc_sparc_solaris.rb, line 48
def setup_mandatory_options( target )
  super( target )

  target.linker_option( "-L/usr/lib" )
end