SaltyCrane Blog — Notes on JavaScript and web development

How to remove discovered include paths from your Standard Make Project in Eclipse/CDT

  1. Right-click your project from the "C/C++ Projects" window, select "Properties"
  2. Select "C/C++ Make Project", then the "Discovery Options" tab
  3. Uncheck "Automate discovery of paths and symbols"
  4. Select "C/C++ Project Paths" on the sidebar, then the "Path Containers" tab
  5. Click on "Discovered Paths" to select it, then click "Remove"
  6. Click "OK"
Technorati tags: ,

Comments


#1 banana pancake commented on :

Thanks.
That was really bugging me, having a bunch of "Invalid project path: Include path not found" messages in the problems list.

-MM


#2 Anonymous commented on :

I am currently useing Eclipse 3.3.1.1 with CDT 4.0.1.
In my configuration, the message "Invalid project path: Include path not found" was due to a bug in Eclipse: I had upgraded my gcc, and a bug in Eclipse left old paths in some configuration files. The work around for the bug fix helped me out. It can be found here: https://bugs.eclipse.org/bugs/show_bug.cgi?id=206372
Good luck
Reimer


#3 sofeng commented on :

Reimer: Thanks for posting the work around.


#4 jl commented on :

Thanks for this!