BIOS Version: 5.42.1.09
Processor: TMS320C6416
Code Composer: 5.4.0.00091
I have a problem where a call to utils.loadPlatform("platformName"); in my TCF file, the Tconf script utils.tci does not look in the project directory for the platform folder. Instead the utils.tci script looks in the directory project/Debug when it is searching the current directory.
An additional possible problem is this:
If I change to utils.loadPlatform("./platformName"); I would think the following code in utils.findFile would be called:
/* if file name starts with "./", use utils.cwd */
if (fileName[0] == '.'
&& (fileName[1] == '/' || fileName[1] == '\\')) {
file = new java.io.File(utils.cwd, fileName);
return (file.exists() ? (file.getPath() + "") : null);
}
But earlier in utils.tci ./ is changed to // in the platform name, causing this if statement to evaluate to false. Then //platformName/Platform.tci evaluates to being an absolute path instead, so the file is never found to exist.
It appears in Properties -> Build -> Environment (tab) PWD and CWD can be changed. Changing this might be a workaround for the problem.