Rev 7040 | Blame | Compare with Previous | Last modification | View Log | RSS feed
################################################################################ COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.## File: PLATFORM/UBUNTU16_INSTRUMENT## Contents: GCC 5.4.0 64bit support#################################################################################Ubuntu16Init();sub Ubuntu16Init{# 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=Ubuntu16', '--CrossAlias=x86_64-linux-gnu-5.4', '--UseGcov', '--LcovExplicitBranch', '--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);}