From: "Andreas Lans" Newsgroups: comp.os.msdos.djgpp References: <2YwI8.9433$p56 DOT 2742900 AT newsb DOT telia DOT net> Subject: Re: No such file or directory Lines: 27 X-Priority: 3 X-MSMail-Priority: Normal X-Newsreader: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Message-ID: Date: Mon, 27 May 2002 21:03:02 GMT NNTP-Posting-Host: 194.237.160.178 X-Complaints-To: abuse AT telia DOT com X-Trace: newsc.telia.net 1022533382 194.237.160.178 (Mon, 27 May 2002 23:03:02 CEST) NNTP-Posting-Date: Mon, 27 May 2002 23:03:02 CEST Organization: Telia Internet To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Well, I solved the first problem, but now the compiler is complaining about "installation problem, cannot exec 'cc1plus' invalid arguments". Why is that, I have installed all the packages needed to make DJGPP work I think, including bnu27b.zip which causes alot of these problems Ive heard, but it still isnt working, any suggestions? /Andreas "Andreas Lans" skrev i meddelandet news:2YwI8.9433$p56 DOT 2742900 AT newsb DOT telia DOT net... > So, Im having this really sad problem, which is probably because my complier > isnt properly set up, Im using DJGPP under windows XP, and when I for > example try to compile a very simple program like the one below, the > compiler complains that it cant find iostream. Whats the problem?? > > #include > > int main() > { > std::cout << "Hello, world!\n"; > } > >