This thread has been locked.
If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.
Tool/software: TI C/C++ Compiler
Hi All,
I have 15-20 VCOP kernel functions.
while building an executable i encountered a linker error saying
Hi,
Please provide SDK version used, example application and any changes you made on top of SDK software.
Regards
Vineet
Hi Vineet,
I have not made any changes to SDK.
I am using arp32 compiler 1.0.7, and I'm using a CMake to manage build process.
Regards,
Likhith.
HI Likhith,
VCOP cannot access any of the external memories also it doesnt have access to DMEM memory. It can only access WBUF and IBUFA/B. So we have to keep the parameter block memory in one of these memories. Now given that IBUF will be typically used in ping pong fashion its not very advisable to keep the parameter blocks in these buffers ( although it can be done and you will have to maintain two copies in IBUF A and B). So the most suitable place to store the parameter block is WBUF. Can you try reducing the WBUF requirement, parameter block memories are typically not very big?
Regards,
Anshu