user14717
user14717

Reputation: 5161

Unresolved Inclusion: Eclipse Not Showing "Includes" tab under "Paths and Symbols":

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: Normal way to include paths.

But today, for some strange reason, Eclipse (Juno) is not showing the includes tab!My version of eclipse.

How can I get the 'Includes' tab back so I can resolve the symbols in my project?

Upvotes: 5

Views: 3657

Answers (2)

Tubbles
Tubbles

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

XGouchet
XGouchet

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

Related Questions