Reputation: 2108
I had installed Eclipse CDT and Cygwin with gcc
, gdb
, gnu
etc packages.
But the include directives (stdio.h
, conio.h
) are not resolved, and could not build too:
Launch failed, Binary not found.
Do I need to install other packages?
Thanks
Upvotes: 0
Views: 154
Reputation: 1660
There's no conio.h
in Linux. Cygwin is a Linux-y environment. See this? (Unless I'm misunderstanding something)
Upvotes: 2
Reputation: 875
Is the directory with the executables (gcc, gdb, etc.) in you PATH? That is usually needed for Eclipse to find and configure the environment to use the toolchain.
Upvotes: 0