]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - ipc/ipcdev.git/blob - packages/ti/trace/package.bld
trace: Merged omapzoom sysbios-rpmsg version of SysMin for SMP OMAP5.
[ipc/ipcdev.git] / packages / ti / trace / package.bld
1 /*
2  * Copyright (c) 2011-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  */
33 /*
34  *  ======== package.bld ========
35  *
36  */
38 /* explicit references to global objects */
39 var Build = xdc.useModule('xdc.bld.BuildEnvironment');
40 var Pkg = xdc.useModule('xdc.bld.PackageContents');
41 var smpBuild = java.lang.System.getenv("BUILD_SMP");
43 /* clean lib folder */
44 Pkg.generatedFiles.$add("lib/");
45 Pkg.libDir = "package/";
47 /* add custom files to all releases */
48 Pkg.attrs.exportSrc = false;
49 Pkg.attrs.exportCfg = true;
50 Pkg.otherFiles = [
51     "SysMin.h",
52 ];
54 /* list of libraries to build */
55 var libArray = new Array();
56 if (smpBuild == "1") {
57     /* trace library for IPU SMP target */
58     libArray.push(
59         {
60             name: "ti.trace_smp",
61             sources: [
62                 "SysMin.c",
63             ],
64             libAttrs: {
65                 defs: " -DSMP"
66             },
67             isas: [ "v7M" ],
68         }
69     );
70 }
71 else {
72     /* trace library for regular targets */
73     libArray.push(
74         {
75             name: "ti.trace",
76             sources: [
77                 "SysMin.c",
78             ],
79         }
80     );
81 }
83 /* generate the package libraries */
84 /* check if profile specified in XDCARGS */
85 /* XDCARGS="... profile=debug ..." */
86 var cmdlProf = (" " + arguments.join(" ") + " ").match(/ profile=([^ ]+) /);
87 cmdlProf = cmdlProf != null ? cmdlProf[1] : null;
89 /* ==== loop over array of libraries ==== */
90 for (var i = 0; i < libArray.length; i++) {
91     var lib = libArray[i];
93     /* ==== loop over all targets in build array ==== */
94     for (var j = 0; j < Build.targets.length; j++) {
95         var targ = Build.targets[j];
97         /* invoke user supplied target predicate function */
98         if (this.skipTarget != undefined)  {
99             continue;
100         }
102         /* skip target if not compatible with source code */
103         if ("icw" in lib) {
104             var skipTarget = true;
105             var targIsaChain = "/" + targ.getISAChain().join("/") + "/";
106             for (var k = 0; k < lib.icw.length; k++) {
107                 if (targIsaChain.match("/" + lib.icw[k] + "/")) {
108                     skipTarget = false;
109                     break;
110                 }
111             }
112             if (skipTarget) continue;
113         }
115         /* skip target if it does not generate code for the given isa */
116         if ("isas" in lib) {
117             var skipTarget = true;
118             var list = "/" + lib.isas.join("/") + "/";
119             if (list.match("/" + targ.isa + "/")) {
120                 skipTarget = false;
121             }
122             if (skipTarget) continue;
123         }
125         /* ==== loop over all profiles ==== */
126         for (var profile in targ.profiles) {
128             /* skip profile if different than specified on command line */
129             if ((cmdlProf != null) && (profile != cmdlProf)) {
130                 continue;
131             }
133             /* name = lib/profile/name.a+suffix */
134             var name = "lib/" + profile + "/" + lib.name;
136             /* pass along library attributes specified in library array */
137             var libAttrs = "libAttrs" in lib ? lib.libAttrs : {};
139             /* must set profile explicitly */
140             libAttrs.profile = profile;
142             /* build the library */
143             var library = Pkg.addLibrary(name, targ, libAttrs);
145             /* add the source files */
146             library.addObjects(lib.sources);
147         }
148     }