Clean Eclipse Index, it is out of sync with code

C++EclipseEclipse Cdt

C++ Problem Overview


I'm using Eclipse with C++ code via linked resources on Linux. The code analysis index seems to be corrupted (Goto definition lands the cursor close to, but not on, the definition) Refreshing resources doesn't fix it, neither does restarting Eclipse.

Is there a way to flush the index and rebuild it?

C++ Solutions


Solution 1 - C++

Right-click on your project, go under the Index submenu, and choose either "Rebuild," "Update with modified files," or "Freshen all files."

I don't know the difference between those three options, but one of "Update with modified files" or "Freshen all files" usually fixes it for me.

Also, I'm sure you've already done this, but make sure that you're running the latest version of the Eclipse CDT. Current versions seem to have much more reliable indexing than previous versions.

Solution 2 - C++

From http://dev.eclipse.org/mhonarc/lists/cdt-dev/msg10390.html, the differences between "Rebuild," "Update with modified files," or "Freshen all files":

> Rebuild: Works for entire projects, only. Clears the index and indexes > the files from scratch. When cancelled it leaves you with an empty or > partial index. > > Update with Modified Files: Works on a resource > selection. Checks on individual files whether the timestamp or the > scanner-config has been changed and updates the index for the changed > files. > > Freshen All Files: Works on a resource selection. Updates the > selected files in the index. The index is not cleared, it is safe to > cancel the operation.

Solution 3 - C++

Go to your project properties -> C++ general -> Indexer.

  • Do this with 'project specific settings',
    (or on 'Configure Workspace Settings...').
  • Deselect 'Enable Indexer' hit Apply.
  • Select 'Enable Indexer' hit Apply.

This should completely wipe out and rebuild the index.

Solution 4 - C++

Neither of the above worked for me (Eclipse Indigo), index still broken and refusing to rebuild properly. Until applied this one:

http://slsam2.blogspot.com/2012/02/eclipse-cdt-index-not-working.html

The crucial bit of the linked post is this:

> Eclipse no longer treats your project as a C++ project. Choose menu File/New/Convert to a C/C++ project. It takes a while to index the source code.

I still wonder how Eclipse can uncontrollably shoot itself in the foot like that. I suspect that installing additional packages can trigger it. Perhaps JavaScript support in my case.

Solution 5 - C++

delete only the .pdom file under .metadata.plugins\org.eclipse.cdt.core helps, I got the indexer screwed after upgrading Neon.2 to Neon.3 and this seems to solve the problem. (this comment already exists above but am not allowed to confirm it up there).

Solution 6 - C++

Did you try adding -clean to the command line for the eclipse executable?

Solution 7 - C++

Eclipse no longer treats your project as a C++ project. Choose menu File/New/Convert to a C/C++ project. It takes a while to index the source code. worked for me

Solution 8 - C++

I found that I had the global indexer set to 'Use the build configuration specified in the project's indexer settings', and the project's indexer set to NOT use project specific indexer settings. Regardless, it was using the same fixed configuration for the indexer regardless of which configuration I had selected. The fix: Window-Preferences, C/C++, Indexer. Select "Use active build configuration" in section "Build configuration for the indexer".

Happy days.

Solution 9 - C++

I started with trying Josh Kelleys and mmmmms answers without any luck, but I finally fixed it by checking my include paths.

One way to see them are in the Project Explorer, expand project and there should be an entry "Includes". Inside that, check for a small yellow warning triangle on each include path. If that triangle is present eclipse most likely doesn't recognize the path.

The include paths are edited through right-clicking on "Your project" in the Project explorer, then choose "Properties" --> C/C++ General --> Paths and Symbols --> Includes.

I see three language options, Assembly, Gnu C, Gnu C++. Choose the correct one before starting to add paths (likely Gnu C++). After adding all the paths, -->Apply --> Ok and rebuild index if you're asked to.

My erroneous workspace paths looked like MyProject/MyProject/folder when it was supposed to be MyProject/folder.

For me the "Problems"-view is always slow to update, even after rebuilding index. To be sure that the error is still there, double-click the problems entry so that eclipse opens/reloads the file in question. This often seems necessary for me to update the "Problems" view.

I don't really know if it was eclipse or my scm that messed it up. Anyway, hope it helps someone!

I use Luna and builds with an external makefile.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionVincent ScheibView Question on Stackoverflow
Solution 1 - C++Josh KelleyView Answer on Stackoverflow
Solution 2 - C++StephenView Answer on Stackoverflow
Solution 3 - C++TheAnvilView Answer on Stackoverflow
Solution 4 - C++Pavel ZdenekView Answer on Stackoverflow
Solution 5 - C++Shay PerlsteinView Answer on Stackoverflow
Solution 6 - C++Chris DennettView Answer on Stackoverflow
Solution 7 - C++kibromView Answer on Stackoverflow
Solution 8 - C++radsdauView Answer on Stackoverflow
Solution 9 - C++SchakiView Answer on Stackoverflow