mirror of
https://github.com/espressif/binutils-gdb.git
synced 2025-06-21 18:39:34 +08:00
fix HPUX hosting problems
This commit is contained in:
@ -1,3 +1,11 @@
|
|||||||
|
Thu Jun 24 16:33:53 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
|
* configure.in: set host config to hpux for hppa*-hp-hpux
|
||||||
|
|
||||||
|
Mon Jun 21 17:37:59 1993 david d `zoo' zuhn (zoo at cirdan.cygnus.com)
|
||||||
|
|
||||||
|
* Makefile.in: make installation & builds work again for crosses
|
||||||
|
|
||||||
Thu Jun 17 16:53:56 1993 david d `zoo' zuhn (zoo@cygnus.com)
|
Thu Jun 17 16:53:56 1993 david d `zoo' zuhn (zoo@cygnus.com)
|
||||||
|
|
||||||
* Makefile.in: canonicalize install.sh; for use within
|
* Makefile.in: canonicalize install.sh; for use within
|
||||||
|
@ -42,7 +42,7 @@ case "${host}" in
|
|||||||
|
|
||||||
alpha-*-osf*) gas_host=ansi ;;
|
alpha-*-osf*) gas_host=ansi ;;
|
||||||
|
|
||||||
hppa*-hp-hpux*) gas_host=hppahpux ;;
|
hppa*-hp-hpux*) gas_host=hpux ;;
|
||||||
hppa*-hp-bsd*) gas_host=hppabsd ;;
|
hppa*-hp-bsd*) gas_host=hppabsd ;;
|
||||||
hppa*-hp-osf*) gas_host=hppaosf ;;
|
hppa*-hp-osf*) gas_host=hppaosf ;;
|
||||||
|
|
||||||
@ -97,7 +97,7 @@ emulation=generic
|
|||||||
# check for architecture variants
|
# check for architecture variants
|
||||||
case ${target_cpu} in
|
case ${target_cpu} in
|
||||||
sparclite*) cpu_type=sparc ;;
|
sparclite*) cpu_type=sparc ;;
|
||||||
sparc64) cpu_type=sparc obj_format=aout ;;
|
sparc64) cpu_type=sparc obj_format=aout ;; # v9
|
||||||
m680[01234]0) cpu_type=m68k ;;
|
m680[01234]0) cpu_type=m68k ;;
|
||||||
m683??) cpu_type=m68k ;;
|
m683??) cpu_type=m68k ;;
|
||||||
i486) cpu_type=i386 ;;
|
i486) cpu_type=i386 ;;
|
||||||
@ -145,6 +145,8 @@ case ${generic_target} in
|
|||||||
mips-*-ecoff*) obj_format=ecoff gas_target=mips-big ;;
|
mips-*-ecoff*) obj_format=ecoff gas_target=mips-big ;;
|
||||||
mips-*-irix*) obj_format=ecoff gas_target=mips-big emulation=irix ;;
|
mips-*-irix*) obj_format=ecoff gas_target=mips-big emulation=irix ;;
|
||||||
|
|
||||||
|
sparc*-*-sunos4*) bfd_gas=preferred obj_format=aout emulation=sun3 ;;
|
||||||
|
|
||||||
sparclite*-fujitsu-none)
|
sparclite*-fujitsu-none)
|
||||||
obj_format=aout ;;
|
obj_format=aout ;;
|
||||||
|
|
||||||
@ -206,18 +208,23 @@ case ${bfd_gas}-${obj_format} in
|
|||||||
*) ;;
|
*) ;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
case ${with_bfd_assembler} in
|
case ${with_bfd_assembler}-${bfd_gas} in
|
||||||
"")
|
yes-yes | no-no)
|
||||||
# User specified nothing.
|
|
||||||
;;
|
|
||||||
"${bfd_gas}")
|
|
||||||
# We didn't override user's choice.
|
# We didn't override user's choice.
|
||||||
;;
|
;;
|
||||||
no)
|
no-yes)
|
||||||
# ... but we overrode it.
|
|
||||||
echo '*** Use of BFD is required for ${target}; overriding config options'\
|
echo '*** Use of BFD is required for ${target}; overriding config options'\
|
||||||
1>&2
|
1>&2
|
||||||
;;
|
;;
|
||||||
|
no-preferred)
|
||||||
|
bfd_gas=no
|
||||||
|
;;
|
||||||
|
*-preferred)
|
||||||
|
bfd_gas=yes
|
||||||
|
;;
|
||||||
|
-*)
|
||||||
|
# User specified nothing.
|
||||||
|
;;
|
||||||
esac
|
esac
|
||||||
|
|
||||||
files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
|
files="config/ho-${gas_host}.h config/tc-${cpu_type}.c \
|
||||||
|
Reference in New Issue
Block a user