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.
Hi,
I have inherited a project (CCS5.4) from someone else and I am trying to fix some errors.
One error I see is that when I import projects, there are lots of directories showing under "Includes" that either don't need to be there or do not exist (see first picture) the second picture shows what the list is under the project settings.
I updated the list of include files under the properties for the project, but the directory list under Includes in the workspace shows the old directories. I have tried a clean workspace, rebuilding, etc with no effect.
Thanks for any help you can provide.
David,
I tried reproducing this but don't see this behavior with standard example projects from TI.
Was this project created with an older version of CCS, say CCSv4 and then imported into v5?
A couple of simple things to try if you haven't already:
- right-click on Project, and click Refresh
- go to Index->Rebuild and see if that helps
If these don't help you could try directly editing the .cproject file in the project root folder. We generally advise modifying these Eclipse project files with caution, so I would suggest first making a back-up copy of your existing .cproject in case you need to revert back to it. Then search in the file for "--include_path". Under that there should be a list of include paths enclosed within <listOptionValue> tags. Delete the ones you want and save the file. Make sure you are modifying it for the build configuration of interest, as there may be more than one set depending on the number of build configurations for the project.
Let us know if that helps.
Hi,
These were originally in CCS3.3 and have been moved over to 5.4.
Interestingly, there is a Release configuration and a Debug configuration. The Release configuration is OK, the Debug configuration was not working.
I tried the two simple suggestions with no luck. However, modifying the .cproject file manually seems to have resolved the issue.
Thanks!