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.
I tried to migrate my TI 2811 project from CCS V3.3 to CCS V5.1. The compiling is completed without any problem. However, I got warning during linking
<Linking>
warning #10247-D: creating output section "AdcRegsFile" without a SECTIONS specification
Does any one know what can cause this problem? Any new link option I have to add?
Thanks and regards,
Yaoxin
Hello Yaoxin,
Yaoxin Qian said:warning #10247-D: creating output section "AdcRegsFile" without a SECTIONS specification
It is warning that the "AdcRegsFile" section in your code is not specified in the linker options. You can specify the section in your linker command file. Example:
SECTIONS
{
AdcRegsFile : > MEMORY_REGION PAGE = 0
For more details, see section 7.5.4 of: http://www.ti.com/lit/ug/spru513d/spru513d.pdf
Thanks
ki
Ki,
Thank you very much for the help. I check my project, there are some .cmd files missing during the migration. After I manually added these files, the warnings are gone.
Regards,
Yaoxin