Dear all,
Under ti\syslink\samples\rtos\sharedRegion, there are several files:
- package.bld
- SharedRegionApp.c
Inside package.bld, the testArray defines what source codes used in compilation like below:
{name: 'sharedregion_c6678_core1',
sources: ['SharedRegionApp'], config: "./c6678/SharedRegion_c6678_core1",
copts: " -DSYSLINK_PLATFORM_C667X ",
buildTargets: ["C66","C66_big_endian"],
buildPlatforms: ["ti.syslink.samples.rtos.platforms.evm6678.core1"],
},
My application has multiple source flies/folders, I added them into sources array like ['./folder1/file1', './folder2/folder21/file2',]. Questions:
Q1. It looks they only search the header files under the same directory, how do I add include path for searching?
Q2. It assumes the filename extension .c, how do I add an assmbly source file (.asm) or a CPP file?
Q3. Where can I add the library I need to link for executable?
Thanks! Eric