Subversion Repositories DevTools

Rev

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

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

Rhel7Init();
    
sub Rhel7Init
{
#   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=rhel7', '--CrossAlias=x86_64-redhat-linux-4.8.5', '--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
#
#       PACKAGE_ARCH is set in the toolset
    SetGlobalOption('DEBIAN_PACKAGE_DEPLOYABLE', 1);
    SetGlobalOption('PACKAGE_RELEASE', 'el7');
}