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.
Code composer studio appears to do continuous background error checking outside of the compiler being used and flags things with a lightbulb-error icon even though the compiler compiles everything fine and the linker links everything fine. Is there a way to disable this feature?
Hello,
Code composer studio appears to do continuous background error checking outside of the compiler being used
This is likely the indexer running:
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html#indexer
flags things with a lightbulb-error icon even though the compiler compiles everything fine and the linker links everything fine.
This is likely the built-in Eclipse CDT code analysis tool:
https://software-dl.ti.com/ccs/esd/documents/users_guide/ccs_project-management.html#code-analysis
Is there a way to disable this feature?
See the details in the above links.
Thanks
ki