]> Git Repo - binutils.git/blobdiff - bfd/configure.in
Initial revision
[binutils.git] / bfd / configure.in
index a55cf40b1fbd7fd26776e2928979c8a044b2ff4b..b1c241ba7243d7c88a3fb7f0daf7788a0974d37a 100644 (file)
 # existing configure script.
 
 srctrigger=libbfd.c
-srcname="bfd"
+srcname="BFD"
 
 # per-host:
 
-if [ "${host_os}" = "posix" ] ; then
-       bfd_host=posix
-else
-       case "${host_cpu}" in
-       rs6000) bfd_host=aix ;;
-       mips)
-               case "${host_vendor}" in
-               dec)    bfd_host=dec3100 ;;
-               sgi)    bfd_host=irix3 ;;
+case "${host_cpu}" in
+
+rs6000)        my_host=rs6000
+       ;;
+
+mips)
+       case "${host_vendor}" in
+       dec)    my_host=decstation ;;
+       sgi)    my_host=irix3 ;;
+       esac
+       ;;
+
+m88k)
+       case "${host_vendor}" in
+       *)
+               case "${host_os}" in
+               dgux)   my_host=dgux ;;
                esac
                ;;
-       m88k)
-               case "${host_vendor}" in
-               *)
-                       case "${host_os}" in
-                       dgux)   bfd_host=dgux ;;
-                       esac
-                       ;;
+       esac
+       ;;
+
+m68k)
+       case "${host_vendor}" in
+       cbm)
+               case ${host_os} in
+               amigados)       my_host=amigados ;;
+               svr4)           my_host=amix ;;
                esac
                ;;
-       m68k)
-               case "${host_vendor}" in
-               hp)     
-                       case "${host_os}" in
-                       hpux)   bfd_host=hp9000 ;;
-                       bsd)    bfd_host=hp300bsd ;;
-                       esac
-                       ;;
-               sony)   bfd_host=news ;;
-               sun)    bfd_host=sun3 ;;
+       hp)     
+               case "${host_os}" in
+               hpux)   my_host=hp9000 ;;
+               bsd)    my_host=hp300bsd ;;
                esac
                ;;
+       sony)   my_host=news ;;
+       sun)    my_host=sun3 ;;
+       esac
+       ;;
 
-       i386)
-               case "${host_vendor}" in
-               *)
-                       case "${host_os}" in
-                       sysv)   bfd_host=i386v ;;
-                       esac
-                       ;;
+i386)
+       case "${host_vendor}" in
+       *)
+               case "${host_os}" in
+               sysv)   my_host=i386v ;;
+               mach)   my_host=i386mach ;;
+               msdos)  my_host=dose ;;
                esac
                ;;
+       esac
+       ;;
 
-       sparc)
-               case "${host_vendor}" in
-               sun)    bfd_host=sun4 ;;
-               esac
-               ;;
+sparc)
+       case "${host_os}" in
+       sunos64)        my_host=sparc-ll ;;
+       *)              my_host=sparc ;;
+       esac
+       ;;
 
-       rtpc)   bfd_host=rtbsd
-               ;;
+romp)  my_host=rtbsd
+       ;;
 
-       a29k)   bfd_host=ultra3
-               ;;
+a29k)  my_host=ultra3
+       ;;
 
-       tahoe | vax)
-               bfd_host=${host_cpu}
-               ;;
+tahoe)
+       my_host=tahoe
+       ;;
+
+vax)
+       case "${host_os}" in
+       ultrix) my_host=vaxult ;;
+       *) my_host=vaxbsd ;;
        esac
-fi
+       ;;
+esac
+
+# Set up to make a link between the host's include file and "sysdep.h".
+files="hosts/h-${my_host}.h"
+links="sysdep.h"
 
-if [ ! -f config/h-${bfd_host} ] ; then
-       echo '***' BFD does not support host ${host}: no file config/h-${bfd_host}
+if [ ! -f ${files} ] ; then
+       if [ -n "${my_host}" ] ; then
+               echo '***' No file ${files}
+       fi
+       echo '***' ${srcname} does not support host ${host}
        exit 1
 fi
 
-host_makefile_frag=config/h-${bfd_host}
+host_makefile_frag=
+if [ -f config/mh-${my_host} ] ; then
+       host_makefile_frag=config/mh-${my_host}
+fi
 
 # per-target:
 
 case "${target_vendor}" in
-aout | coff | bout) bfd_target=${target_cpu}-${target_vendor} ;;
+aout | coff | bout | elf) bfd_target=${target_cpu}-${target_vendor} ;;
 sony)  bfd_target=news ;;
 intel) bfd_target=${target_cpu}-coff ;;        
+cbm)   bfd_target=${target_cpu}-elf ;;
+
+ibm)   my_host=rs6000
+       case "${target_cpu}" in
+       rs6000) bfd_target=rs6000 ;;
+       esac
+       ;;
+
+amd)
+       case "${target_os}"  in
+               ebmon) bfd_target=a29k-coff ;;
+               *) bfd_target=a29k-aout ;;
+       esac
+       ;;
 
 hitachi)
        case "${target_cpu}" in
@@ -105,7 +146,8 @@ sun)
        ;;
 dec)
        case "${target_cpu}" in
-       mips) bfd_target=dec3100 ;;
+       mips) bfd_target=decstation ;;
+       vax) bfd_target=vax ;;
        esac
        ;;
 hp)
@@ -124,9 +166,9 @@ sgi)
                bfd_target=irix3 ;;
        esac
        ;;
-none|nyu)
+none|nyu|sco)
        case "${target_cpu}" in
-       i386) bfd_target=i386-coff ;;
+       i386) bfd_target=i386_coff ;;
        a29k) case "${target_os}" in
                aout) bfd_target=a29k-aout ;;
                coff) bfd_target=a29k-coff ;;
@@ -143,12 +185,14 @@ none|nyu)
        ;;
 esac
 
-if [ ! -f config/t-${bfd_target} ] ; then
-       echo '***' BFD does not support target ${target}: no file config/t-${bfd_target}
+if [ ! -f config/mt-${bfd_target} ] ; then
+       if [ -n "${bfd_target}" ] ; then
+               echo '***' No file config/mt-${bfd_target}
+       fi
+       echo '***' BFD does not support target ${target}
        exit 1
 fi
+target_makefile_frag=config/mt-${bfd_target}
 
-target_makefile_frag=config/t-${bfd_target}
-
-files=
-links=
+# We don't do any links based on the target system, just very minor makefile
+# config.
This page took 0.027509 seconds and 4 git commands to generate.