]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - src/ti/ipc/tests/package.bld
Added linux-side executable, libraries and object files to the .gitignore list
[ipc/ipcdev.git] / src / ti / ipc / tests / package.bld
1 /*
2  * Copyright (c) 2012-2013, Texas Instruments Incorporated
3  * All rights reserved.
4  *
5  * Redistribution and use in source and binary forms, with or without
6  * modification, are permitted provided that the following conditions
7  * are met:
8  *
9  * *  Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions and the following disclaimer.
11  *
12  * *  Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  *
16  * *  Neither the name of Texas Instruments Incorporated nor the names of
17  *    its contributors may be used to endorse or promote products derived
18  *    from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
21  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22  * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
23  * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
24  * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
25  * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
26  * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
27  * OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
28  * WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
29  * OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
30  * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 /*
33  *  ======== package.bld ========
34  *
35  */
37 var Build = xdc.useModule('xdc.bld.BuildEnvironment');
38 var Pkg = xdc.useModule('xdc.bld.PackageContents');
40 /* when constructing a release, release everything */
41 Pkg.attrs.exportAll = true;
43 /* Uncomment this to build the app with debug support */
44 Pkg.attrs.profile = "debug";
46 /* bin/ is a generated directory that 'xdc clean' should remove */
47 Pkg.generatedFiles.$add("bin/");
49 /* define the platform instances we support - currently only OMAPL138 */
50 var evmOMAPL138_ExtMemMap = {
51     DDR: {
52         name: "DDR",
53         base: 0xc3100000,
54         len:  0x00800000,
55         space: "code/data"
56     }
57 };
59 Build.platformTable["ti.platforms.evmOMAPL138:DSP"] = {
60     externalMemoryMap: [
61         [ "DDR", evmOMAPL138_ExtMemMap.DDR ]
62     ],
63     codeMemory: "DDR",
64     dataMemory: "DDR",
65     stackMemory: "DDR",
66     l2Mode: "32k"
67 };
69 for (var i = 0; i < Build.targets.length; i++) {
70     var targ = Build.targets[i];
72 //    print("building for target " + targ.name + " ...");
74     /* currently only build for OMAPL138, Appleton and Kepler */
75     if (!((targ.isa == "674") || (targ.isa == "66"))) {
76         continue;
77     }
79     /* Platforms were added to targ.platforms[] in config.bld */
80     for (var j = 0; j < targ.platforms.length; j++) {
81         var platform = targ.platforms[j];
83         /* currently only build for OMAPL138, Appleton and Kepler */
84         if (!((platform.match(/^ti\.platforms\.evm6614\:DSP/)) ||
85               (platform.match(/^ti\.platforms\.simKepler/)) ||
86               (platform.match(/^ti\.platforms\.evmOMAPL138\:DSP/)))) {
87              continue;
88         }
90         print("  platform:  " + platform);
91         // name = bin/platform/name.x+suffix
92         var name = "bin/" +
93                 // replace all ':' and '.' with '_' in platform name
94                 platform.replace(/\:/g, "_").replace(/\./g, "_");
96         /* Only build this for our multicore platforms: */
97         if (platform.match(/^ti\.platforms\.simKepler/) ||
98             platform.match(/^ti\.platforms\.evm6614\:DSP/)) {
99                 Pkg.addExecutable(name + "/messageq_multicore",targ,platform, {
100                     cfgScript: "messageq_multicore",
101                     //defs: "-D TCI6614_v33"
102                     //defs: "-D TCI6614"
103                     defs: "-D TCI6638"
104                 }).addObjects(["messageq_multicore.c"]);
106                 Pkg.addExecutable(name + "/dual_transports",targ,platform, {
107                     cfgScript: "dual_transports",
108                 }).addObjects(["dual_transports.c"]);
109         }
112         Pkg.addExecutable(name + "/messageq_multi", targ, platform, {
113             cfgScript: "rpmsg_transport",
114             defs: "-D BENCHMARK "
115         }).addObjects(["messageq_multi.c"]);
117         Pkg.addExecutable(name + "/messageq_single", targ, platform, {
118             cfgScript: "rpmsg_transport",
119             defs: "-D BENCHMARK "
120         }).addObjects(["messageq_single.c"]);
122         if (platform.match(/^ti\.platforms\.evmOMAPL138\:DSP/)) {
123                 Pkg.addExecutable(name + "/nano_test", targ, platform, {
124                     cfgScript: "rpmsg_transport"
125                 }).addObjects(["nano_test.c"]);
126         }
127     }