From: "Andrew Crabtree" Newsgroups: comp.os.msdos.djgpp Subject: Re: Comments cause GNU assembler problems Date: Thu, 8 Oct 1998 15:56:58 -0700 Organization: Hewlett-Packard, Roseville Lines: 14 Message-ID: <6vjg03$fib$1@rosenews.rose.hp.com> References: <361D15DE DOT 4272C4C6 AT cyberoptics DOT com> NNTP-Posting-Host: ros51675cra.rose.hp.com X-Newsreader: Microsoft Outlook Express 4.72.3155.0 X-MimeOLE: Produced By Microsoft MimeOLE V4.72.3155.0 To: djgpp AT delorie DOT com DJ-Gateway: from newsgroup comp.os.msdos.djgpp Reply-To: djgpp AT delorie DOT com Eric Rudd wrote in message <361D15DE DOT 4272C4C6 AT cyberoptics DOT com>... > fldl 4(%esp) /* as.exe 2.7 doesn't like this comment */ you're writing assembly, not C > as test.S -o test.o this should work if you invoke as through gcc. 'gcc test.S -o test.o' should run the pre-processor and then the assembler. Andy