Path: utzoo!utgpu!jarvis.csri.toronto.edu!cs.utexas.edu!asuvax!ncar!boulder!grunwald From: grunwald@foobar.colorado.edu (Dirk Grunwald) Newsgroups: gnu.gcc.bug Subject: Re: Comparing mips coff object files Message-ID: <15509@boulder.Colorado.EDU> Date: 10 Jan 90 19:00:19 GMT References: Sender: news@boulder.Colorado.EDU Reply-To: grunwald@foobar.colorado.edu Distribution: gnu Organization: University of Colorado at Boulder Lines: 15 In-reply-to: ham@Neon.Stanford.EDU's message of 10 Jan 90 17:30:48 GMT I use the following script, called ecoff-cmp #!/bin/sh # # ecoff-cmp file1.o file2.o # #cp $1 /tmp/foo1.$$ cp $2 /tmp/foo2.$$ strip /tmp/foo1.$$ strip /tmp/foo2.$$ tail +10 /tmp/foo1.$$ > /tmp/foo3.$$ tail +10 /tmp/foo2.$$ > /tmp/foo4.$$ cmp /tmp/foo3.$$ /tmp/foo4.$$ rm -f /tmp/foo[1234].$$