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_i386
6
#
7
# Contents:     GCC 32bit support
8
#
9
# Version   Who     Date        Description
10
#           DDP     06/04/05    Created
11
###############################################################################
12
#
13
 
14
Solarisi386Init();
15
 
16
sub Solarisi386Init
17
{
18
#   Unix platform definitions
19
#
20
    $HOST_KERNEL    = "solaris";
21
    $HOST_CPU       = "i386";
22
    $HOST_PROD      = ""                    if ( $HOST_PROD eq "" );
23
    $HOST_FAM       = "solaris_i386"        if ( $HOST_FAM eq "" );
24
 
25
    Toolset( '*', 'gcc.pl', '--Target=SunOS i386' );
26
    PlatformDefines( "solaris_i386.def" );
27
    PlatformRequire( "unix" );
28
}
29
 
30
 
31