Tool/software: Code Composer Studio
I have a project that I've been using for several CCS versions with no issues. I installed CCS9 and imported the project. I have this in my .cmd file:
SECTIONS
{
.boot > SHRAM
{
-l rts6740.lib<boot.obj>(.text)
}
etc.
The linker command and output are
Invoking: C6000 Linker
"C:/ti/ccs901/ccs/tools/compiler/c6000_7.4.24/bin/cl6x" -mv6740 --abi=coffabi -O2 --define=c6748 -z --stack_size=0x800 --heap_size=0x800 --reread_libs --warn_sections --rom_model -o "Dtmb2Dsp.out" bunch of obj files here "../C6748.cmd" "../c674xfastMath.lib" "../dsp67x.lib" "../dsplib.lib" -l"C:/ti/ccs901/ccs/tools/compiler/c6000_7.4.24/lib/rts6740.lib"
<Linking>
"../C6748.cmd", line 68: error: cannot find file "rts6740.lib"
error: errors encountered during linking; "Dtmb2Dsp.out" not built
Even though I have explicitly specified the location of the rts6740.lib file, I still get this error.
Help? Thanks