* configure.in (i[34]86-*-sco*): Move to be with other i386 targets.
(romp-*-*): New target. Skip various binary utilities. (vax-*-*): New target. Don't build newlib. (vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
This commit is contained in:
parent
92400edbcd
commit
de9117a714
2 changed files with 20 additions and 6 deletions
|
@ -1,3 +1,11 @@
|
|||
Tue May 3 21:48:11 1994 Ken Raeburn (raeburn@cujo.cygnus.com)
|
||||
|
||||
* configure.in (i[34]86-*-sco*): Move to be with other i386
|
||||
targets.
|
||||
(romp-*-*): New target. Skip various binary utilities.
|
||||
(vax-*-*): New target. Don't build newlib.
|
||||
(vax-*-vms): Renamed from *-*-vms. Don't build opcodes or newlib.
|
||||
|
||||
Thu Apr 28 15:03:05 1994 David J. Mackenzie (djm@rtl.cygnus.com)
|
||||
|
||||
* configure.in: Only set host_makefile_frag if config
|
||||
|
|
18
configure.in
18
configure.in
|
@ -203,6 +203,9 @@ case "${target}" in
|
|||
# add the go32 support tools to the list
|
||||
configdirs=`echo go32 ${configdirs}`
|
||||
;;
|
||||
i[34]86-*-sco*)
|
||||
noconfigdirs="$noconfigdirs gprof"
|
||||
;;
|
||||
i[34]86-*-solaris2*)
|
||||
# The linker does static linking correctly, but the Solaris C library
|
||||
# has bugs such that some important functions won't work when statically
|
||||
|
@ -242,6 +245,9 @@ case "${target}" in
|
|||
mips*-*-*)
|
||||
noconfigdirs="$noconfigdirs gprof"
|
||||
;;
|
||||
romp-*-*)
|
||||
noconfigdirs="bfd binutils ld gas opcodes"
|
||||
;;
|
||||
sh-*-*)
|
||||
case "${host}" in
|
||||
i[34]86-*-vsta) ;; # don't add gprof back in
|
||||
|
@ -257,19 +263,19 @@ case "${target}" in
|
|||
# See i386-*-solaris2* above.
|
||||
noconfigdirs="$noconfigdirs ld"
|
||||
;;
|
||||
i[34]86-*-sco*)
|
||||
noconfigdirs="$noconfigdirs gprof"
|
||||
vax-*-vms)
|
||||
noconfigdirs="$noconfigdirs bfd binutils gdb ld newlib opcodes"
|
||||
;;
|
||||
vax-*-*)
|
||||
noconfigdirs="$noconfigdirs newlib"
|
||||
;;
|
||||
*-*-sysv4)
|
||||
use_gnu_ld=no
|
||||
;;
|
||||
*-*-lynxos*)
|
||||
*-*-lynxos*)
|
||||
# Newlib makes problems for libg++ in crosses.
|
||||
noconfigdirs="$noconfigdirs newlib"
|
||||
;;
|
||||
*-*-vms)
|
||||
noconfigdirs="$noconfigdirs bfd ld binutils gdb"
|
||||
;;
|
||||
esac
|
||||
|
||||
notsupp=""
|
||||
|
|
Loading…
Reference in a new issue