From: "Baraccus" Newsgroups: comp.os.msdos.djgpp References: Subject: Re: Rhide Compiling Prob Lines: 22 X-Newsreader: Microsoft Outlook Express 4.72.3110.5 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3110.3 Message-ID: Date: Thu, 04 Mar 1999 00:01:46 GMT NNTP-Posting-Host: 142.194.189.127 X-Trace: cabot.ops.attcanada.net 920505706 142.194.189.127 (Thu, 04 Mar 1999 00:01:46 GMT) NNTP-Posting-Date: Thu, 04 Mar 1999 00:01:46 GMT To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com ok, the filename is 2breal.c and my problem is not compiling in DOS but I'll take note of that next time I try to compile files with lengthy filenames. My problem is, when I try to compile the same file in RHIDE, I get the error message but when I compile it using gcc in DOS, it works. So, what do I do now? Thanks in advance. DeHackEd wrote in message ... >Are you compiling a file who's name is something like "multiple spaces here.c" ? >If so, the command gets expanded to: > >gcc -c multiple spaces here.c -o multiple spaces here.o > >and all these extra spaces does get quotes around them, causing them to think >each word is a different file, hense the error. Try changing the name to >multiple_spaces_here.c using underscores or something else. In dos the file DOES >get quotes around it automatically so that's not a problem.