Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5525 dpurdie 1
###############################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
#
4
# File:         PLATFORM/SK20V41
5
#
6
# Contents:     SK20V41 support
7
#               This is the same as SK20,--Version=4.1.0.0, but this one is included
8
#               in the DEVLINUX alias.
9
#
10
###############################################################################
11
#
12
 
13
SK20V41Init();
14
 
15
sub SK20V41Init
16
{
17
 
18
#   Unix platform definitions
19
#
20
    $HOST_KERNEL    = "LINUX";
21
    $HOST_CPU       = 'armunknown';
22
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
23
    $HOST_FAM       = "LINUX_ARM"       if ( $HOST_FAM eq "" );
24
 
25
#
26
#   Toolset and generic platforms
27
 
28
    Toolset( '*', 'gcc.pl', '--Target=SK20 gnueabi 4.1.0.0', '--CrossAlias=arm-iwmmxt-linux-gnueabi' );
29
    PlatformRequire( "unix" );
30
}
31