Won't compile the simplest of progs.
Daniel Harry Hawson
u7dhhATdcs.shef.ac.uk
Wed Sep 15 04:31:00 GMT 1999
I have a 'Progs' folder in my 'cygwin-b20' folder.
In 'Progs', I tried to compile a C++ file called 'Keypress.cpp'.
> BASH.EXE-2.02$ gcc -o Progs/key.exe Progs/keypress.cpp
> Progs/keypress.cpp:1: conio.h: No such file or directory
> BASH.EXE-2.02$
What am I doing wrong?
Here is the contents of 'Keypress.cpp' -
> #include <conio.h>
> #include <iostream.h>
>
> int main(void)
> {
> int c;
> c = getch();
> while (c != 27) //27 = esc
> {
> cout<<"pressed :"<<c<<'\n';
> c = getch();
> }
> return 0;
> }
Will CygWin work with C++ or just C code?
How can I get this to work?
Thanks.
Dan
u7dhh@dcs.shef.ac.uk
--
Want to unsubscribe from this list?
Send a message to cygwin-unsubscribe@sourceware.cygnus.com
More information about the Cygwin
mailing list