Subversion Repositories DevTools

Rev

Rev 5709 | Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
227 dpurdie 1
# -*- mode: perl; indent-width: 4; -*-
2
###############################################################################
3
# Copyright (c) ERG Transit Systems. 1996-2004
4
#
5
# File:         PLATFORM/ARM9TDMI
6
#
7
###############################################################################
8
#
9
 
10
ARM9TDMIInit();
11
 
12
sub ARM9TDMIInit
13
{
14
#   Unix platform definitions
15
#
16
    $HOST_KERNEL    = "LINUX";
17
    $HOST_CPU       = "ARMV9";
18
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
19
    $HOST_FAM       = "LINUX_ARMV9"     if ( $HOST_FAM eq "" );
20
 
21
#   Toolset and generic platforms
22
#
23
    Toolset( '*', 'gcc.pl', '--Target=Linux armv9','--CrossAlias=arm-9tdmi-linux-gnu' ); 
24
    PlatformRequire( "unix" );
25
}
26
 
27