Subversion Repositories DevTools

Rev

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

###############################################################################
# COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.
#
# File:         PLATFORM/UBUNTU14
#
# Contents:     GCC 4.8.2 64bit support
#
###############################################################################
#

Ubuntu14Init();
    
sub Ubuntu14Init
{
#   Unix platform definitions
#
    $HOST_KERNEL    = "LINUX";
    $HOST_CPU       = "X86_64";
    $HOST_PROD      = ""                if ( $HOST_PROD eq "" );
    $HOST_FAM       = "LINUX_X86_64"    if ( $HOST_FAM eq "" );

#   Toolset and generic platforms
#
    Toolset( '*', 'gcc.pl', '--Target=Ubuntu14', '--CrossAlias=x86_64-linux-gnu', '--UseCppcheck' );
    PlatformRequire( "unix" );

#
#   Indicate that debian packages should be created as directly deployable
#   They will be placed in the root directory of the target package and will have a P/D mangled 
#   into the name. This is in keeping with all other directly deplayable installers
#
    SetGlobalOption('DEBIAN_PACKAGE_DEPLOYABLE', 1);

}