diff options
Diffstat (limited to 'gdb/testsuite/gdb.stabs/ecoff.mt')
-rw-r--r-- | gdb/testsuite/gdb.stabs/ecoff.mt | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gdb/testsuite/gdb.stabs/ecoff.mt b/gdb/testsuite/gdb.stabs/ecoff.mt index af17f69cf91..f068913ee6f 100644 --- a/gdb/testsuite/gdb.stabs/ecoff.mt +++ b/gdb/testsuite/gdb.stabs/ecoff.mt @@ -1,14 +1,15 @@ +# This configuration is for a gcc that uses mips-tfile. If your gcc +# uses gas, you should configure gdb --with-gnu-as. +# # The mips as doesn't grok #line directives, suppress them via -P during # preprocessing. # The sed script removes blanks that mips-tfile doesn't like, # embedds stabs in comments and changes .long to .word # WEIRDSTABS_S=weird-ecoff.S -# Only gcc knows about stabs-in-ecoff -STABSCC=gcc weird.o: ${srcdir}/${WEIRDSTABS_S} ${srcdir}/weird.def ${srcdir}/weird-ecoff.sed cp ${srcdir}/${WEIRDSTABS_S} tmp.c - $(STABSCC) -I${srcdir} -E -P tmp.c >tmp.s + $(CC) -I${srcdir} -E -P tmp.c >tmp.s sed -f ${srcdir}/weird-ecoff.sed <tmp.s >weird.s - $(STABSCC) -c weird.s + $(CC) -c weird.s |