From: eplmst AT lu DOT erisoft DOT se (Martin Stromberg) Newsgroups: comp.os.msdos.djgpp Subject: Re: missing cc1plus.exe file Date: 18 Sep 2000 14:26:23 GMT Organization: Ericsson Erisoft AB, Sweden Lines: 28 Message-ID: <8q58mf$k8l$2@antares.lu.erisoft.se> References: <_spx5.40284$XZ4 DOT 513027 AT news DOT infostrada DOT it> NNTP-Posting-Host: lws256.lu.erisoft.se X-Newsreader: TIN [version 1.2 PL2] To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com asast (asast AT libero DOT it) wrote: : Hi all, : I've never used a C compiler on a Ms-Dos O.S. before. : Today I downloaded the full package of DJGPP from http://www.delorie.com, : using the pkZip picker. I unzipped all the files I was suposed to and, after : reading the first part of the documentation, I made a couple of changes into : Autoexec.bat file. : The software seemed to be pretty installed, as I followed all the steps : carefully, but when I tried to compile the first helloworld.C file into the helloworld.C is a C++ file. Perhaps you meant helloworld.c which is a C file? : executable one, I got the following error message: : gcc.exe: Installation problem, cannot exec 'cc1plus': No such file or : directory (ENOENT) The compiler is looking for the C++ compiler. Rename your file to helloworld.c and it will be just fine. Right, MartinS