Xref: news-dnh.mv.net comp.os.msdos.djgpp:3329 Path: news-dnh.mv.net!mv!news.sprintlink.net!news.eznet.net!news.enterprise.net!btnet!tank.news.pipex.net!pipex!usenet.eel.ufl.edu!newsfeed.internetmci.com!howland.reston.ans.net!news.nic.surfnet.nl!tuegate.tue.nl!news.win.tue.nl!charm.il.ft.hse.nl!not-for-mail From: george AT il DOT ft DOT hse DOT nl (George van Venrooij) Newsgroups: comp.os.msdos.djgpp Subject: Re: Strange re-occurring error. Date: 19 Nov 1995 00:24:46 +0100 Organization: IGV InterLink, Hogeschool Eindhoven, The Netherlands Lines: 21 References: Nntp-Posting-Host: charm.il.ft.hse.nl To: djgpp AT sun DOT soe DOT clarkson DOT edu Dj-Gateway: from newsgroup comp.os.msdos.djgpp In article , Kristen Drent wrote: > >Just in case this might help, here's a dump of a gcc -v ... > >C:\djgpp\Apps>gcc -v -o progie.exe progie.c Well, my best guess is that GCC produces a COFF- object-file with the name "progie.exe" and then tries to turn in it to a DOS-executable with the name "progie.exe". This probably makes stubify get into serious trouble. Use the -o switch to define your output object-file name. GCC will convert it into an executable for you. For example try: gcc -v -o progie.o progie.c Hope this works, George van Venrooij george AT il DOT ft DOT hse DOT nl