From: Eli Zaretskii Newsgroups: comp.os.msdos.djgpp Subject: Re: problems setting up DJGPP with UltraEdit Date: Sat, 01 Jan 2000 21:08:15 +0200 Organization: NetVision Israel Lines: 25 Message-ID: <386E509F.5B51A155@is.elta.co.il> References: <84l9g5$vf0$1 AT newsg4 DOT svr DOT pol DOT co DOT uk> NNTP-Posting-Host: ras1-p8.rvt.netvision.net.il Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-Trace: news.netvision.net.il 946753769 12456 62.0.172.10 (1 Jan 2000 19:09:29 GMT) X-Complaints-To: abuse AT netvision DOT net DOT il NNTP-Posting-Date: 1 Jan 2000 19:09:29 GMT X-Mailer: Mozilla 4.7 [en] (Win98; I) X-Accept-Language: en,ru,hebrew To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Swordsman wrote: > > I have been trying to set up UltraEdit as my development IDE with > djgpp. When I call gcc from the tool configuration facility I get an > > error message saying: > > gcc.exe: installation problem, cannot exec `cc1plus': No such file or > directory (ENOENT) > > What is cc1plus cc1plus.exe is the C++ compiler. > and why do I not get this message if I invoke gcc from a dos > command line or from rhide 1.4? Are you compiling a C++ programs? If so, you need to install the C++ compiler from the gpp2952b.zip archive. That's where cc1plus.exe comes from. If you are compiling a C program, then I'm guessing that either you or the editor passed the source file name to the compiler in UPPER CASE. When GCC sees a name with a .C (capital C) extension, it treats it as a C++ program, and wants to invoke the C++ compiler. See section 8.4 of the DJGPP FAQ list for more information on how the compiler determines the source language from the file-name extension, and how to force it to use specific language.