Message-ID: <38C4FDAE.14DDDB15@corel.com> Date: Tue, 07 Mar 2000 08:01:34 -0500 From: Jonathan Meunier X-Mailer: Mozilla 4.7 [en] (Win95; U) X-Accept-Language: en MIME-Version: 1.0 Newsgroups: comp.os.msdos.djgpp Subject: Re: -wall messages References: <1B04E3E8A3E99978 DOT 0AA67B6C38AFD998 DOT 3BC818F6DB8E9388 AT lp DOT airnews DOT net> <8a2nol$73j$1 AT nets3 DOT rz DOT RWTH-Aachen DOT DE> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit NNTP-Posting-Host: 120.150.3.42 X-Trace: 7 Mar 2000 08:01:51 -0500, 120.150.3.42 Lines: 14 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Rodeo Red wrote: > > Here is my command line- %f is an Ultra-edit symbol for the name of the > source file which is open. > gpp %f -o -Wall r.exe This is bad :) '-o' is used to specify the output filename, so the above says that you want your output called '-Wall', and r.exe confuses gpp.. try this instead: gpp %f -Wall -o r.exe HTH, .(Trancelucid). . Jaune .