changes from Minh Tran-Le <TRANLE@INTELLICORP.COM> to support i386

coff as it appears to be used on aix386.
This commit is contained in:
K. Richard Pixley
1992-02-21 11:04:51 +00:00
parent e39469d91a
commit 6d5460ab89
9 changed files with 325 additions and 138 deletions

View File

@ -1,4 +1,4 @@
# This file is configure.inj
# This file is configure.in
#
# Copyright (C) 1987-1992 Free Software Foundation, Inc.
#
@ -40,6 +40,11 @@ mips)
ultrix) gas_host=decstation ;;
esac
;;
i386)
case "${host_os}" in
aix*) gas_host=i386aix ;;
esac
;;
*)
case "${host_os}" in
ansi | ultrix | hpux | sysv*) gas_host=${host_os} ;;
@ -67,6 +72,14 @@ cpu_type=${target_cpu}
# assign object format
case ${target_os} in
aix*)
case "${target_cpu}" in
i386) obj_format=coff
target_cpu=i386aix
;;
esac
;;
bout*) obj_format=bout ;;
nindy*) obj_format=bout ;;
bsd* | sunos*) obj_format=aout ;;