diff options
author | Ian Lance Taylor <ian@airs.com> | 1995-09-18 02:20:06 +0000 |
---|---|---|
committer | Ian Lance Taylor <ian@airs.com> | 1995-09-18 02:20:06 +0000 |
commit | 70f4dbce64bfc04598d91fcf4e31011c9de9f65b (patch) | |
tree | b38d31a12939b6eb747184213c77c3caeea8944b /gas | |
parent | 1793e157bde37ad18e0bb9a523c25db3c7d516b4 (diff) | |
download | gdb-70f4dbce64bfc04598d91fcf4e31011c9de9f65b.zip gdb-70f4dbce64bfc04598d91fcf4e31011c9de9f65b.tar.gz gdb-70f4dbce64bfc04598d91fcf4e31011c9de9f65b.tar.bz2 |
* configure.in: Set endian to little for mips-*-ultrix*.
* configure: Rebuild.
Diffstat (limited to 'gas')
-rw-r--r-- | gas/ChangeLog | 12 | ||||
-rwxr-xr-x | gas/configure | 2 | ||||
-rw-r--r-- | gas/configure.in | 2 |
3 files changed, 14 insertions, 2 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog index b4d3d3f..5fb43c1 100644 --- a/gas/ChangeLog +++ b/gas/ChangeLog @@ -1,3 +1,15 @@ +Sun Sep 17 22:17:43 1995 Ian Lance Taylor <ian@cygnus.com> + + * configure.in: Set endian to little for mips-*-ultrix*. + * configure: Rebuild. + +Fri Sep 15 13:16:55 1995 Ian Lance Taylor <ian@cygnus.com> + + * expr.c (current_location): New static function. Handle magic + symbol `.'; in absolute section, return a constant. + (operand): Call current_location for '.' and '$', instead of doing + it inline. In MRI mode, call current_location for '*'. + Fri Sep 15 21:39:29 1995 Jeff Law (law@snake.cs.utah.edu) * config/tc-m68k.c: Change some "CONST" references to "const". diff --git a/gas/configure b/gas/configure index 34064ce..63bb37f 100755 --- a/gas/configure +++ b/gas/configure @@ -735,7 +735,7 @@ for this_target in $target $canon_targets ; do mips-dec-bsd*) fmt=aout targ=mips-lit ;; mips-sony-bsd*) fmt=ecoff targ=mips-big ;; mips-*-bsd*) { echo "configure: error: Unknown vendor for mips-bsd configuration." 1>&2; exit 1; } ;; - mips-*-ultrix*) fmt=ecoff targ=mips-lit ;; + mips-*-ultrix*) fmt=ecoff targ=mips-lit endian=little ;; mips-*-ecoff*) fmt=ecoff case "$endian" in big) targ=mips-big ;; diff --git a/gas/configure.in b/gas/configure.in index e1fa002..e09aee9 100644 --- a/gas/configure.in +++ b/gas/configure.in @@ -208,7 +208,7 @@ changequote([,])dnl mips-dec-bsd*) fmt=aout targ=mips-lit ;; mips-sony-bsd*) fmt=ecoff targ=mips-big ;; mips-*-bsd*) AC_MSG_ERROR(Unknown vendor for mips-bsd configuration.) ;; - mips-*-ultrix*) fmt=ecoff targ=mips-lit ;; + mips-*-ultrix*) fmt=ecoff targ=mips-lit endian=little ;; mips-*-ecoff*) fmt=ecoff case "$endian" in big) targ=mips-big ;; |