Subversion Repositories DevTools

Rev

Rev 5709 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
6177 dpurdie 3
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
227 dpurdie 4
#
5
# File:         PLATFORM/Solaris_sparc
6
#
7
# Contents:     Solaris Sparc Support
8
#
9
# Version   Who     Date        Description
10
#           APY     10/03/04    Created
11
#
12
###############################################################################
13
#
14
 
15
SolarisSparcInit();
16
 
17
sub SolarisSparcInit
18
{
19
    $HOST_KERNEL    = "solaris";
20
    $HOST_CPU       = "sparc";
21
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
22
    $HOST_FAM       = "solaris_sparc"   if ( $HOST_FAM eq "" );
23
 
24
    Toolset( '*', 'gcc.pl', '--Target=SunOS sparc' );
25
    PlatformDefines( "solaris_sparc.def" );
26
    PlatformRequire( "unix" );
27
}