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/linux_i386
6
#
7
# Contents:     GCC 32bit support
8
#
9
# Version   Who     Date        Description
10
#           APY     03/11/00    Created
11
#                   19/05/04    --OSTarget specification
12
###############################################################################
13
#
14
 
15
Linuxi386Init();
16
 
17
sub Linuxi386Init
18
{
19
#   Unix platform definitions
20
#
21
    $HOST_KERNEL    = "LINUX";
22
    $HOST_CPU       = "I386";
23
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
24
    $HOST_FAM       = "LINUX_I386"      if ( $HOST_FAM eq "" );
25
 
26
#   Toolset and generic platforms
27
#
28
    Toolset( '*', 'gcc.pl', '--Target=Linux i386', '--CrossAlias=i386-unknown-linux-gcc' );
29
    PlatformDefines( "linux_i386.def" );
30
    PlatformRequire( "unix" );
31
}
32
 
33
 
34