Subversion Repositories DevTools

Rev

Rev 5708 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
5708 dpurdie 1
###############################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
#
4
# File:         PLATFORM/VIPER2
5
#
6
# This file is used within makelib to configure the toolset
7
# It is not used when processing the build.pl file
8
#
9
###############################################################################
10
#
11
 
12
VIPER2Init();
13
 
14
sub VIPER2Init
15
{
16
#   Unix platform definitions
17
#
18
    $HOST_KERNEL    = "LINUX";
19
    $HOST_CPU       = "powerpc";
20
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
21
    $HOST_FAM       = "LINUX_POWERPC"   if ( $HOST_FAM eq "" );
22
 
23
#   Toolset and generic platforms
24
#
25
    Toolset( '*', 'gcc.pl', '--Target=Linux 603e','--CrossAlias=powerpc-603e-linux-gnu-v2' );
26
    PlatformRequire( "unix" );
27
}
28
 
29