Date: Mon, 30 Nov 1998 09:52:09 +0200 (IST) From: Eli Zaretskii X-Sender: eliz AT is To: ajschrotenboer AT lycosmail DOT com cc: djgpp AT delorie DOT com Subject: Re: More problems w/ building GNU MP In-Reply-To: <73s5va$i3h$1@nnrp1.dejanews.com> Message-ID: MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Reply-To: djgpp AT delorie DOT com On Sun, 29 Nov 1998 ajschrotenboer AT lycosmail DOT com wrote: > Here's another set of error messages. > > C:\djgpp\gnu\gmp-2.0.2\mpn>gcc -march=pentium -c tmp-addmul_1.s addmul_1.o > tmp-addmul_1.s: Assembler messages: > tmp-addmul_1.s:76: Error: no such 386 instruction: `text' Does it help if you say tmp-addmul_1.S (upper-case `S') instead of .s? If that doesn't help, post here the source file tmp-addmul_1.s. > Now here's the error message I was talking about: > > C:\djgpp\gnu\gmp-2.0.2\mpn>gcc -march=pentium -c tmp-add_n.s add_n.o > gcc.exe: add_n.o: No such file or directory (ENOENT) That line should say "-o add_n.o", which means ``put the output into add_n.o''. Without -o, GCC thinks you want it to compile two files: tmp-add_n.s and add_n.o. (I think you need to say tmp-add_n.S here as well.)