Date: Sun, 9 Jun 1996 18:04:22 +0200 (IST) From: Eli Zaretskii To: Jim Varanelli Cc: djgpp AT delorie DOT com Subject: Re: Program too big to fit in memory In-Reply-To: Message-Id: Mime-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII On Fri, 7 Jun 1996, Jim Varanelli wrote: > fake(.data+0x0): multiple definition of 'start' > fake(.text+0x0): first defined here > > My original make file is: > > gcc -c -O2 adept.c > gcc -c -O2 genlist.c > gcc -c -O2 feedback.c > gcc -c -O2 tbench.c > gcc -c -O2 tree.c > gcc -c -O2 sigtype.c > gcc -c -O2 list.c > gcc -o genlist.exe *.o > > The executable is only 75K. What happens if you use the following command line: gcc -o genlist.exe -O2 genlist.c feedback.c tbench.c tree.c sigtype.c list.c If this doesn't work either, please add -v to the command line and post evrything gcc prints.