]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - processor-sdk/pdk.git/blob - packages/ti/transport/tci6614/ipc/srio/transports/config.bld
transport: add to PDK
[processor-sdk/pdk.git] / packages / ti / transport / tci6614 / ipc / srio / transports / config.bld
1 /******************************************************************************
2  * FILE PURPOSE: Build configuration Script for the SRIO Transport
3  ******************************************************************************
4  * FILE NAME: config.bld
5  *
6  * DESCRIPTION: 
7  *  This file contains the build configuration script for SRIO Transport 
8  *  and is responsible for configuration of the paths for the various tools
9  *  required to build SRIO Transport.
10  *
11  * Copyright (C) 2011, Texas Instruments, Inc.
12  *****************************************************************************/
14 /* Get the Tools Base directory from the Environment Variable. */
15 var toolsBaseDir = java.lang.System.getenv("XDCCGROOT");
17 /* C66 ELF compiler configuration for Little Endian Mode. */
18 var C66LE          = xdc.useModule('ti.targets.elf.C66');
19 C66LE.rootDir       = toolsBaseDir;
20 C66LE.ccOpts.prefix  = "-mo -o3 -q -k -eo.o";
22 /* C66 ELF compiler configuration for Big Endian Mode. */
23 var C66BE          = xdc.useModule('ti.targets.elf.C66_big_endian');
24 C66BE.rootDir       = toolsBaseDir;
25 C66BE.ccOpts.prefix  = "-mo -o3 -q -k -eo.o -DBIGENDIAN";
27 /* List all the build targets here. */
28 Build.targets = [ C66LE, C66BE ];