From: michael DOT mauch AT gmx DOT de (Michael Mauch) Newsgroups: comp.os.msdos.djgpp Subject: Re: trouble with RHIDE & GPP 2.8 Date: Mon, 09 Mar 1998 07:30:45 +0100 Organization: Gerhard-Mercator-Universitaet -GH- Duisburg Lines: 16 Message-ID: <6e02al$qpf$1@news-hrz.uni-duisburg.de> References: <6dut0h$j00$1 AT winter DOT news DOT erols DOT com> NNTP-Posting-Host: ppp89.uni-duisburg.de Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Precedence: bulk On Sun, 8 Mar 1998 14:52:51 -0500, "Yeeming Jih" wrote: > It seems that I can't use RHIDE to make C++ executables any more because it > insists on calling GCC with "gcc -o filename.exe filename.o -lstdcx"; > there's no lstdcx anywhere so of course GCC can't find lstdcx. "stdcx" is your argument for the "-l" flag, so GCC looks for a library called "libstdcx.a". The name of the library in your /lib dirctory is libstdcxx.a if you have long filenames (Win95) - so you may try "gcc -o filename.exe filename.o -lstdcxx". If you don't have long filenames or an unzip program which doesn't know about long filenames, have a look at the file gnu/gcc-2.80/readme.djg and/or ask again. Regards... Michael