This is the mail archive of the cygwin@sourceware.cygnus.com mailing list for the Cygwin project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Won't compile the simplest of progs.


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


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]