]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - packages/config.bld
Added env.mk with toolchain variable for A8 GCC
[keystone-rtos/edma3_lld.git] / packages / config.bld
1 /*
2  *  ======== config.bld ========
3  *  Sample Build configuration script
4  */
6 /* load the required modules for the configuration */
7 var C64P = xdc.useModule('ti.targets.C64P');
8 var C64Pe = xdc.useModule('ti.targets.C64P_big_endian');
9 var C674 = xdc.useModule('ti.targets.C674');
10 var C64P_ELF = xdc.useModule('ti.targets.elf.C64P');
11 var C64Pe_ELF = xdc.useModule('ti.targets.elf.C64P_big_endian');
12 var C674_ELF = xdc.useModule('ti.targets.elf.C674');
13 var C66 = xdc.useModule('ti.targets.elf.C66');
14 var C66e = xdc.useModule('ti.targets.elf.C66_big_endian');
15 var Arm = xdc.useModule('ti.targets.arm.elf.Arm9');
16 var cortexA8 = xdc.useModule('ti.targets.arm.elf.A8F');
17 //var C64T_ELF = xdc.useModule('ti.targets.elf.C64T');
18 var M3 = xdc.useModule('ti.targets.arm.elf.M3');
20 /* compiler paths for the CCS4.0                   */
21 var cgtools = java.lang.System.getenv("CGTOOLS");
22 var cgtools_elf = java.lang.System.getenv("CGTOOLS_ELF");
23 var armcgtools = java.lang.System.getenv("TMS470_CGTOOLS");
25 C64P.rootDir = cgtools;
26 C64Pe.rootDir = cgtools;
27 C674.rootDir = cgtools;
28 C64P_ELF.rootDir = cgtools_elf;
29 //C64T_ELF.rootDir = cgtools_elf;
30 C64Pe_ELF.rootDir = cgtools_elf;
31 C674_ELF.rootDir = cgtools_elf;
32 C66.rootDir = cgtools_elf;
33 C66e.rootDir = cgtools_elf;
34 Arm.rootDir = armcgtools;
35 cortexA8.rootDir = armcgtools;
36 M3.rootDir = armcgtools;
38 /**********************************c674******************************/
40 /* compiler options                                */
41 C64P.ccOpts.suffix += " -mi10 -mo ";
42 C64Pe.ccOpts.suffix += " -mi10 -mo -me ";
43 C674.ccOpts.suffix += " -mi10 -mo ";
44 C64P_ELF.ccOpts.suffix += " -mi10 -mo ";
45 //C64T_ELF.ccOpts.suffix += " -mi10 -mo ";
46 C64Pe_ELF.ccOpts.suffix += " -mi10 -mo -me ";
47 C674_ELF.ccOpts.suffix += " -mi10 -mo ";
48 C66.ccOpts.suffix += " -mi10 -mo ";
49 C66e.ccOpts.suffix += " -mi10 -mo -me ";
50 Arm.ccOpts.suffix += " ";
51 cortexA8.ccOpts.suffix += "";
52 M3.ccOpts.suffix += "";
54 /* set default platform and list of all interested platforms */
55 C64P.platforms = [
56                      "ti.platforms.evm6472",
57                      "ti.platforms.evmTCI6486",
58                  ];
59 C64Pe.platforms = [
60                      "ti.platforms.evm6472",
61                      "ti.platforms.evmTCI6486",
62                  ];
63 C674.platforms = [
64                      "ti.platforms.evmDA830",
65                      "ti.platforms.evm6748",
66                      "ti.platforms.evmOMAPL138",
67                      "ti.platforms.simDM8168",
68                      "ti.platforms.evmDM8168",
69                      "ti.platforms.evmDM8148",
70                  ];
71 C64P_ELF.platforms = [
72                      "ti.platforms.evm6472",
73                      "ti.platforms.evmTCI6486",
74                  ];
75 //C64T_ELF.platforms = [
76 //                     "ti.platforms.sdp4430",
77 //                 ];
78 C64Pe_ELF.platforms = [
79                      "ti.platforms.evm6472",
80                      "ti.platforms.evmTCI6486",
81                  ];
82 C674_ELF.platforms = [
83                      "ti.platforms.evmDA830",
84                      "ti.platforms.evm6748",
85                      "ti.platforms.evmOMAPL138",
86                      "ti.platforms.simDM8168",
87                      "ti.platforms.evmDM8168",
88                      "ti.platforms.evmDM8148",
89                  ];
90 C66.platforms = [
91                      "ti.platforms.simTCI6608",
92                      "ti.platforms.simTCI6616",
93                      "ti.platforms.simTCI6614",
94                      "ti.platforms.simC6657",
95                      "ti.platforms.simKepler",
96                      "ti.platforms.evm6670",
97                      "ti.platforms.evm6678",
98                      "ti.platforms.evmTCI6614",
99                      "ti.platforms.evm6657",
100                      "ti.platforms.evmTCI6638K2K",
101                      "ti.platforms.evmTCI6636K2H",
102                  ];
103 C66e.platforms = [
104                      "ti.platforms.simTCI6608",
105                      "ti.platforms.simTCI6616",
106                      "ti.platforms.simTCI6614",
107                      "ti.platforms.simC6657",
108                      "ti.platforms.simKepler",
109                      "ti.platforms.evm6670",
110                      "ti.platforms.evm6678",
111                      "ti.platforms.evmTCI6614",
112                      "ti.platforms.evm6657",
113                      "ti.platforms.evmTCI6638K2K",
114                      "ti.platforms.evmTCI6636K2H",
115                  ];
116 Arm.platforms = [
117                      "ti.platforms.evmOMAPL138",
118                  ];
120 cortexA8.platforms = [
121                          "ti.platforms.evmDM8148",
122                      ];
123 M3.platforms = [
124                      "ti.platforms.evmTI816X",
125                  ];
127 /* select the default platform */
128 C64P.platform = C64P.platforms[0];
129 C64Pe.platform = C64Pe.platforms[0];
130 C674.platform = C674.platforms[0];
131 C64P_ELF.platform = C64P_ELF.platforms[0];
132 //C64T_ELF.platform = C64T_ELF.platforms[0];
133 C64Pe_ELF.platform = C64Pe_ELF.platforms[0];
134 C674_ELF.platform = C674_ELF.platforms[0];
135 C66.platform = C66.platforms[0];
136 C66e.platform = C66e.platforms[0];
137 Arm.platform = Arm.platforms[0];
138 cortexA8.platform = cortexA8.platforms[0];
139 M3.platform = M3.platforms[0];
141 /* list interested targets in Build.targets array  */
142 Build.targets = [
143                    //C64T_ELF,
144                     //C64,
145                     C64P,
146                     C64Pe,
147                     //C67P,
148                     C674,
149                     C64P_ELF,
150                     C64Pe_ELF,
151                     C674_ELF,
152                     C66,
153                     C66e,
154                     Arm,
155                     cortexA8,
156                     M3,
157                   //Win32,
158                 ];