Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
247 dpurdie 1
###############################################################################
2
# Copyright (c) ERG Transit Systems. 1996-2008
3
#
4
# File:         PLATFORM/PPC_603E
5
#
6
###############################################################################
7
#
8
 
9
PPC_603EInit();
10
 
11
sub PPC_603EInit
12
{
13
#   Unix platform definitions
14
#
15
    $HOST_KERNEL    = "LINUX";
251 dpurdie 16
    $HOST_CPU       = "P603E";
247 dpurdie 17
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
18
    $HOST_FAM       = "LINUX_POWERPC"   if ( $HOST_FAM eq "" );
19
 
20
#   Toolset and generic platforms
21
#
22
    Toolset( '*', 'gcc.pl', '--Target=Linux 603e','--CrossAlias=powerpc-603e-linux-gnu' );
23
    PlatformRequire( "unix" );
24
}
25
 
26