Subversion Repositories DevTools

Rev

Rev 391 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 391 Rev 3556
Line 102... Line 102...
102
#
102
#
103
    $::ScmToolsetVersion = "1.0.0";             # our version
103
    $::ScmToolsetVersion = "1.0.0";             # our version
104
    $::ScmToolsetGenerate = 0;                  # GEN generate optional
104
    $::ScmToolsetGenerate = 0;                  # GEN generate optional
105
    $::ScmToolsetProgDependancies = 0;          # handle Prog dependancies myself
105
    $::ScmToolsetProgDependancies = 0;          # handle Prog dependancies myself
106
    $::ScmToolsetSoName = 1;                    # Shared library supports SoName
106
    $::ScmToolsetSoName = 1;                    # Shared library supports SoName
-
 
107
    $::ScmToolsetCompilerPath = 1;              # Exports Compiler path to makefile via SCM_COMPILERPATH
-
 
108
    
107
 
109
 
108
    my $ScmToolTarget = '';
110
    my $ScmToolTarget = '';
109
    my $ScmStudio = '';
111
    my $ScmStudio = '';
110
 
112
 
111
    #
113
    #
Line 227... Line 229...
227
    #
229
    #
228
    #   Allow SPARC and X86 compilation options to differ
230
    #   Allow SPARC and X86 compilation options to differ
229
    #
231
    #
230
    my $isa_sparc = ( $GBE_MACHTYPE =~ m/sparc/i ) ? 1 : 0;
232
    my $isa_sparc = ( $GBE_MACHTYPE =~ m/sparc/i ) ? 1 : 0;
231
    ToolsetDefine ( "ISA_SPARC  = 1" ) if ($isa_sparc);
233
    ToolsetDefine ( "ISA_SPARC  = 1" ) if ($isa_sparc);
-
 
234
 
-
 
235
    #   Required since this toolset advertises: ScmToolsetCompilerPath
-
 
236
    #   Used by shell builder
-
 
237
    #
-
 
238
    PlatformDefine( "SCM_COMPILERPATH   := \$\{SUNWSPRO_SC\}/bin/cc" );
-
 
239
    PlatformDefine( "" );
-
 
240
 
232
}
241
}
233
 
242
 
234
##############################################################################
243
##############################################################################
235
#   ToolsetPreprocess()
244
#   ToolsetPreprocess()
236
#       Process collected data before the makefile is generated
245
#       Process collected data before the makefile is generated