]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - keystone-rtos/edma3_lld.git/blob - examples/edma3_driver/evmDRA72x_DSP/rtsc_config/custom_config.bld
Revert "Revert "Merge branch 'master' into edma3_keystone2""
[keystone-rtos/edma3_lld.git] / examples / edma3_driver / evmDRA72x_DSP / rtsc_config / custom_config.bld
1 /*
2  *  ======== config.bld ========
3  *  Sample Build configuration script
4  */
6 /* load the required modules for the configuration */
8 var platform_xs = xdc.loadCapsule("platform.xs");
10 /**********************************c66******************************/
11 var C66_ELF = xdc.useModule('ti.targets.elf.C66');
13 C66_ELF.rootDir = java.lang.System.getenv("CGTOOLS_ELF");
15 C66_ELF.ccOpts.suffix += " -mi10 -mo --symdebug:none -O3";
17 /* linker options */
19 C66_ELF.lnkOpts.suffix += " --zero_init=off ";
20 C66_ELF.lnkOpts.suffix += " --dynamic --retain=_Ipc_ResetVector";
22 C66_ELF.platforms = ["ti.platforms.evmDRA7XX:DSP_1"];
24 C66_ELF.platform = C66_ELF.platforms[0];
25 /**********************************c66******************************/
27 /**********************************c66******************************/
28 var C66e = xdc.useModule('ti.targets.elf.C66_big_endian');
30 C66e.rootDir = java.lang.System.getenv("CGTOOLS_ELF");
32 C66e.ccOpts.suffix += " -mi10 -mo -me --symdebug:none -O3";
34 /* linker options */
36 C66e.lnkOpts.suffix += " --zero_init=off ";
37 C66e.lnkOpts.suffix += " --dynamic --retain=_Ipc_ResetVector";
39 C66e.platforms = ["ti.platforms.evmDRA7XX:DSP_1"];
41 C66e.platform = C66e.platforms[0];
42 /**********************************c66******************************/
45 /* list interested targets in Build.targets array  */
46 Build.targets = [
47                     C66_ELF,
48                     C66e
49                 ];