aboutsummaryrefslogtreecommitdiff
path: root/gas
diff options
context:
space:
mode:
authorIan Lance Taylor <ian@airs.com>1994-08-24 16:48:38 +0000
committerIan Lance Taylor <ian@airs.com>1994-08-24 16:48:38 +0000
commit904b6037e8db9ed67ed57724150349794f6bc1f6 (patch)
tree8808fe41f5083a44789d686087baa1f19dee6cc3 /gas
parentc730978489bdb5c19b7be0e0b8eef7628a033771 (diff)
downloadgdb-904b6037e8db9ed67ed57724150349794f6bc1f6.zip
gdb-904b6037e8db9ed67ed57724150349794f6bc1f6.tar.gz
gdb-904b6037e8db9ed67ed57724150349794f6bc1f6.tar.bz2
* configure.in: Recognize i586 as a synonym for i[34]86.
Diffstat (limited to 'gas')
-rw-r--r--gas/ChangeLog16
-rw-r--r--gas/configure.in20
2 files changed, 29 insertions, 7 deletions
diff --git a/gas/ChangeLog b/gas/ChangeLog
index 1f81d9d..82d9296 100644
--- a/gas/ChangeLog
+++ b/gas/ChangeLog
@@ -1,3 +1,19 @@
+Wed Aug 24 12:46:08 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
+
+ * configure.in: Recognize i586 as a synonym for i[34]86.
+
+Tue Aug 23 12:32:14 1994 Ian Lance Taylor (ian@sanguine.cygnus.com)
+
+ * config/obj-coff.c (c_line_new): Change line_number argument from
+ unsigned short to int so that the type in the prototype matches
+ the promoted type in the definition.
+ (stack_delete): Comment out; not used.
+ * config/obj-coff.h (tc_coff_symbol_emit_hook): Declare if not
+ BFD_ASSEMBLER, not if BFD_ASSEMBLER. Declare argument type.
+ * config/tc-m68k.h (tc_coff_sizemachdep): Declare.
+ * config/tc-m68k.c (tc_coff_symbol_emit_hook): Add ignored
+ argument.
+
Tue Aug 16 01:48:20 1994 Jeff Law (law@snake.cs.utah.edu)
* gas/config/tc-hppa.c (pa_comm): Set sy_frag for the common
diff --git a/gas/configure.in b/gas/configure.in
index ee9ddc1..7d74c60 100644
--- a/gas/configure.in
+++ b/gas/configure.in
@@ -47,11 +47,12 @@ case "${host}" in
hppa*-*-osf*) gas_host=hppaosf ;;
hppa*-*-hiux*) gas_host=hpux ;;
- i[34]86-ibm-aix*) gas_host=i386aix ;;
- i[34]86-*-isc*) gas_host=sysv ;;
- i386-sun-sunos*) gas_host=sun386 ;;
- i386-*-mach*) gas_host=mach3 ;;
- i386-*-go32) target_makefile_frag=config/go32.mh ;;
+ i[345]86-ibm-aix*) gas_host=i386aix ;;
+ i[345]86-*-isc*) gas_host=sysv ;;
+ i[345]86-sun-sunos*) gas_host=sun386 ;;
+ i[345]86-*-mach*) gas_host=mach3 ;;
+ i[345]86-*-go32) host_makefile_frag=config/go32.mh
+ gas_host=go32 ;;
m68k-sun-sunos*) gas_host=sun3 ;;
m68*-*-hpux) gas_host=hpux ;;
@@ -108,7 +109,7 @@ case ${target_cpu} in
# Actually we've only got support for the 1.1, so we shouldn't generalize,
# but this is what the support files are named...
hppa*) cpu_type=hppa ;;
- i486) cpu_type=i386 ;;
+ i[45]86) cpu_type=i386 ;;
m680[012346]0) cpu_type=m68k ;;
m68008) cpu_type=m68k ;;
m683??) cpu_type=m68k ;;
@@ -217,10 +218,15 @@ case ${generic_target} in
;;
ppc-*-aix*) obj_format=coff bfd_gas=yes ;;
+ ppc-*-elf*) obj_format=elf bfd_gas=yes ;;
+ ppc-*-netware*) obj_format=elf emulation=ppcnw ;;
ppc-*-sysv4*) obj_format=elf bfd_gas=yes ;;
sh-*-coff) obj_format=coff ;;
+ ns32k-pc532-mach*) obj_format=aout emulation=pc532 bfd_gas=yes ;;
+ ns32k-pc532-netbsd*) obj_format=aout emulation=netbsd532 bfd_gas=yes ;;
+
sparc*-*-sunos4*) obj_format=aout emulation=sun3 bfd_gas=yes ;;
sparc*-*-aout | sparc*-*-vxworks)
obj_format=aout bfd_gas=yes ;;
@@ -257,7 +263,7 @@ esac
# IEEE FP. On those that don't support FP at all, usually IEEE
# is emulated.
case ${target_cpu} in
- ns32k | vax | tahoe ) atof=${target_cpu} ;;
+ vax | tahoe ) atof=${target_cpu} ;;
*) atof=ieee ;;
esac