Subversion Repositories DevTools

Rev

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

Rev Author Line No. Line
4814 dpurdie 1
###############################################################################
6177 dpurdie 2
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
4814 dpurdie 3
#
4
# File:         PLATFORM/UBUNTU14
5
#
6
# Contents:     GCC 4.8.2 64bit support
7
#
8
###############################################################################
9
#
10
 
11
Ubuntu14Init();
12
 
13
sub Ubuntu14Init
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
#
24
    Toolset( '*', 'gcc.pl', '--Target=Ubuntu14', '--CrossAlias=x86_64-linux-gnu', '--UseCppcheck' );
25
    PlatformRequire( "unix" );
4902 dpurdie 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
 
4814 dpurdie 34
}
35
 
36
 
37