]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blobdiff - packages/config.bld
CSL_DAT example modified for new license header
[keystone-rtos/edma3_lld.git] / packages / config.bld
index 1f437b0e5a7b6e1a24a40eb5c585340e11370cf3..17e03d8a7cd2687a9eb6697dec0cf16957637ad0 100644 (file)
@@ -4,27 +4,45 @@
  */
 
 /* load the required modules for the configuration */
+var C64P = xdc.useModule('ti.targets.C64P');
+var C64Pe = xdc.useModule('ti.targets.C64P_big_endian');
 var C674 = xdc.useModule('ti.targets.C674');
 
 /* compiler paths for the CCS4.0                   */
-C674.rootDir = "D:/Program Files/Texas Instruments/ccsv4/tools/compiler/c6000";
+C64P.rootDir = "D:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.10";
+C64Pe.rootDir = "D:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.10";
+C674.rootDir = "D:/Program Files/Texas Instruments/C6000 Code Generation Tools 6.1.10";
 
 /**********************************c674******************************/
 
 /* compiler options                                */
+C64P.ccOpts.suffix += " -mi10 -mo ";
+C64Pe.ccOpts.suffix += " -mi10 -mo -me ";
 C674.ccOpts.suffix += " -mi10 -mo ";
 
-/* set default platform and list of all interested *
- * platforms for c64P                              */
-
+/* set default platform and list of all interested platforms */
+C64P.platforms = [
+                     "ti.platforms.simTCI6498",
+                 ];
+C64Pe.platforms = [
+                     "ti.platforms.simTCI6498",
+                 ];
 C674.platforms = [
                      "ti.platforms.evmDA830",
                  ];
-/* select the default platform                     */
-C674.platform = C674.platforms[0];
 
+/* select the default platform */
+C64P.platform = C64P.platforms[0];
+C64Pe.platform = C64Pe.platforms[0];
+C674.platform = C674.platforms[0];
 
 /* list interested targets in Build.targets array  */
 Build.targets = [
+                  //C64,
+                    C64P,
+                    C64Pe,
+                  //C67P,
                     C674,
+                  //Arm9,
+                  //Win32,
                 ];