class MxxRu::Cpp::Toolsets::GccLinux
Toolset
implemetation for GCC compiler for Linux.
Public Class Methods
new( a_name = "gcc" )
click to toggle source
Calls superclass method
# File lib/mxx_ru/cpp/toolsets/gcc_linux.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", "linux" ) end
Public Instance Methods
setup_mandatory_options( target )
click to toggle source
Calls superclass method
# File lib/mxx_ru/cpp/toolsets/gcc_linux.rb, line 47 def setup_mandatory_options( target ) super( target ) #target.linker_option( "-L/usr/lib" ) end