Reputation: 5841
I cloned git repository for gcc from github.com. Now I want to navigate the code from eclipse. I have indigo eclipse in windows. How to setup the project(like setting the include paths), so that issues like: "GC_NOT_ALPHA not resolved" doesnot come up.
Upvotes: 0
Views: 155
Reputation: 5841
Got the answer. Just add the include paths to the C/C++ Include paths in Project/Properties in Eclipse. Then right click Project-> Index -> Rebuild. The indexer of eclipse ran for around 20 mins. It built the index for the project. And now I am able to navigate the project efficiently. And even the "Symbol could not be resolved" errors disappeared.
Upvotes: 0