I’m trying to use Eclipse to edit sources, compiled under C++ Builder, but stuck with Unresolved inclusion problem.
For example, code like:
#include <vector>
Gives Unresolved inclusion: <vector> error in Eclipse IDE. C++ Builder indeed has no vector file, instead it has vector.h which is used by compiler.
Eclipse IDE gives no error if I write
#include <vector.h>
How do I tell Eclipse to use vector.h when it sees #include <vector>?
This allowed me to avoid Eclipse “Unresolved inclusion” error.
In my case I had to find the location of the C++ vector header on my computer (which is a Mac):
I found the correct include location in folder “/usr/include/c++/4.2.1”. Then I set my project eclipse settings like so:
I’m not using C++ Builder, but my solution might address part of your trouble.