From: "jdm" Newsgroups: comp.os.msdos.djgpp Subject: Re: Please Help, I can't compile!! Date: Tue, 29 Jun 1999 18:41:39 -0500 Organization: Airnews.net! at Internet America Lines: 28 Message-ID: X-Orig-Message-ID: <7lblf8$377 AT library1 DOT airnews DOT net> References: <7l9114$7oe$1 AT diana DOT bcn DOT ttd DOT net> Abuse-Reports-To: abuse at airmail.net to report improper postings NNTP-Proxy-Relay: library1.airnews.net NNTP-Posting-Time: Tue Jun 29 18:39:21 1999 NNTP-Posting-Host: !Y"6;1k-W`bb\Vm (Encoded at Airnews!) X-Newsreader: Microsoft Outlook Express 4.72.3110.1 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com TUNNEL wrote in message <7l9114$7oe$1 AT diana DOT bcn DOT ttd DOT net>... >Hi to all! > >Well, I have a problem, I want to compile several source files, the author >suggests to do it using MAKE ALL after prompt but everytime I do it I get a >message like this: > >"c:/djgpp/bin/ld.exe: cannot open -lg++: No such file or directory (ENOENT)" > >Seems that 'something' (sorrry, I'm not a computer wiz) called -lg++ is >missing in the DJGPP directory, am I right?. >I run DJGPP compiler under Windows 98. > -lg++ is the name of the library under unix/Linux. On Windows/DOS machines it is -lgpp. Remember that the actual library filename always starts with "lib". The -l automatically looks for a file starting with lib. so -lgpp means look for libgpp.a. jdm