Subversion Repositories DevTools

Rev

Rev 7040 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
6133 dpurdie 1
###############################################################################
6177 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
6133 dpurdie 3
#
4
# File:         PLATFORM/UBUNTU16_INSTRUMENT
5
#
6
# Contents:     GCC 5.4.0 64bit support
7
#
8
###############################################################################
9
#
10
 
11
Ubuntu16Init();
12
 
13
sub Ubuntu16Init
14
{
15
#   Unix platform definitions
16
#
17
    $HOST_KERNEL    = "LINUX";
18
    $HOST_CPU       = "X86_64";
19
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
20
    $HOST_FAM       = "LINUX_X86_64"    if ( $HOST_FAM eq "" );
21
 
22
#   Toolset and generic platforms
23
#
7045 dpurdie 24
    Toolset( '*', 'gcc.pl', '--Target=Ubuntu16', '--CrossAlias=x86_64-linux-gnu-5.4', '--UseGcov', '--LcovExplicitBranch', '--UseCppcheck' );
6133 dpurdie 25
    PlatformRequire( "unix" );
26
 
27
#
28
#   Indicate that debian packages should be created as directly deployable
29
#   They will be placed in the root directory of the target package and will have a P/D mangled 
30
#   into the name. This is in keeping with all other directly deplayable installers
31
#
32
    SetGlobalOption('DEBIAN_PACKAGE_DEPLOYABLE', 1);
33
 
34
}
35
 
36
 
37