Reputation: 5161
I am trying to resolve some inclusions in Eclipse. Normally I click on project properties, then 'C/C++ General', then 'Paths and Symbols', then start adding include directories, as is shown here:
But today, for some strange reason, Eclipse (Juno) is not showing the includes tab!
How can I get the 'Includes' tab back so I can resolve the symbols in my project?
Upvotes: 5
Views: 3657
Reputation: 59
The tab is hidden by default, you can enable it again by entering:
Windows > Preferences > C/C++ > Property Pages Settings > Display "Include Files" ...
You might have to restart Eclipse in order for it to show.
Upvotes: 1
Reputation: 10203
The problem may come from the fact that the CDT plugin does not recognize the language toolchain.
You can fix this in the your project properties C/C++ General > Language Mapping
. Just add a mapping for all configurations, mappin each content type to the Gnu C++ Language.
After that, restart Eclipse for the changes to take effect
Upvotes: 0