Rev 5709 | Blame | Compare with Previous | Last modification | View Log | RSS feed
# -*- mode: perl; indent-width: 4; -*-################################################################################ COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED.## File: PLATFORM/linux_i386## Contents: GCC 32bit support## Version Who Date Description# APY 03/11/00 Created# 19/05/04 --OSTarget specification################################################################################Linuxi386Init();sub Linuxi386Init{# Unix platform definitions#$HOST_KERNEL = "LINUX";$HOST_CPU = "I386";$HOST_PROD = "" if ( $HOST_PROD eq "" );$HOST_FAM = "LINUX_I386" if ( $HOST_FAM eq "" );# Toolset and generic platforms#Toolset( '*', 'gcc.pl', '--Target=Linux i386', '--CrossAlias=i386-unknown-linux-gcc' );PlatformDefines( "linux_i386.def" );PlatformRequire( "unix" );}