Date: Fri, 27 Mar 1998 03:24:03 +0200 (EET) From: Epameinondas Latanis To: djgpp AT delorie DOT com Subject: help!I have problem with rhide Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Precedence: bulk I am new in DjGpp and I have faced some problems at the linking of c++ files with RHIDE. I have installed the necessary packages and tried to work with the RHIDE after having made the proper settings. Plain c programs had no problems at all but with c++ I cannot say the same.The compiling was ok but the linking showed errors.At the following simple code (for example): #include int main(void) { cout << "Testing..."; return 0; } RHIDE would execute (in the window): executing: gcc -o hello.exe hello.o -lstdcx ...and the error would follow... Error: c:/lang/djgpp/bin/ld.exe: cannot open -lstdcx: No such file or directory (ENOENT) The paths are correctly set and so is the environment file of rhide. I understand that there must be an error with the parameters passed to gcc. Could anyone help me ,please?