diff options
author | Ian Lance Taylor <ian@airs.com> | 1994-08-24 23:46:53 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1994-08-24 23:46:53 +0000 |
commit | 20ae2fb83227cc0f5c161cd6c3afcabeb5b51dbd (patch) | |
tree | ee0647dc5b0d15d73c12bd8962333a355639eb78 | |
parent | fd4f335ccf03ff9d946693dd7a6298601bed5799 (diff) | |
download | gdb-20ae2fb83227cc0f5c161cd6c3afcabeb5b51dbd.zip gdb-20ae2fb83227cc0f5c161cd6c3afcabeb5b51dbd.tar.gz gdb-20ae2fb83227cc0f5c161cd6c3afcabeb5b51dbd.tar.bz2 |
* config/tc-mips.h (LOCAL_LABEL): Define as 0, for compatibility
with native MIPS assembler.
* configure.in (mips-*-irix*): Don't set emulation.
* config/te-irix.h: Remove.
With these changes, gas works with mips-tfile.
-rw-r--r-- | gas/ChangeLog | 5 | ||||
-rw-r--r-- | gas/config/.Sanitize | 1 | ||||
-rw-r--r-- | gas/configure.in | 2 |
3 files changed, 6 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index 33265ae..009732a 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,5 +1,10 @@ Wed Aug 24 12:46:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com) + * config/tc-mips.h (LOCAL_LABEL): Define as 0, for compatibility + with native MIPS assembler. + * configure.in (mips-*-irix*): Don't set emulation. + * config/te-irix.h: Remove. + * ecoff.c (ecoff_symbol_new_hook): Don't add a new file if we haven't seen any input files yet. * config/tc-alpha.c (md_begin): Just call symbol_create, rather diff --git a/gas/config/.Sanitize b/gas/config/.Sanitize index 31796ae..3381954 100644 --- a/gas/config/.Sanitize +++ b/gas/config/.Sanitize @@ -133,7 +133,6 @@ te-hp300.h te-hppa.h te-i386aix.h te-ic960.h -te-irix.h te-linux.h te-lynx.h te-mach.h diff --git a/gas/configure.in b/gas/configure.in index 7d74c60..43b6883 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -206,7 +206,7 @@ case ${generic_target} in ;; mips-*-ecoff*) obj_format=ecoff gas_target=mips-big ;; mips-*-irix5*) obj_format=elf gas_target=mips-big ;; - mips-*-irix*) obj_format=ecoff gas_target=mips-big emulation=irix ;; + mips-*-irix*) obj_format=ecoff gas_target=mips-big ;; mips-*-riscos*) obj_format=ecoff gas_target=mips-big ;; mips-*-sysv*) obj_format=ecoff gas_target=mips-big ;; mips-*-elf*) obj_format=elf |