Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
5716 dpurdie 1
###############################################################################
2
# Copyright (c) VIX TECHNOLOGY (AUST) LTD
3
#
4
# File:         PLATFORM/UBUNTU12C11_INSTRUMENT
5
#
6
# Contents:     GCC 5.2.0 32bit support
7
#
8
###############################################################################
9
#
10
 
11
Ubuntu12C11InstrumentInit();
12
 
13
sub Ubuntu12C11InstrumentInit
14
{
15
#   Unix platform definitions
16
#
17
    $HOST_KERNEL    = "LINUX";
18
    $HOST_CPU       = "I386";
19
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
20
    $HOST_FAM       = "LINUX_I386"      if ( $HOST_FAM eq "" );
21
 
22
#   Toolset and generic platforms
23
#
5817 dpurdie 24
    Toolset( '*', 'gcc.pl', '--Target=Ubuntu12C11', '--CrossAlias=i686-vix_ubuntu12_c11-linux-gnu', '--UseGcov', '--UseCppcheck', '--LcovExplicitBranch' );
5716 dpurdie 25
    PlatformRequire( "unix" );
26
}
27
 
28
 
29