Date: Mon, 28 Oct 1996 15:03:04 +0200 (EET) From: "Adrian G. Oboroc" To: eidolon Cc: djgpp AT delorie DOT com Subject: Re: help me please. In-Reply-To: <3.0b36.32.19961027142859.006aa068@mail.geocities.com> Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Sun, 27 Oct 1996, eidolon wrote: > i am getting the error message c:/djgpp/bin\ld.exe: cannot open linker > script file djgpp.lnk: No such file or d > irectory (ENOENT) > when i try to compile with gcc. > i have unzipped all the basic files. > why is this happening? > Probably you use gcc to compile C++ program. While using gcc for C++ programs, you must specify location of C++ libraies manualy, otherwise you'll get ld error. Probably the best solution is to use gxx (install g++ and it's libs first) instead of gcc, because it automaticly add c++ libs while linking executable. And final tip: read FAQ carifully, it's a very good guide for beginers, like me and you =) Best wishes, AsH