Recently I setup Eclipse CDT with Cygwin. I also properly installed MinGW (the latest) but I am not using it. I set up Cygwin with usual:
Eclipse C/C++ Development Tool (CDT) Juno SR1
Cygwin packages:
C compiler: gcc-core (3.4.4-999)
C++ compiler: gcc-g++ (3.4.4-999)
GNU Debugger: gdb (7.5.50-2)
Make utility: make (3.82.90-1)
After many tutorials for C++ programing compiled without a single problem, one came in today - while using debugger for the first time:
Title of window (in Eclipse) says:
std::ostream::operator<<0 at /usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/iostream/c++/iosteram:iostream:77 0x42c233
And in windows it's written:
Can't find a source file at "/usr/lib/gcc/i686-pc-cygwin/3.4.4/include/c++/iostream"
Locate the file or edit the source lookup path to include its location.
How can I resolve this issue?