# -*- mode: perl; indent-width: 4; -*- ############################################################################### # COPYRIGHT - VIX IP PTY LTD ("VIX"). ALL RIGHTS RESERVED. # # File: PLATFORM/DAFBR # # Contents: Minimul support for packages that are machine independent # # Revision History: # 15-Dec-04 DDP Created # ############################################################################### # DAFBRInit(); ############################################################################### # sub DAFBRInit { my( @args ) = @ScmPlatformArgs; # Platform arguments my( $product ); #.. Parse arguments # Ignore unkwnown arguments. They will be processed by the toolset # Debug( "DAFBR(@args)\n" ); foreach $_ ( @args ) { if (/^--product=(.*)/) { $product = $1; } } #... Toolset # Toolset( '*', "DAFBR", "--Endian=Big" ); return 1; }