diff options
author | Jeff Law <law@redhat.com> | 1994-08-13 01:38:55 +0000 |
---|---|---|
committer | Jeff Law <law@redhat.com> | 1994-08-13 01:38:55 +0000 |
commit | 5278c61d201f2817e8704e0e325648875aaf34af (patch) | |
tree | 238f5f0c1977d675bc3ea6b712beada17848bafb /gdb | |
parent | e9227b4255b7eb706e50fe043e2212b22d0fe572 (diff) | |
download | gdb-5278c61d201f2817e8704e0e325648875aaf34af.zip gdb-5278c61d201f2817e8704e0e325648875aaf34af.tar.gz gdb-5278c61d201f2817e8704e0e325648875aaf34af.tar.bz2 |
* gdb.stabs/hppa.mt: Use $(AS), not $(CC) to assemble the
stabs testcode.
Diffstat (limited to 'gdb')
-rw-r--r-- | gdb/testsuite/ChangeLog | 13 | ||||
-rw-r--r-- | gdb/testsuite/gdb.stabs/hppa.mt | 2 |
2 files changed, 14 insertions, 1 deletions
diff --git a/gdb/testsuite/ChangeLog b/gdb/testsuite/ChangeLog index 115c357..1c16f53 100644 --- a/gdb/testsuite/ChangeLog +++ b/gdb/testsuite/ChangeLog @@ -1,3 +1,16 @@ +Fri Aug 12 19:35:41 1994 Jeff Law (law@snake.cs.utah.edu) + + * gdb.stabs/hppa.mt: Use $(AS), not $(CC) to assemble the + stabs testcode. + +Fri Aug 5 17:01:07 1994 J.T. Conklin (jtc@phishhead.cygnus.com) + + * lib/gdb.exp (gdb_test): Don't send anything if the first + argument is an empty string. This makes cases where we want to + match output that is already in expect's buffers (for example, + matching a breakpoint after gdb_run_cmd has been called) work + reliably. + Tue Aug 2 10:24:08 1994 J.T. Conklin (jtc@phishhead.cygnus.com) * config/netware.exp: New file. diff --git a/gdb/testsuite/gdb.stabs/hppa.mt b/gdb/testsuite/gdb.stabs/hppa.mt index 89a3190..d7a6e86 100644 --- a/gdb/testsuite/gdb.stabs/hppa.mt +++ b/gdb/testsuite/gdb.stabs/hppa.mt @@ -1,3 +1,3 @@ weird.o: $(srcdir)/weird.def $(srcdir)/hppa.sed sed -f $(srcdir)/hppa.sed <$(srcdir)/weird.def >weird.s - $(CC) -c weird.s + $(AS) weird.s -o weird.o |