Tool/software: TI C/C++ Compiler
I already have firmware which works with PASM compiler. I am trying to use CLPRU compiler now to compile my code. I have modified the code for CLPRU compiler based on its syntax. The compilation is been done succesfully. I am using the obj linking approach to link my CLPRU generated binary after compilation. I am following the step mentioned in section 12.3 in the below mentioned document. I was able to find the required file in my <clpru_install_dir>/ti-cgt-pru_2.1.4/example.

Currently, I am using the technique for ARM i.e. a15, a8 and a9 core with gcc compiler to link the CLPRU generated obj file. The method works fine and i am able to verify my code on EVMs too.
Now, my original firmware supported DSP too. So i am using the same mentioned method to link the CLPRU generated obj file with C66x dsp core and ti-cgt-c6000_8.1.2 compiler. I have modified the target to DSP core "--host_image:target=C6000". But i am getting the following warning and my .out file does not contain any CLPRU generated symbol/instruction/data.
"<install_dir>lnk.cmd", line 40: warning #10068-D: no matching section.
Does the above mentioned method have been tested for any C66 core. if yes, please provide me with sample implementation.