Subversion Repositories DevTools

Rev

Details | 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/linux86
6
#
7
# Contents:     GCC 32bit support
8
#
9
# Revision History:
10
#   03/11/00  APY   Created
11
###############################################################################
12
#
13
 
14
Linux86Init();
15
 
16
sub Linux86Init
17
{
18
    Toolset( '*', 'gcc.pl' );            #GCC C/C++
19
    PlatformDefines( "linux86.def" );
20
 
21
 
22
    #   Unix platform definitions
23
    #
24
    $HOST_KERNEL = '';
25
    $HOST_PROD  = $ScmPlatform;
26
    $HOST_FAM   = "LINUX";
27
    $HOST_CPU   = "\$(GBE_MACHTYPE)";
28
 
29
    PlatformRequire( "unix" );
30
}
31
 
32
 
33