1 # configure.in for GNU CC
2 # Process this file with autoconf to generate a configuration script.
4 # Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
6 #This file is part of GNU CC.
8 #GNU CC is free software; you can redistribute it and/or modify
9 #it under the terms of the GNU General Public License as published by
10 #the Free Software Foundation; either version 2, or (at your option)
13 #GNU CC is distributed in the hope that it will be useful,
14 #but WITHOUT ANY WARRANTY; without even the implied warranty of
15 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 #GNU General Public License for more details.
18 #You should have received a copy of the GNU General Public License
19 #along with GNU CC; see the file COPYING. If not, write to
20 #the Free Software Foundation, 59 Temple Place - Suite 330,
21 #Boston, MA 02111-1307, USA.
23 # Initialization and defaults
26 AC_CONFIG_HEADER(auto-host.h:config.in)
33 # Check for bogus environment variables.
34 # Test if LIBRARY_PATH contains the notation for the current directory
35 # since this would lead to problems installing/building glibc.
36 # LIBRARY_PATH contains the current directory if one of the following
38 # - one of the terminals (":" and ";") is the first or last sign
39 # - two terminals occur directly after each other
40 # - the path contains an element with a dot in it
41 AC_MSG_CHECKING(LIBRARY_PATH variable)
43 case ${LIBRARY_PATH} in
44 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
45 library_path_setting="contains current directory"
48 library_path_setting="ok"
52 AC_MSG_RESULT($library_path_setting)
53 if test "$library_path_setting" != "ok"; then
55 *** LIBRARY_PATH shouldn't contain the current directory when
56 *** building gcc. Please change the environment variable
57 *** and run configure again.])
60 # Test if GCC_EXEC_PREFIX contains the notation for the current directory
61 # since this would lead to problems installing/building glibc.
62 # GCC_EXEC_PREFIX contains the current directory if one of the following
64 # - one of the terminals (":" and ";") is the first or last sign
65 # - two terminals occur directly after each other
66 # - the path contains an element with a dot in it
67 AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
69 case ${GCC_EXEC_PREFIX} in
70 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
71 gcc_exec_prefix_setting="contains current directory"
74 gcc_exec_prefix_setting="ok"
78 AC_MSG_RESULT($gcc_exec_prefix_setting)
79 if test "$gcc_exec_prefix_setting" != "ok"; then
81 *** GCC_EXEC_PREFIX shouldn't contain the current directory when
82 *** building gcc. Please change the environment variable
83 *** and run configure again.])
86 # Check for additional parameters
90 [ --with-gnu-ld arrange to work with GNU ld.],
91 gnu_ld_flag="$with_gnu_ld",
96 [ --with-ld arrange to use the specified ld (full pathname).],
97 DEFAULT_LINKER="$with_ld")
98 if test x"${DEFAULT_LINKER+set}" = x"set"; then
99 if test ! -x "$DEFAULT_LINKER"; then
100 AC_MSG_WARN([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
101 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
104 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER")
109 [ --with-gnu-as arrange to work with GNU as.],
110 gas_flag="$with_gnu_as",
114 [ --with-as arrange to use the specified as (full pathname).],
115 DEFAULT_ASSEMBLER="$with_as")
116 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
117 if test ! -x "$DEFAULT_ASSEMBLER"; then
118 AC_MSG_WARN([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
119 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
122 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER")
127 [ --with-stabs arrange to use stabs instead of host debug format.],
133 [ --with-elf arrange to use ELF instead of host debug format.],
137 # Specify the local prefix
139 AC_ARG_WITH(local-prefix,
140 [ --with-local-prefix=DIR specifies directory to put local include.],
141 [case "${withval}" in
142 yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
144 *) local_prefix=$with_local_prefix ;;
147 # Default local prefix if it is empty
148 if test x$local_prefix = x; then
149 local_prefix=/usr/local
152 # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
153 # passed in by the toplevel make and thus we'd get different behavior
154 # depending on where we built the sources.
156 # Specify the g++ header file directory
157 AC_ARG_WITH(gxx-include-dir,
158 [ --with-gxx-include-dir=DIR
159 specifies directory to put g++ header files.],
160 [case "${withval}" in
161 yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
163 *) gcc_gxx_include_dir=$with_gxx_include_dir ;;
166 if test x${gcc_gxx_include_dir} = x; then
167 if test x${enable_version_specific_runtime_libs} = xyes; then
168 gcc_gxx_include_dir='${libsubdir}/include/g++'
170 topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
171 changequote(<<, >>)dnl
172 gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/g++"-${libstdcxx_interface}
177 # Enable expensive internal checks
178 AC_ARG_ENABLE(checking,
179 [ --enable-checking enable expensive run-time checks.],
180 [case "${enableval}" in
181 yes) AC_DEFINE(ENABLE_CHECKING) ;;
183 *) AC_MSG_ERROR(bad value ${enableval} given for checking option) ;;
187 [ --disable-cpp don't provide a user-visible C preprocessor.],
188 [], [enable_cpp=yes])
190 AC_ARG_WITH(cpp_install_dir,
191 [ --with-cpp-install-dir=DIR
192 install the user visible C preprocessor in DIR
193 (relative to PREFIX) as well as PREFIX/bin.],
194 [if test x$withval = xyes; then
195 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
196 elif test x$withval != xno; then
197 cpp_install_dir=$withval
200 # Use cpplib+cppmain for the preprocessor, but don't link it with the compiler.
202 AC_ARG_ENABLE(cpplib,
203 [ --enable-cpplib use cpplib for the C preprocessor.],
204 if test x$enable_cpplib != xno; then
208 # Link cpplib into the compiler proper, for C/C++/ObjC.
209 AC_ARG_ENABLE(c-cpplib,
210 [ --enable-c-cpplib link cpplib directly into C and C++ compilers
211 (EXPERIMENTAL) (implies --enable-cpplib).],
212 if test x$enable_c_cpplib != xno; then
213 extra_c_objs="${extra_c_objs} libcpp.a"
214 extra_cxx_objs="${extra_cxx_objs} ../libcpp.a"
215 extra_c_flags="${extra_c_flags} -DUSE_CPPLIB=1"
219 # Disable fast fixincludes
220 AC_ARG_ENABLE(fast-fixincludes,
221 [ --disable-fast-fixincludes
222 Disable the new fast fixincludes.
223 Run the old fixincludes script unconditionally],
224 if test x$enable_fast_fixincludes = xno ; then
225 cp $srcdir/fixincludes ./fixinc.sh
228 # Enable Multibyte Characters for C/C++
229 AC_ARG_ENABLE(c-mbchar,
230 [ --enable-c-mbchar Enable multibyte characters for C and C++.],
231 if [[[ x$enable_c_mbchar != xno ]]]; then
232 extra_c_flags=-DMULTIBYTE_CHARS=1
236 # Pass with no value to take the default
237 # Pass with a value to specify a thread package
238 AC_ARG_ENABLE(threads,
239 [ --enable-threads enable thread usage for target GCC.
240 --enable-threads=LIB use LIB thread package for target GCC.],
241 if test x$enable_threads = xno; then
246 enable_threads_flag=$enable_threads
247 # Check if a valid thread package
248 case x${enable_threads_flag} in
251 target_thread_file='single'
255 target_thread_file=''
257 xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
258 xsolaris | xwin32 | xdce | xvxworks)
259 target_thread_file=$enable_threads_flag
262 echo "$enable_threads is an unknown thread package" 1>&2
267 AC_ARG_ENABLE(objc-gc,
268 [ --enable-objc-gc enable the use of Boehm's garbage collector with
269 the GNU Objective-C runtime.],
270 if [[[ x$enable_objc_gc = xno ]]]; then
278 [ --enable-dwarf2 enable DWARF2 debugging as default.],
279 dwarf2="$with_dwarf2",
282 # Determine the host, build, and target systems
285 # Find the native compiler
289 # If the native compiler is GCC, we can enable warnings even in stage1.
290 # That's useful for people building cross-compilers, or just running a
292 if test "x$GCC" = "xyes"; then
293 stage1_warn_cflags='$(WARN_CFLAGS)'
295 stage1_warn_cflags=""
297 AC_SUBST(stage1_warn_cflags)
301 AC_MSG_CHECKING([whether a default assembler was specified])
302 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
303 if test x"$gas_flag" = x"no"; then
304 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
306 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
312 AC_MSG_CHECKING([whether a default linker was specified])
313 if test x"${DEFAULT_LINKER+set}" = x"set"; then
314 if test x"$gnu_ld_flag" = x"no"; then
315 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
317 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
323 # Find some useful tools
337 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
338 fcntl.h unistd.h stab.h sys/file.h sys/time.h \
339 sys/resource.h sys/param.h sys/times.h sys/stat.h \
342 # Check for thread headers.
343 AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
344 AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
346 # See if GNAT has been installed
347 AC_CHECK_PROG(gnat, gnatbind, yes, no)
349 # See if the stage1 system preprocessor understands the ANSI C
350 # preprocessor stringification operator.
353 # Use <inttypes.h> only if it exists,
354 # doesn't clash with <sys/types.h>, and declares intmax_t.
355 AC_MSG_CHECKING(for inttypes.h)
356 AC_CACHE_VAL(gcc_cv_header_inttypes_h,
358 [#include <sys/types.h>
359 #include <inttypes.h>],
361 [gcc_cv_header_inttypes_h=yes],
362 gcc_cv_header_inttypes_h=no)])
363 AC_MSG_RESULT($gcc_cv_header_inttypes_h)
364 if test $gcc_cv_header_inttypes_h = yes; then
365 AC_DEFINE(HAVE_INTTYPES_H)
368 AC_CHECK_FUNCS(strtoul bsearch strerror putenv popen bcopy bzero bcmp \
369 index rindex strchr strrchr kill getrlimit setrlimit atoll atoq \
370 sysconf isascii gettimeofday strsignal putc_unlocked fputc_unlocked \
371 fputs_unlocked getrusage)
373 # Make sure wchar_t is available
374 #AC_CHECK_TYPE(wchar_t, unsigned int)
376 GCC_FUNC_VFPRINTF_DOPRNT
381 # Under some versions of uwin, vfork is notoriously buggy and the test
382 # can hang configure; on other versions, vfork exists just as a stub.
383 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
384 ac_cv_func_vfork_works=no
389 GCC_NEED_DECLARATIONS(bcopy bzero bcmp \
390 index rindex getenv atol sbrk abort atof strerror getcwd getwd \
391 strsignal putc_unlocked fputs_unlocked strstr)
393 GCC_NEED_DECLARATIONS(malloc realloc calloc free, [
399 GCC_NEED_DECLARATIONS(getrlimit setrlimit getrusage, [
400 #include <sys/types.h>
401 #ifdef HAVE_SYS_RESOURCE_H
402 #include <sys/resource.h>
408 # mkdir takes a single argument on some systems.
409 GCC_FUNC_MKDIR_TAKES_ONE_ARG
419 build_install_headers_dir=install-headers-tar
424 host_truncate_target=
427 # Decode the host machine, then the target machine.
428 # For the host machine, we save the xm_file variable as host_xm_file;
429 # then we decode the target machine and forget everything else
430 # that came from the host machine.
431 for machine in $build $host $target; do
445 # Set this to force installation and use of collect2.
447 # Set this to override the default target model.
449 # Set this to control how the header file directory is installed.
450 install_headers_dir=install-headers-tar
451 # Set this to a non-empty list of args to pass to cpp if the target
452 # wants its .md file passed through cpp.
454 # Set this if directory names should be truncated to 14 characters.
456 # Set this if gdb needs a dir command with `dirname $out_file`
457 gdb_needs_out_file_path=
458 # Set this if the build machine requires executables to have a
461 # Set this to control which thread package will be used.
463 # Reinitialize these from the flag values every loop pass, since some
464 # configure entries modify them.
466 gnu_ld="$gnu_ld_flag"
467 enable_threads=$enable_threads_flag
469 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
470 # updated in each machine entry.
472 cpu_type=`echo $machine | sed 's/-.*$//'`
508 tm_file=${cpu_type}/${cpu_type}.h
509 xm_file=${cpu_type}/xm-${cpu_type}.h
510 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h;
512 tm_p_file=${cpu_type}/${cpu_type}-protos.h;
514 # On a.out targets, we need to use collect2.
521 # Common parts for linux-gnu and openbsd systems
524 xm_defines="HAVE_ATEXIT POSIX BSTRING"
527 tm_file=${cpu_type}/openbsd.h
528 tmake_file="t-libc-ok t-openbsd"
529 # avoid surprises, always provide an xm-openbsd file
530 xm_file=${cpu_type}/xm-openbsd.h
531 # don't depend on processor x-fragments as well
533 if test x$enable_threads = xyes; then
535 tmake_file="${tmake_file} t-openbsd-thread"
541 # Support site-specific machine types.
543 cpu_type=`echo $machine | sed -e 's/-.*//'`
544 rest=`echo $machine | sed -e "s/$cpu_type-//"`
545 xm_file=${cpu_type}/xm-$rest.h
546 tm_file=${cpu_type}/$rest.h
547 if test -f $srcdir/config/${cpu_type}/x-$rest; \
548 then xmake_file=${cpu_type}/x-$rest; \
551 if test -f $srcdir/config/${cpu_type}/t-$rest; \
552 then tmake_file=${cpu_type}/t-$rest; \
558 a29k-*-bsd* | a29k-*-sym1*)
559 tm_file="${tm_file} a29k/unix.h"
561 xmake_file=a29k/x-unix
564 a29k-*-udi | a29k-*-coff)
565 tm_file="${tm_file} dbxcoff.h a29k/udi.h"
566 tmake_file=a29k/t-a29kbare
569 tm_file="${tm_file} dbxcoff.h a29k/udi.h a29k/vx29k.h"
570 tmake_file=a29k/t-vx29k
571 extra_parts="crtbegin.o crtend.o"
572 thread_file='vxworks'
574 a29k-*-*) # Default a29k environment.
578 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
580 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
581 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
583 # GAS + IEEE_CONFORMANT
584 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
586 xm_file="alpha/xm-alpha-interix.h xm-interix.h"
587 xmake_file="x-interix alpha/t-pe"
588 tmake_file="alpha/t-interix alpha/t-ieee"
589 if test x$enable_threads = xyes ; then
592 if test x$stabs = xyes ; then
593 tm_file="${tm_file} dbxcoff.h"
595 #prefix='$$INTERIX_ROOT'/usr/contrib
596 #local_prefix='$$INTERIX_ROOT'/usr/contrib
598 alpha*-*-linux-gnuecoff*)
599 tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h"
600 target_cpu_default="MASK_GAS"
601 tmake_file="alpha/t-ieee"
606 alpha*-*-linux-gnulibc1*)
607 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
608 target_cpu_default="MASK_GAS"
609 tmake_file="t-linux t-linux-gnulibc1 alpha/t-linux alpha/t-crtbe alpha/t-ieee"
610 extra_parts="crtbegin.o crtend.o"
613 if test x$enable_threads = xyes; then
618 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
619 target_cpu_default="MASK_GAS"
620 tmake_file="t-linux alpha/t-linux alpha/t-crtbe alpha/t-ieee"
621 extra_parts="crtbegin.o crtend.o"
624 if test x$enable_threads = xyes; then
629 tm_file="${tm_file} alpha/elf.h alpha/netbsd.h alpha/netbsd-elf.h"
630 target_cpu_default="MASK_GAS"
631 tmake_file="alpha/t-crtbe alpha/t-ieee"
632 extra_parts="crtbegin.o crtend.o"
638 # default x-alpha is only appropriate for dec-osf.
639 target_cpu_default="MASK_GAS"
640 tmake_file="alpha/t-ieee"
644 if test x$stabs = xyes
646 tm_file="${tm_file} dbx.h"
648 if test x$gas != xyes
650 extra_passes="mips-tfile mips-tdump"
653 tmake_file="alpha/t-ieee"
656 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
661 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
664 tm_file="${tm_file} alpha/osf.h"
665 # Some versions of OSF4 (specifically X4.0-9 296.7) have
666 # a broken tar, so we use cpio instead.
667 install_headers_dir=install-headers-cpio
670 tm_file="${tm_file} alpha/osf.h"
675 *-*-osf4.0[b-z] | *-*-osf4.[1-9]*)
677 target_cpu_default=MASK_SUPPORT_ARCH
682 tm_file="${tm_file} dbx.h alpha/vxworks.h"
683 tmake_file="alpha/t-ieee"
686 extra_passes="mips-tfile mips-tdump"
689 thread_file='vxworks'
692 tm_file="${tm_file} alpha/alpha32.h alpha/win-nt.h winnt/win-nt.h"
693 xm_file="${xm_file} config/winnt/xm-winnt.h alpha/xm-winnt.h"
694 tmake_file="t-libc-ok alpha/t-ieee"
695 xmake_file=winnt/x-winnt
696 extra_host_objs=oldnames.o
697 extra_gcc_objs="spawnv.o oldnames.o"
698 if test x$gnu_ld != xyes
700 extra_programs=ld.exe
702 if test x$enable_threads = xyes; then
708 xm_file="${xm_file} alpha/xm-vms.h"
709 tmake_file="alpha/t-vms alpha/t-ieee"
712 extra_parts="crtinit.o crtfini.o"
714 arm-*-coff* | armel-*-coff*)
716 tmake_file=arm/t-bare
720 tmake_file=arm/t-bare
721 thread_file='vxworks'
724 arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
726 tm_file=arm/riscix1-1.h
729 arm-*-riscix*) # Acorn RISC machine
732 tm_file=arm/rix-gas.h
736 xmake_file=arm/x-riscix
737 tmake_file=arm/t-riscix
740 arm-semi-aout | armel-semi-aout)
742 tmake_file=arm/t-semi
744 arm-semi-aof | armel-semi-aof)
745 tm_file=arm/semiaof.h
746 tmake_file=arm/t-semiaof
750 xm_file="arm/xm-netbsd.h ${xm_file}"
751 tmake_file="t-netbsd arm/t-netbsd"
754 arm*-*-linux-gnuaout*) # ARM GNU/Linux with a.out
757 tm_file=arm/linux-aout.h
758 tmake_file=arm/t-linux
761 arm*-*-linux-gnuoldld*) # ARM GNU/Linux with old ELF linker
762 xm_file=arm/xm-linux.h
764 tm_file="arm/linux-oldld.h arm/linux-elf.h"
767 tm_file="arm/linux-elf26.h $tm_file"
770 tmake_file="t-linux arm/t-linux"
771 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
773 case x${enable_threads} in
774 x | xyes | xpthreads | xposix)
779 arm*-*-linux-gnu*) # ARM GNU/Linux with ELF
780 xm_file=arm/xm-linux.h
782 tm_file="arm/linux-elf.h"
785 tm_file="arm/linux-elf26.h $tm_file"
788 tmake_file="t-linux arm/t-linux"
789 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
791 case x${enable_threads} in
792 x | xyes | xpthreads | xposix)
797 arm*-*-uclinux*) # ARM ucLinux
798 tm_file=arm/uclinux-elf.h
799 tmake_file=arm/t-arm-elf
803 tmake_file=arm/t-bare
806 tm_file=arm/ecos-elf.h
810 tm_file=arm/unknown-elf.h
811 tmake_file=arm/t-arm-elf
814 tm_file=arm/unknown-elf-oabi.h
815 tmake_file=arm/t-arm-elf
822 c1-convex-*) # Convex C1
826 c2-convex-*) # Convex C2
839 target_cpu_default=16
846 clipper-intergraph-clix*)
847 tm_file="${tm_file} svr3.h clipper/clix.h"
848 xm_file=clipper/xm-clix.h
849 xmake_file=clipper/x-clix
850 extra_headers=va-clipper.h
851 extra_parts="crtbegin.o crtend.o"
852 install_headers_dir=install-headers-cpio
860 tm_file="fr30/fr30.h"
861 tmake_file=fr30/t-fr30
862 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
864 # This hasn't been upgraded to GCC 2.
865 # fx80-alliant-*) # Alliant FX/80
871 target_cpu_default="(MASK_PA_11 | MASK_GAS | MASK_JUMP_IN_DELAY)"
872 tm_file="${tm_file} pa/elf.h linux.h pa/pa-linux.h"
873 tmake_file="t-linux pa/t-linux"
874 extra_parts="crtbegin.o crtend.o"
877 if test x$enable_threads = xyes; then
882 target_cpu_default="MASK_PA_11"
883 tmake_file=pa/t-openbsd
886 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
887 tm_file="${tm_file} elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
888 xm_file=pa/xm-papro.h
892 target_cpu_default="MASK_PA_11"
893 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
897 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
898 tm_file="${tm_file} elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h"
899 xm_file=pa/xm-papro.h
903 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
907 tm_file="${tm_file} pa/som.h"
908 target_cpu_default="MASK_PA_11"
912 tm_file="${tm_file} pa/som.h"
916 tm_file="pa/pa-oldas.h ${tm_file} pa/som.h pa/pa-hpux7.h"
917 xm_file=pa/xm-pahpux.h
918 xmake_file=pa/x-pa-hpux
921 tm_file="${tm_file} pa/gas.h"
923 install_headers_dir=install-headers-cpio
927 hppa1.0-*-hpux8.0[0-2]*)
929 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
930 xm_file=pa/xm-pahpux.h
931 xmake_file=pa/x-pa-hpux
934 tm_file="${tm_file} pa/pa-gas.h"
936 tm_file="pa/pa-oldas.h ${tm_file}"
938 install_headers_dir=install-headers-cpio
942 hppa1.1-*-hpux8.0[0-2]*)
944 target_cpu_default="MASK_PA_11"
945 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
946 xm_file=pa/xm-pahpux.h
947 xmake_file=pa/x-pa-hpux
950 tm_file="${tm_file} pa/pa-gas.h"
952 tm_file="pa/pa-oldas.h ${tm_file}"
954 install_headers_dir=install-headers-cpio
958 target_cpu_default="MASK_PA_11"
959 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
960 xm_file=pa/xm-pahpux.h
961 xmake_file=pa/x-pa-hpux
964 tm_file="${tm_file} pa/pa-gas.h"
966 install_headers_dir=install-headers-cpio
970 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
971 xm_file=pa/xm-pahpux.h
972 xmake_file=pa/x-pa-hpux
975 tm_file="${tm_file} pa/pa-gas.h"
977 install_headers_dir=install-headers-cpio
980 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
981 target_cpu_default="MASK_PA_11"
982 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
983 xm_file=pa/xm-pahpux.h
984 xmake_file=pa/x-pa-hpux
988 tm_file="${tm_file} pa/pa-gas.h"
990 if test x$enable_threads = x; then
991 enable_threads=$have_pthread_h
993 if test x$enable_threads = xyes; then
995 tmake_file="${tmake_file} pa/t-dce-thr"
997 install_headers_dir=install-headers-cpio
1001 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
1002 xm_file=pa/xm-pahpux.h
1003 xmake_file=pa/x-pa-hpux
1005 if test x$gas = xyes
1007 tm_file="${tm_file} pa/pa-gas.h"
1009 if test x$enable_threads = x; then
1010 enable_threads=$have_pthread_h
1012 if test x$enable_threads = xyes; then
1014 tmake_file="${tmake_file} pa/t-dce-thr"
1016 install_headers_dir=install-headers-cpio
1019 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
1020 target_cpu_default="MASK_PA_11"
1021 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1022 xm_file=pa/xm-pahpux.h
1023 xmake_file=pa/x-pa-hpux
1025 if [[ x$gas = xyes ]]
1027 tm_file="${tm_file} pa/pa-gas.h"
1029 # if [[ x$enable_threads = x ]]; then
1030 # enable_threads=$have_pthread_h
1032 # if [[ x$enable_threads = xyes ]]; then
1034 # tmake_file="${tmake_file} pa/t-dce-thr"
1036 install_headers_dir=install-headers-cpio
1040 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1041 xm_file=pa/xm-pahpux.h
1042 xmake_file=pa/x-pa-hpux
1043 if [[ x$gas = xyes ]]
1045 tm_file="${tm_file} pa/pa-gas.h"
1047 # if [[ x$enable_threads = x ]]; then
1048 # enable_threads=$have_pthread_h
1050 # if [[ x$enable_threads = xyes ]]; then
1052 # tmake_file="${tmake_file} pa/t-dce-thr"
1054 install_headers_dir=install-headers-cpio
1057 hppa1.1-*-hpux* | hppa2*-*-hpux*)
1058 target_cpu_default="MASK_PA_11"
1059 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1060 xm_file=pa/xm-pahpux.h
1061 xmake_file=pa/x-pa-hpux
1062 if test x$gas = xyes
1064 tm_file="${tm_file} pa/pa-gas.h"
1066 install_headers_dir=install-headers-cpio
1070 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1071 xm_file=pa/xm-pahpux.h
1072 xmake_file=pa/x-pa-hpux
1073 if test x$gas = xyes
1075 tm_file="${tm_file} pa/pa-gas.h"
1077 install_headers_dir=install-headers-cpio
1080 hppa1.1-*-hiux* | hppa2*-*-hiux*)
1081 target_cpu_default="MASK_PA_11"
1082 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1083 xm_file=pa/xm-pahpux.h
1084 xmake_file=pa/x-pa-hpux
1085 if test x$gas = xyes
1087 tm_file="${tm_file} pa/pa-gas.h"
1089 install_headers_dir=install-headers-cpio
1093 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1094 xm_file=pa/xm-pahpux.h
1095 xmake_file=pa/x-pa-hpux
1096 if test x$gas = xyes
1098 tm_file="${tm_file} pa/pa-gas.h"
1100 install_headers_dir=install-headers-cpio
1104 tm_file="${tm_file} elfos.h pa/elf.h"
1105 target_cpu_default="MASK_PA_11"
1109 tm_file="${tm_file} pa/pa-mpeix.h"
1110 xm_file=pa/xm-pampeix.h
1111 xmake_file=pa/x-pa-mpeix
1112 echo "You must use gas. Assuming it is already installed."
1113 install_headers_dir=install-headers-tar
1114 fixincludes=Makefile.in
1117 i370-*-opened*) # IBM 360/370/390 Architecture
1118 xm_file=i370/xm-oe.h
1120 xmake_file=i370/x-oe
1121 tmake_file=i370/t-oe
1122 fixincludes=Makefile.in # Headers are wierd, don't mess with
1125 xm_file=i370/xm-mvs.h
1127 tmake_file=i370/t-mvs
1128 fixincludes=Makefile.in # Headers are wierd, don't mess with
1131 xm_file="xm-linux.h i370/xm-linux.h"
1133 tm_file="i370/linux.h ${tm_file}"
1134 tmake_file="t-linux i370/t-linux"
1135 fixincludes=Makefile.in # The headers are ok already.
1136 # broken_install=yes
1137 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1138 # extra_parts="crtbegin.o crtend.o"
1142 if [[ x$enable_threads = xyes ]]; then
1149 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h"
1150 tm_file=i386/i386elf.h
1151 tmake_file=i386/t-i386elf
1155 i[34567]86-ibm-aix*) # IBM PS/2 running AIX
1157 if test x$gas = xyes
1159 tm_file=i386/aix386.h
1160 extra_parts="crtbegin.o crtend.o"
1161 tmake_file=i386/t-crtstuff
1163 tm_file=i386/aix386ng.h
1166 xm_file="xm-alloca.h i386/xm-aix.h ${xm_file}"
1168 xmake_file=i386/x-aix
1171 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1173 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1174 xm_defines="USG POSIX SMALL_ARG_MAX"
1175 xmake_file=i386/x-ncr3000
1176 if test x$stabs = xyes -a x$gas = xyes
1178 tm_file=i386/sysv4gdb.h
1180 tm_file=i386/sysv4.h
1182 extra_parts="crtbegin.o crtend.o"
1183 tmake_file=i386/t-crtpic
1189 xm_file=i386/xm-next.h
1190 tmake_file=i386/t-next
1191 xmake_file=i386/x-next
1192 extra_objs=nextstep.o
1193 extra_parts="crtbegin.o crtend.o"
1194 if test x$enable_threads = xyes; then
1199 i[34567]86-sequent-bsd*) # 80386 from Sequent
1202 if test x$gas = xyes
1204 tm_file=i386/seq-gas.h
1206 tm_file=i386/sequent.h
1210 i[34567]86-sequent-ptx1*)
1212 xm_defines="USG SVR3"
1213 xmake_file=i386/x-sysv3
1214 tm_file=i386/seq-sysv3.h
1215 tmake_file=i386/t-crtstuff
1216 extra_parts="crtbegin.o crtend.o"
1217 install_headers_dir=install-headers-cpio
1220 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1222 xm_defines="USG SVR3"
1223 xmake_file=i386/x-sysv3
1224 tm_file=i386/seq2-sysv3.h
1225 tmake_file=i386/t-crtstuff
1226 extra_parts="crtbegin.o crtend.o"
1227 install_headers_dir=install-headers-cpio
1230 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1232 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1233 xm_defines="USG POSIX SMALL_ARG_MAX"
1235 tm_file=i386/ptx4-i.h
1237 extra_parts="crtbegin.o crtend.o"
1238 install_headers_dir=install-headers-cpio
1240 i386-sun-sunos*) # Sun i386 roadrunner
1246 i[34567]86-wrs-vxworks*)
1248 tm_file=i386/vxi386.h
1249 tmake_file=i386/t-i386bare
1250 thread_file='vxworks'
1255 tm_file=i386/i386-aout.h
1256 tmake_file=i386/t-i386bare
1259 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1261 tm_file=i386/bsd386.h
1262 # tmake_file=t-libc-ok
1267 tm_file=i386/386bsd.h
1268 # tmake_file=t-libc-ok
1269 # Next line turned off because both 386BSD and BSD/386 use GNU ld.
1273 i[34567]86-*-freebsdelf*)
1275 tm_file="i386/i386.h i386/att.h svr4.h i386/freebsd-elf.h i386/perform.h"
1276 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1277 tmake_file=t-freebsd
1281 case x${enable_threads} in
1282 xyes | xpthreads | xposix)
1284 tmake_file="${tmake_file} t-openbsd-thread"
1289 i[34567]86-*-freebsd*)
1291 tm_file=i386/freebsd.h
1292 tmake_file=t-freebsd
1295 i[34567]86-*-netbsd*)
1297 tm_file=i386/netbsd.h
1302 i[34567]86-*-openbsd*)
1304 # we need collect2 until our bug is fixed...
1310 tm_file=i386/i386-coff.h
1311 tmake_file=i386/t-i386bare
1314 i[34567]86-*-isc*) # 80386 running ISC system
1316 xm_file="${xm_file} i386/xm-isc.h"
1317 xm_defines="USG SVR3"
1320 i[34567]86-*-isc[34]*)
1322 xmake_file=i386/x-isc3
1325 xmake_file=i386/x-isc
1328 if test x$gas = xyes -a x$stabs = xyes
1330 tm_file=i386/iscdbx.h
1331 tmake_file=i386/t-svr3dbx
1332 extra_parts="svr3.ifile svr3z.ifile"
1334 tm_file=i386/isccoff.h
1335 tmake_file=i386/t-crtstuff
1336 extra_parts="crtbegin.o crtend.o"
1338 install_headers_dir=install-headers-cpio
1341 i[34567]86-*-linux-gnuoldld*) # Intel 80386's running GNU/Linux
1342 changequote([,])dnl # with a.out format using
1344 xmake_file=x-linux-aout
1345 tmake_file="t-linux-aout i386/t-crtstuff"
1346 tm_file=i386/linux-oldld.h
1351 i[34567]86-*-linux-gnuaout*) # Intel 80386's running GNU/Linux
1352 changequote([,])dnl # with a.out format
1353 xmake_file=x-linux-aout
1354 tmake_file="t-linux-aout i386/t-crtstuff"
1355 tm_file=i386/linux-aout.h
1360 i[34567]86-*-linux-gnulibc1) # Intel 80386's running GNU/Linux
1361 changequote([,])dnl # with ELF format using the
1362 # GNU/Linux C library 5
1364 tm_file=i386/linux.h
1365 tmake_file="t-linux t-linux-gnulibc1 i386/t-crtstuff"
1366 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1369 if test x$enable_threads = xyes; then
1370 thread_file='single'
1374 i[34567]86-*-linux-gnu*) # Intel 80386's running GNU/Linux
1375 changequote([,])dnl # with ELF format using glibc 2
1376 # aka GNU/Linux C library 6
1378 tm_file=i386/linux.h
1379 tmake_file="t-linux i386/t-crtstuff"
1380 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1383 if test x$enable_threads = xyes; then
1393 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1395 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1399 i[34567]86-pc-msdosdjgpp*)
1401 xm_file=i386/xm-djgpp.h
1402 tm_file=i386/djgpp.h
1403 tmake_file=i386/t-djgpp
1404 xmake_file=i386/x-djgpp
1408 case $host in *pc-msdosdjgpp*)
1414 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1417 tmake_file=t-libc-ok
1422 i[34567]86-*-lynxos*)
1424 if test x$gas = xyes
1428 tm_file=i386/lynx-ng.h
1430 xm_file=i386/xm-lynx.h
1431 tmake_file=i386/t-i386bare
1438 # tmake_file=t-libc-ok
1442 i[34567]86-*-osfrose*) # 386 using OSF/rose
1444 if test x$elf = xyes
1446 tm_file=i386/osfelf.h
1449 tm_file=i386/osfrose.h
1452 xm_file="i386/xm-osf.h ${xm_file}"
1453 xmake_file=i386/x-osfrose
1454 tmake_file=i386/t-osf
1455 extra_objs=halfpic.o
1458 i[34567]86-go32-rtems*)
1461 xm_file=i386/xm-go32.h
1462 tm_file=i386/go32-rtems.h
1463 tmake_file="i386/t-go32 t-rtems"
1466 i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
1469 tm_file=i386/rtemself.h
1470 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1471 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1474 i[34567]86-*-rtemscoff*)
1477 tm_file=i386/rtems.h
1478 tmake_file="i386/t-i386bare t-rtems"
1481 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1483 xm_file="xm-siglist.h xm-alloca.h ${xm_file} i386/xm-sco5.h"
1484 xm_defines="USG SVR3"
1485 xmake_file=i386/x-sco5
1486 install_headers_dir=install-headers-cpio
1488 if test x$gas = xyes
1490 tm_file="i386/sco5gas.h ${tm_file}"
1491 tmake_file=i386/t-sco5gas
1493 tmake_file=i386/t-sco5
1495 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1498 i[34567]86-*-sco3.2v4*) # 80386 running SCO 3.2v4 system
1500 xm_file="${xm_file} i386/xm-sco.h"
1501 xm_defines="USG SVR3 BROKEN_LDEXP SMALL_ARG_MAX NO_SYS_SIGLIST"
1502 xmake_file=i386/x-sco4
1503 install_headers_dir=install-headers-cpio
1504 if test x$stabs = xyes
1506 tm_file=i386/sco4dbx.h
1507 tmake_file=i386/t-svr3dbx
1508 extra_parts="svr3.ifile svr3z.rfile"
1511 tmake_file=i386/t-crtstuff
1512 extra_parts="crtbegin.o crtend.o"
1514 # The default EAFS filesystem supports long file names.
1515 # Truncating the target makes $host != $target which
1516 # makes gcc think it is doing a cross-compile.
1517 # truncate_target=yes
1520 i[34567]86-*-sco*) # 80386 running SCO system
1522 xm_file=i386/xm-sco.h
1523 xmake_file=i386/x-sco
1524 install_headers_dir=install-headers-cpio
1525 if test x$stabs = xyes
1527 tm_file=i386/scodbx.h
1528 tmake_file=i386/t-svr3dbx
1529 extra_parts="svr3.ifile svr3z.rfile"
1532 extra_parts="crtbegin.o crtend.o"
1533 tmake_file=i386/t-crtstuff
1538 i[34567]86-*-solaris2*)
1540 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1541 xm_defines="USG POSIX SMALL_ARG_MAX"
1543 if test x$gas = xyes; then
1544 # Only needed if gas does not support -s
1545 tm_file="i386/sol2gas.h ${tm_file}"
1547 tmake_file=i386/t-sol2
1548 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1550 if test x${enable_threads} = x; then
1551 enable_threads=$have_pthread_h
1552 if test x${enable_threads} = x; then
1553 enable_threads=$have_thread_h
1556 if test x${enable_threads} = xyes; then
1557 if test x${have_pthread_h} = xyes; then
1560 thread_file='solaris'
1565 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1567 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1568 xm_defines="USG POSIX"
1569 tm_file=i386/sysv5.h
1570 if test x$stabs = xyes
1572 tm_file="${tm_file} dbx.h"
1574 tmake_file=i386/t-crtpic
1576 extra_parts="crtbegin.o crtend.o"
1577 if test x$enable_threads = xyes; then
1582 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1584 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1585 xm_defines="USG POSIX SMALL_ARG_MAX"
1586 tm_file=i386/sysv4.h
1587 if test x$stabs = xyes
1589 tm_file="${tm_file} dbx.h"
1591 tmake_file=i386/t-crtpic
1593 extra_parts="crtbegin.o crtend.o"
1596 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1598 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1599 xm_defines="USG POSIX"
1601 tmake_file="i386/t-crtpic i386/t-udk"
1603 extra_parts="crtbegin.o crtend.o"
1604 install_headers_dir=install-headers-cpio
1607 i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
1610 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h i386/xm-osf1elf.h"
1611 xm_defines="USE_C_ALLOCA SMALL_ARG_MAX"
1612 if test x$stabs = xyes
1614 tm_file=i386/osf1elfgdb.h
1616 tm_file=i386/osf1elf.h
1618 tmake_file=i386/t-osf1elf
1619 xmake_file=i386/x-osf1elf
1620 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1623 i[34567]86-*-sysv*) # Intel 80386's running system V
1625 xm_defines="USG SVR3"
1626 xmake_file=i386/x-sysv3
1627 if test x$gas = xyes
1629 if test x$stabs = xyes
1631 tm_file=i386/svr3dbx.h
1632 tmake_file=i386/t-svr3dbx
1633 extra_parts="svr3.ifile svr3z.rfile"
1635 tm_file=i386/svr3gas.h
1636 extra_parts="crtbegin.o crtend.o"
1637 tmake_file=i386/t-crtstuff
1640 tm_file=i386/sysv3.h
1641 extra_parts="crtbegin.o crtend.o"
1642 tmake_file=i386/t-crtstuff
1645 i386-*-vsta) # Intel 80386's running VSTa kernel
1646 xm_file="${xm_file} i386/xm-vsta.h"
1648 tmake_file=i386/t-vsta
1649 xmake_file=i386/x-vsta
1654 xm_file="${xm_file} i386/xm-cygwin.h"
1655 tmake_file=i386/t-cygwin
1656 tm_file=i386/win32.h
1657 xmake_file=i386/x-cygwin
1659 if test x$enable_threads = xyes; then
1665 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1667 xm_file="${xm_file} i386/xm-cygwin.h"
1668 tmake_file=i386/t-cygwin
1669 tm_file=i386/cygwin.h
1670 xmake_file=i386/x-cygwin
1672 if test x$enable_threads = xyes; then
1678 i[34567]86-*-mingw32*)
1680 tm_file=i386/mingw32.h
1681 xm_file="${xm_file} i386/xm-mingw32.h"
1682 tmake_file="i386/t-cygwin i386/t-mingw32"
1684 xmake_file=i386/x-cygwin
1685 if test x$enable_threads = xyes; then
1692 *minwg32crt* | *mingw32*)
1693 tm_file="${tm_file} i386/crtdll.h"
1701 xm_file="${xm_file} i386/xm-uwin.h"
1702 xm_defines="USG NO_STAB_H NO_SYS_SIGLIST"
1703 tmake_file="i386/t-cygwin i386/t-uwin"
1705 xmake_file=i386/x-cygwin
1706 if test x$enable_threads = xyes; then
1712 i[34567]86-*-interix*)
1714 tm_file="i386/i386-interix.h interix.h"
1715 xm_file="i386/xm-i386-interix.h xm-interix.h"
1716 xm_defines="USG NO_SYS_SIGLIST"
1717 tmake_file="i386/t-interix"
1718 extra_objs=interix.o
1719 xmake_file=x-interix
1720 if test x$enable_threads = xyes ; then
1723 if test x$stabs = xyes ; then
1724 tm_file="${tm_file} dbxcoff.h"
1728 i[34567]86-*-winnt3*)
1730 tm_file=i386/win-nt.h
1731 out_file=i386/i386.c
1732 xm_file="xm-winnt.h ${xm_file}"
1733 xmake_file=winnt/x-winnt
1734 tmake_file=i386/t-winnt
1735 extra_host_objs="winnt.o oldnames.o"
1736 extra_gcc_objs="spawnv.o oldnames.o"
1737 if test x$gnu_ld != xyes
1739 extra_programs=ld.exe
1741 if test x$enable_threads = xyes; then
1746 i[34567]86-dg-dgux*)
1748 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1749 xm_defines="USG POSIX"
1750 out_file=i386/dgux.c
1752 tmake_file=i386/t-dgux
1753 xmake_file=i386/x-dgux
1754 install_headers_dir=install-headers-cpio
1756 i860-alliant-*) # Alliant FX/2800
1757 tm_file="${tm_file} svr4.h i860/sysv4.h i860/fx2800.h"
1758 xm_file="${xm_file}"
1759 xmake_file=i860/x-fx2800
1760 tmake_file=i860/t-fx2800
1761 extra_parts="crtbegin.o crtend.o"
1764 tm_file="${tm_file} i860/bsd.h"
1765 if test x$gas = xyes
1767 tm_file="${tm_file} i860/bsd-gas.h"
1772 tm_file="${tm_file} i860/mach.h"
1773 tmake_file=t-libc-ok
1775 i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1776 tm_file="${tm_file} svr3.h i860/paragon.h"
1777 xm_defines="USG SVR3"
1781 tm_file="${tm_file} svr3.h i860/sysv3.h"
1782 xm_defines="USG SVR3"
1783 xmake_file=i860/x-sysv3
1784 extra_parts="crtbegin.o crtend.o"
1787 tm_file="${tm_file} svr4.h i860/sysv4.h"
1788 xm_defines="USG SVR3"
1789 xmake_file=i860/x-sysv4
1791 extra_parts="crtbegin.o crtend.o"
1793 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1794 tm_file="${tm_file} i960/vx960.h"
1795 tmake_file=i960/t-vxworks960
1797 thread_file='vxworks'
1799 i960-wrs-vxworks5* | i960-wrs-vxworks)
1800 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1801 tmake_file=i960/t-vxworks960
1803 thread_file='vxworks'
1806 tm_file="${tm_file} i960/vx960.h"
1807 tmake_file=i960/t-vxworks960
1809 thread_file='vxworks'
1812 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1813 tmake_file=i960/t-960bare
1817 tmake_file="i960/t-960bare t-rtems"
1818 tm_file="${tm_file} dbxcoff.h i960/rtems.h"
1821 i960-*-*) # Default i960 environment.
1825 extra_parts="crtinit.o crtfini.o"
1827 m68000-convergent-sysv*)
1829 xm_file="m68k/xm-3b1.h ${xm_file}"
1832 extra_headers=math-68881.h
1834 m68000-hp-bsd*) # HP 9000/200 running BSD
1835 tm_file=m68k/hp2bsd.h
1836 xmake_file=m68k/x-hp2bsd
1838 extra_headers=math-68881.h
1840 m68000-hp-hpux*) # HP 9000 series 300
1841 xm_file="xm_alloca.h ${xm_file}"
1842 xm_defines="USG NO_SYS_SIGLIST"
1843 if test x$gas = xyes
1845 xmake_file=m68k/x-hp320g
1846 tm_file=m68k/hp310g.h
1848 xmake_file=m68k/x-hp320
1849 tm_file=m68k/hp310.h
1851 install_headers_dir=install-headers-cpio
1853 extra_headers=math-68881.h
1858 extra_headers=math-68881.h
1861 tm_file=m68k/sun2o4.h
1863 extra_headers=math-68881.h
1866 xm_file="m68k/xm-3b1.h ${xm_file}"
1868 if test x$gas = xyes
1875 extra_headers=math-68881.h
1877 m68k-apple-aux*) # Apple Macintosh running A/UX
1878 xm_defines="USG AUX"
1879 tmake_file=m68k/t-aux
1880 install_headers_dir=install-headers-cpio
1881 extra_headers=math-68881.h
1882 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1884 if test "$gnu_ld" = yes
1886 tm_file="${tm_file} m68k/auxgld.h"
1888 tm_file="${tm_file} m68k/auxld.h"
1890 if test "$gas" = yes
1892 tm_file="${tm_file} m68k/auxgas.h"
1894 tm_file="${tm_file} m68k/auxas.h"
1896 tm_file="${tm_file} m68k/a-ux.h"
1900 tm_file=m68k/apollo68.h
1901 xmake_file=m68k/x-apollo68
1903 extra_headers=math-68881.h
1906 m68k-altos-sysv*) # Altos 3068
1907 if test x$gas = xyes
1909 tm_file=m68k/altos3068.h
1912 echo "The Altos is supported only with the GNU assembler" 1>&2
1915 extra_headers=math-68881.h
1917 m68k-bull-sysv*) # Bull DPX/2
1918 if test x$gas = xyes
1920 if test x$stabs = xyes
1922 tm_file=m68k/dpx2cdbx.h
1924 tm_file=m68k/dpx2g.h
1929 xm_file="xm-alloca.h ${xm_file}"
1931 xmake_file=m68k/x-dpx2
1933 extra_headers=math-68881.h
1935 m68k-atari-sysv4*) # Atari variant of V.4.
1936 tm_file=m68k/atari.h
1937 xm_file="xm-alloca.h ${xm_file}"
1938 xm_defines="USG FULL_PROTOTYPES"
1940 extra_parts="crtbegin.o crtend.o"
1941 extra_headers=math-68881.h
1944 m68k-motorola-sysv*)
1945 tm_file=m68k/mot3300.h
1946 xm_file="xm-alloca.h m68k/xm-mot3300.h ${xm_file}"
1947 xm_defines=NO_SYS_SIGLIST
1948 if test x$gas = xyes
1950 xmake_file=m68k/x-mot3300-gas
1951 if test x$gnu_ld = xyes
1953 tmake_file=m68k/t-mot3300-gald
1955 tmake_file=m68k/t-mot3300-gas
1959 xmake_file=m68k/x-mot3300
1960 if test x$gnu_ld = xyes
1962 tmake_file=m68k/t-mot3300-gld
1964 tmake_file=m68k/t-mot3300
1968 gdb_needs_out_file_path=yes
1969 extra_parts="crt0.o mcrt0.o"
1970 extra_headers=math-68881.h
1973 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1974 tm_file=m68k/tower-as.h
1975 xm_defines="USG SVR3"
1976 xmake_file=m68k/x-tower
1977 extra_parts="crtbegin.o crtend.o"
1978 extra_headers=math-68881.h
1981 tm_file=m68k/plexus.h
1982 xm_file="xm-alloca.h m68k/xm-plexus.h ${xm_file}"
1985 extra_headers=math-68881.h
1989 xm_file="xm-alloca.h ${xm_file}"
1991 extra_headers=math-68881.h
1994 xm_file="xm-alloca.h m68k/xm-crds.h ${xm_file}"
1995 xm_defines="USG unos"
1996 xmake_file=m68k/x-crds
1999 extra_headers=math-68881.h
2001 m68k-cbm-sysv4*) # Commodore variant of V.4.
2003 xm_file="xm-alloca.h ${xm_file}"
2004 xm_defines="USG FULL_PROTOTYPES"
2005 xmake_file=m68k/x-amix
2007 extra_parts="crtbegin.o crtend.o"
2008 extra_headers=math-68881.h
2012 tm_file=m68k/ccur-GAS.h
2013 xmake_file=m68k/x-ccur
2014 extra_headers=math-68881.h
2018 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
2019 tm_file=m68k/hp3bsd44.h
2020 xmake_file=m68k/x-hp3bsd44
2022 extra_headers=math-68881.h
2025 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
2026 tm_file=m68k/hp3bsd.h
2028 extra_headers=math-68881.h
2032 if test x$with_fp = xno
2034 tm_file=m68k/isi-nfp.h
2040 extra_headers=math-68881.h
2042 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
2043 xm_file="xm_alloca.h ${xm_file}"
2044 xm_defines="USG NO_SYS_SIGLIST"
2045 if test x$gas = xyes
2047 xmake_file=m68k/x-hp320g
2048 tm_file=m68k/hp320g.h
2050 xmake_file=m68k/x-hp320
2051 tm_file=m68k/hpux7.h
2053 install_headers_dir=install-headers-cpio
2055 extra_headers=math-68881.h
2058 m68k-hp-hpux*) # HP 9000 series 300
2059 xm_file="xm_alloca.h ${xm_file}"
2060 xm_defines="USG NO_SYS_SIGLIST"
2061 if test x$gas = xyes
2063 xmake_file=m68k/x-hp320g
2064 tm_file=m68k/hp320g.h
2066 xmake_file=m68k/x-hp320
2067 tm_file=m68k/hp320.h
2069 install_headers_dir=install-headers-cpio
2071 extra_headers=math-68881.h
2075 tm_file=m68k/sun3mach.h
2077 extra_headers=math-68881.h
2081 if test x$gas = xyes
2083 tm_file=m68k/news3gas.h
2085 tm_file=m68k/news3.h
2088 extra_headers=math-68881.h
2091 m68k-sony-bsd* | m68k-sony-newsos*)
2092 if test x$gas = xyes
2094 tm_file=m68k/newsgas.h
2099 extra_headers=math-68881.h
2102 m68k-next-nextstep2*)
2103 tm_file=m68k/next21.h
2104 xm_file="m68k/xm-next.h ${xm_file}"
2105 tmake_file=m68k/t-next
2106 xmake_file=m68k/x-next
2107 extra_objs=nextstep.o
2108 extra_headers=math-68881.h
2112 m68k-next-nextstep3*)
2114 xm_file="m68k/xm-next.h ${xm_file}"
2115 tmake_file=m68k/t-next
2116 xmake_file=m68k/x-next
2117 extra_objs=nextstep.o
2118 extra_parts="crtbegin.o crtend.o"
2119 extra_headers=math-68881.h
2121 if test x$enable_threads = xyes; then
2126 if test x$with_fp = xno
2128 tm_file=m68k/sun3n3.h
2130 tm_file=m68k/sun3o3.h
2134 extra_headers=math-68881.h
2136 m68k-sun-sunos*) # For SunOS 4 (the default).
2137 if test x$with_fp = xno
2139 tm_file=m68k/sun3n.h
2145 extra_headers=math-68881.h
2148 tm_file=m68k/vxm68k.h
2149 tmake_file=m68k/t-vxworks68
2150 extra_headers=math-68881.h
2151 thread_file='vxworks'
2155 tmake_file=m68k/t-m68kbare
2156 tm_file="m68k/m68k-aout.h libgloss.h"
2157 extra_headers=math-68881.h
2161 tmake_file=m68k/t-m68kbare
2162 tm_file="m68k/m68k-coff.h dbx.h libgloss.h"
2163 extra_headers=math-68881.h
2166 m68020-*-elf* | m68k-*-elf*)
2167 tm_file="m68k/m68020-elf.h"
2168 xm_file=m68k/xm-m68kv.h
2169 tmake_file=m68k/t-m68kelf
2170 header_files=math-68881.h
2173 if test x$gas = xyes
2177 tm_file=m68k/lynx-ng.h
2179 xm_file=m68k/xm-lynx.h
2181 tmake_file=m68k/t-lynx
2182 extra_headers=math-68881.h
2186 tm_file=m68k/netbsd.h
2193 # we need collect2 until our bug is fixed...
2196 m68k-*-sysv3*) # Motorola m68k's running system V.3
2197 xm_file="xm-alloca.h ${xm_file}"
2199 xmake_file=m68k/x-m68kv
2200 extra_parts="crtbegin.o crtend.o"
2201 extra_headers=math-68881.h
2204 m68k-*-sysv4*) # Motorola m68k's running system V.4
2205 tm_file=m68k/m68kv4.h
2206 xm_file="xm-alloca.h ${xm_file}"
2209 extra_parts="crtbegin.o crtend.o"
2210 extra_headers=math-68881.h
2213 m68k-*-linux-gnuaout*) # Motorola m68k's running GNU/Linux
2216 tm_file=m68k/linux-aout.h
2217 tmake_file="t-linux-aout m68k/t-linux-aout"
2218 extra_headers=math-68881.h
2222 m68k-*-linux-gnulibc1) # Motorola m68k's running GNU/Linux
2223 # with ELF format using the
2224 # GNU/Linux C library 5
2226 tm_file=m68k/linux.h
2227 tmake_file="t-linux t-linux-gnulibc1 m68k/t-linux"
2228 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2229 extra_headers=math-68881.h
2233 m68k-*-linux-gnu*) # Motorola m68k's running GNU/Linux
2234 # with ELF format using glibc 2
2235 # aka the GNU/Linux C library 6.
2237 tm_file=m68k/linux.h
2238 tmake_file="t-linux m68k/t-linux"
2239 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2240 extra_headers=math-68881.h
2243 if test x$enable_threads = xyes; then
2248 tmake_file=m68k/t-m68kbare
2249 tm_file=m68k/m68k-psos.h
2250 extra_headers=math-68881.h
2253 m68k-*-rtemscoff*|m68k-*-rtems*)
2254 tmake_file="m68k/t-m68kbare t-rtems"
2255 tm_file=m68k/rtems.h
2256 extra_headers=math-68881.h
2260 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
2261 tm_file=m68k/rtemself.h
2262 extra_headers=math-68881.h
2268 tm_file=m88k/dguxbcs.h
2269 tmake_file=m88k/t-dguxbcs
2273 tmake_file=m88k/t-dgux
2276 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
2277 xmake_file=m88k/x-dgux
2278 if test x$gas = xyes
2280 tmake_file=m88k/t-dgux-gas
2283 m88k-dolphin-sysv3*)
2284 tm_file=m88k/dolph.h
2285 extra_parts="crtbegin.o crtend.o"
2286 xm_file="m88k/xm-sysv3.h ${xm_file}"
2287 xmake_file=m88k/x-dolph
2288 if test x$gas = xyes
2290 tmake_file=m88k/t-m88k-gas
2293 m88k-tektronix-sysv3)
2294 tm_file=m88k/tekXD88.h
2295 extra_parts="crtbegin.o crtend.o"
2296 xm_file="m88k/xm-sysv3.h ${xm_file}"
2297 xmake_file=m88k/x-tekXD88
2298 if test x$gas = xyes
2300 tmake_file=m88k/t-m88k-gas
2304 tm_file=m88k/m88k-aout.h
2307 tm_file=m88k/m88k-coff.h
2308 tmake_file=m88k/t-bug
2312 extra_parts="crtbegin.o crtend.o"
2313 if test x$gas = xyes
2315 tmake_file=m88k/t-luna-gas
2317 tmake_file=m88k/t-luna
2321 tmake_file="${tmake_file} m88k/t-luna-gas"
2324 tm_file=m88k/sysv3.h
2325 extra_parts="crtbegin.o crtend.o"
2326 xm_file="m88k/xm-sysv3.h ${xm_file}"
2327 xmake_file=m88k/x-sysv3
2328 if test x$gas = xyes
2330 tmake_file=m88k/t-m88k-gas
2334 tm_file=m88k/sysv4.h
2335 extra_parts="crtbegin.o crtend.o"
2336 xmake_file=m88k/x-sysv4
2337 tmake_file=m88k/t-sysv4
2339 mips-sgi-irix6*) # SGI System V.4., IRIX 6
2340 if test "x$gnu_ld" = xyes
2342 tm_file="mips/iris6.h mips/iris6gld.h"
2344 tm_file=mips/iris6.h
2346 tmake_file=mips/t-iris6
2347 xm_file=mips/xm-iris6.h
2348 xmake_file=mips/x-iris6
2349 # if test x$enable_threads = xyes; then
2350 # thread_file='irix'
2354 tm_file="mips/elf.h mips/vxworks.h"
2355 tmake_file=mips/t-ecoff
2358 extra_parts="crtbegin.o crtend.o"
2359 thread_file='vxworks'
2361 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
2362 tm_file="mips/iris6.h mips/cross64.h"
2364 xm_file="mips/xm-iris5.h"
2365 xmake_file=mips/x-iris
2366 tmake_file=mips/t-cross64
2367 # See comment in mips/iris[56].h files.
2369 # if test x$enable_threads = xyes; then
2370 # thread_file='irix'
2374 if test x$gas = xyes
2376 if test x$stabs = xyes
2378 tm_file=mips/iris5gdb.h
2380 tm_file="mips/sni-svr4.h mips/sni-gas.h"
2383 tm_file=mips/sni-svr4.h
2386 xmake_file=mips/x-sni-svr4
2387 tmake_file=mips/t-mips-gas
2388 if test x$gnu_ld != xyes
2393 mips-sgi-irix5*) # SGI System V.4., IRIX 5
2394 if test x$gas = xyes
2396 tm_file="mips/iris5.h mips/iris5gas.h"
2397 if test x$stabs = xyes
2399 tm_file="${tm_file} dbx.h"
2402 tm_file=mips/iris5.h
2405 xm_file="mips/xm-iris5.h"
2406 xmake_file=mips/x-iris
2407 # mips-tfile doesn't work yet
2408 tmake_file=mips/t-mips-gas
2409 # See comment in mips/iris5.h file.
2411 # if test x$enable_threads = xyes; then
2412 # thread_file='irix'
2415 mips-sgi-irix4loser*) # Mostly like a MIPS.
2416 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2417 if test x$stabs = xyes; then
2418 tm_file="${tm_file} dbx.h"
2421 xmake_file=mips/x-iris
2422 if test x$gas = xyes
2424 tmake_file=mips/t-mips-gas
2426 extra_passes="mips-tfile mips-tdump"
2428 if test x$gnu_ld != xyes
2432 # if test x$enable_threads = xyes; then
2433 # thread_file='irix'
2436 mips-sgi-irix4*) # Mostly like a MIPS.
2437 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2438 if test x$stabs = xyes; then
2439 tm_file="${tm_file} dbx.h"
2442 xmake_file=mips/x-iris
2443 if test x$gas = xyes
2445 tmake_file=mips/t-mips-gas
2447 extra_passes="mips-tfile mips-tdump"
2449 if test x$gnu_ld != xyes
2453 # if test x$enable_threads = xyes; then
2454 # thread_file='irix'
2457 mips-sgi-*) # Mostly like a MIPS.
2458 tm_file="mips/iris3.h ${tm_file}"
2459 if test x$stabs = xyes; then
2460 tm_file="${tm_file} dbx.h"
2463 xmake_file=mips/x-iris3
2464 if test x$gas = xyes
2466 tmake_file=mips/t-mips-gas
2468 extra_passes="mips-tfile mips-tdump"
2470 if test x$gnu_ld != xyes
2475 mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
2476 tm_file="mips/osfrose.h ${tm_file}"
2477 xmake_file=mips/x-osfrose
2478 tmake_file=mips/t-osfrose
2479 extra_objs=halfpic.o
2482 mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2483 tm_file=mips/dec-osf1.h
2484 if test x$stabs = xyes; then
2485 tm_file="${tm_file} dbx.h"
2487 xmake_file=mips/x-dec-osf1
2488 if test x$gas = xyes
2490 tmake_file=mips/t-mips-gas
2492 tmake_file=mips/t-ultrix
2493 extra_passes="mips-tfile mips-tdump"
2495 if test x$gnu_ld != xyes
2500 mips-dec-bsd*) # Decstation running 4.4 BSD
2501 tm_file=mips/dec-bsd.h
2502 if test x$gas = xyes
2504 tmake_file=mips/t-mips-gas
2506 tmake_file=mips/t-ultrix
2507 extra_passes="mips-tfile mips-tdump"
2509 if test x$gnu_ld != xyes
2514 mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
2515 tm_file=mips/netbsd.h
2516 # On NetBSD, the headers are already okay, except for math.h.
2519 mips*-*-linux*) # Linux MIPS, either endian.
2521 xm_file="xm-siglist.h ${xm_file}"
2523 mipsel-*) tm_file="mips/elfl.h mips/linux.h" ;;
2524 *) tm_file="mips/elf.h mips/linux.h" ;;
2526 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2529 if test x$enable_threads = xyes; then
2533 mips*el-*-openbsd*) # mips little endian
2534 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2536 mips*-*-openbsd*) # mips big endian
2537 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2538 tm_file="mips/openbsd-be.h ${tm_file}"
2540 mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
2541 tm_file="mips/news4.h ${tm_file}"
2542 if test x$stabs = xyes; then
2543 tm_file="${tm_file} dbx.h"
2545 if test x$gas = xyes
2547 tmake_file=mips/t-mips-gas
2549 extra_passes="mips-tfile mips-tdump"
2551 if test x$gnu_ld != xyes
2555 xmake_file=mips/x-sony
2557 mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2558 # That is based on svr4.
2559 # t-svr4 is not right because this system doesn't use ELF.
2560 tm_file="mips/news5.h ${tm_file}"
2561 if test x$stabs = xyes; then
2562 tm_file="${tm_file} dbx.h"
2564 xm_file="xm-siglist.h ${xm_file}"
2566 if test x$gas = xyes
2568 tmake_file=mips/t-mips-gas
2570 extra_passes="mips-tfile mips-tdump"
2572 if test x$gnu_ld != xyes
2577 mips-tandem-sysv4*) # Tandem S2 running NonStop UX
2578 tm_file="mips/svr4-5.h mips/svr4-t.h"
2579 if test x$stabs = xyes; then
2580 tm_file="${tm_file} dbx.h"
2582 xm_file="xm-siglist.h ${xm_file}"
2584 xmake_file=mips/x-sysv
2585 if test x$gas = xyes
2587 tmake_file=mips/t-mips-gas
2588 extra_parts="crtbegin.o crtend.o"
2590 tmake_file=mips/t-mips
2591 extra_passes="mips-tfile mips-tdump"
2593 if test x$gnu_ld != xyes
2598 mips-*-ultrix* | mips-dec-mach3) # Decstation.
2599 tm_file="mips/ultrix.h ${tm_file}"
2600 if test x$stabs = xyes; then
2601 tm_file="${tm_file} dbx.h"
2603 xmake_file=mips/x-ultrix
2604 if test x$gas = xyes
2606 tmake_file=mips/t-mips-gas
2608 tmake_file=mips/t-ultrix
2609 extra_passes="mips-tfile mips-tdump"
2611 if test x$gnu_ld != xyes
2617 mips-*-riscos[56789]bsd*)
2619 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
2620 if test x$stabs = xyes; then
2621 tm_file="${tm_file} dbx.h"
2623 if test x$gas = xyes
2625 tmake_file=mips/t-bsd-gas
2627 tmake_file=mips/t-bsd
2628 extra_passes="mips-tfile mips-tdump"
2630 if test x$gnu_ld != xyes
2636 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2638 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2639 if test x$stabs = xyes; then
2640 tm_file="${tm_file} dbx.h"
2642 if test x$gas = xyes
2644 tmake_file=mips/t-bsd-gas
2646 tmake_file=mips/t-bsd
2647 extra_passes="mips-tfile mips-tdump"
2649 if test x$gnu_ld != xyes
2655 mips-*-riscos[56789]sysv4*)
2657 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
2658 if test x$stabs = xyes; then
2659 tm_file="${tm_file} dbx.h"
2661 xm_file="xm-siglist.h ${xm_file}"
2662 xmake_file=mips/x-sysv
2663 if test x$gas = xyes
2665 tmake_file=mips/t-svr4-gas
2667 tmake_file=mips/t-svr4
2668 extra_passes="mips-tfile mips-tdump"
2670 if test x$gnu_ld != xyes
2676 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2678 tm_file="mips/svr4-4.h ${tm_file}"
2679 if test x$stabs = xyes; then
2680 tm_file="${tm_file} dbx.h"
2683 xmake_file=mips/x-sysv
2684 if test x$gas = xyes
2686 tmake_file=mips/t-svr4-gas
2688 tmake_file=mips/t-svr4
2689 extra_passes="mips-tfile mips-tdump"
2691 if test x$gnu_ld != xyes
2697 mips-*-riscos[56789]sysv*)
2699 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
2700 if test x$stabs = xyes; then
2701 tm_file="${tm_file} dbx.h"
2704 xmake_file=mips/x-sysv
2705 if test x$gas = xyes
2707 tmake_file=mips/t-svr3-gas
2709 tmake_file=mips/t-svr3
2710 extra_passes="mips-tfile mips-tdump"
2712 if test x$gnu_ld != xyes
2717 mips-*-sysv* | mips-*-riscos*sysv*)
2718 tm_file="mips/svr3-4.h ${tm_file}"
2719 if test x$stabs = xyes; then
2720 tm_file="${tm_file} dbx.h"
2723 xmake_file=mips/x-sysv
2724 if test x$gas = xyes
2726 tmake_file=mips/t-svr3-gas
2728 tmake_file=mips/t-svr3
2729 extra_passes="mips-tfile mips-tdump"
2731 if test x$gnu_ld != xyes
2737 mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2739 tm_file=mips/mips-5.h
2740 if test x$stabs = xyes; then
2741 tm_file="${tm_file} dbx.h"
2743 if test x$gas = xyes
2745 tmake_file=mips/t-mips-gas
2747 extra_passes="mips-tfile mips-tdump"
2749 if test x$gnu_ld != xyes
2757 tm_file=mips/ecoffl.h
2758 if test x$stabs = xyes; then
2759 tm_file="${tm_file} dbx.h"
2761 tmake_file=mips/t-ecoff
2764 tm_file="gofast.h mips/ecoff.h"
2765 if test x$stabs = xyes; then
2766 tm_file="${tm_file} dbx.h"
2768 tmake_file=mips/t-ecoff
2771 tm_file="mips/elfl.h"
2772 tmake_file=mips/t-elf
2775 tm_file="mips/elf.h"
2776 tmake_file=mips/t-elf
2779 tm_file="mips/elfl64.h"
2780 tmake_file=mips/t-elf
2782 mips64orionel-*-elf*)
2783 tm_file="mips/elforion.h mips/elfl64.h"
2784 tmake_file=mips/t-elf
2787 tm_file="mips/elf64.h"
2788 tmake_file=mips/t-elf
2791 tm_file="mips/elforion.h mips/elf64.h"
2792 tmake_file=mips/t-elf
2794 mips64orion-*-rtems*)
2795 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2796 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2797 tmake_file="mips/t-elf t-rtems"
2800 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2801 tmake_file=mips/t-r3900
2804 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2805 tmake_file=mips/t-r3900
2807 mips-*-*) # Default MIPS RISC-OS 4.0.
2808 if test x$stabs = xyes; then
2809 tm_file="${tm_file} dbx.h"
2811 if test x$gas = xyes
2813 tmake_file=mips/t-mips-gas
2815 extra_passes="mips-tfile mips-tdump"
2817 if test x$gnu_ld != xyes
2824 tm_file="mn10200/mn10200.h"
2825 if test x$stabs = xyes
2827 tm_file="${tm_file} dbx.h"
2833 tm_file="mn10300/mn10300.h"
2834 if test x$stabs = xyes
2836 tm_file="${tm_file} dbx.h"
2841 tm_file=ns32k/encore.h
2845 tm_file=ns32k/sequent.h
2849 tm_file=ns32k/tek6100.h
2853 tm_file=ns32k/tek6200.h
2856 # This has not been updated to GCC 2.
2859 # xmake_file=ns32k/x-genix
2860 # tm_file=ns32k/genix.h
2864 tm_file=ns32k/merlin.h
2868 tm_file=ns32k/pc532-mach.h
2872 tm_file=ns32k/pc532-min.h
2873 xm_file="ns32k/xm-pc532-min.h ${xm-file}"
2878 tm_file=ns32k/netbsd.h
2879 xm_file="ns32k/xm-netbsd.h ${xm_file}"
2880 # On NetBSD, the headers are already okay, except for math.h.
2885 tm_file="${tm_file} pdp11/2bsd.h"
2892 # This has not been updated to GCC 2.
2895 # xmake_file=pyr/x-pyr
2902 xmake_file=romp/x-mach
2909 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
2913 tm_file=rs6000/beos.h
2914 xm_file=rs6000/xm-beos.h
2915 tmake_file=rs6000/t-beos
2916 xmake_file=rs6000/x-beos
2918 powerpc-*-sysv* | powerpc-*-elf*)
2919 tm_file=rs6000/sysv4.h
2920 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2921 xm_defines="USG POSIX"
2922 extra_headers=ppc-asm.h
2923 if test x$gas = xyes
2925 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2927 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2929 xmake_file=rs6000/x-sysv4
2932 tm_file=rs6000/eabiaix.h
2933 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2934 extra_headers=ppc-asm.h
2937 tm_file=rs6000/eabisim.h
2938 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2939 extra_headers=ppc-asm.h
2942 tm_file=rs6000/eabi.h
2943 if test x$gas = xyes
2945 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2947 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2949 extra_headers=ppc-asm.h
2952 tm_file=rs6000/rtems.h
2953 if test x$gas = xyes
2955 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2957 tmake_file="rs6000/t-ppc t-rtems rs6000/t-ppccomm"
2959 extra_headers=ppc-asm.h
2961 powerpc-*-linux-gnulibc1)
2962 tm_file=rs6000/linux.h
2963 xm_file=rs6000/xm-sysv4.h
2964 out_file=rs6000/rs6000.c
2965 if test x$gas = xyes
2967 tmake_file="rs6000/t-ppcos t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2969 tmake_file="rs6000/t-ppc t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2972 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2973 extra_headers=ppc-asm.h
2974 if test x$enable_threads = xyes; then
2978 powerpc-*-linux-gnu*)
2979 tm_file=rs6000/linux.h
2980 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2981 xm_defines="USG ${xm_defines}"
2982 out_file=rs6000/rs6000.c
2983 if test x$gas = xyes
2985 tmake_file="rs6000/t-ppcos t-linux rs6000/t-ppccomm"
2987 tmake_file="rs6000/t-ppc t-linux rs6000/t-ppccomm"
2990 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2991 extra_headers=ppc-asm.h
2992 if test x$enable_threads = xyes; then
2996 powerpc-wrs-vxworks*)
2998 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2999 xm_defines="USG POSIX"
3000 tm_file=rs6000/vxppc.h
3001 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3002 extra_headers=ppc-asm.h
3003 thread_file='vxworks'
3005 powerpcle-*-sysv* | powerpcle-*-elf*)
3006 tm_file=rs6000/sysv4le.h
3007 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
3008 xm_defines="USG POSIX"
3009 if test x$gas = xyes
3011 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
3013 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3015 xmake_file=rs6000/x-sysv4
3016 extra_headers=ppc-asm.h
3018 powerpcle-*-eabisim*)
3019 tm_file=rs6000/eabilesim.h
3020 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3021 extra_headers=ppc-asm.h
3024 tm_file=rs6000/eabile.h
3025 if test x$gas = xyes
3027 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3029 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3031 extra_headers=ppc-asm.h
3033 powerpcle-*-winnt* )
3034 tm_file=rs6000/win-nt.h
3035 tmake_file=rs6000/t-winnt
3037 if test x$enable_threads = xyes; then
3040 extra_headers=ppc-asm.h
3042 powerpcle-*-pe | powerpcle-*-cygwin*)
3043 tm_file=rs6000/cygwin.h
3044 xm_file="rs6000/xm-cygwin.h ${xm_file}"
3045 tmake_file=rs6000/t-winnt
3046 xmake_file=rs6000/x-cygwin
3048 if test x$enable_threads = xyes; then
3052 extra_headers=ppc-asm.h
3054 powerpcle-*-solaris2*)
3055 tm_file=rs6000/sol2.h
3056 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
3057 xm_defines="USG POSIX"
3058 if test x$gas = xyes
3060 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
3062 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3064 xmake_file=rs6000/x-sysv4
3065 extra_headers=ppc-asm.h
3068 rs6000-ibm-aix3.[01]*)
3070 tm_file=rs6000/aix31.h
3071 xmake_file=rs6000/x-aix31
3076 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
3078 tm_file=rs6000/aix3newas.h
3079 if test x$host != x$target
3081 tmake_file=rs6000/t-xnewas
3083 tmake_file=rs6000/t-newas
3089 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
3091 tm_file=rs6000/aix41.h
3092 if test x$host != x$target
3094 tmake_file=rs6000/t-xnewas
3096 tmake_file=rs6000/t-newas
3098 if test "$gnu_ld" = yes
3100 xmake_file=rs6000/x-aix41-gld
3102 xmake_file=rs6000/x-aix41
3108 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
3110 tm_file=rs6000/aix43.h
3111 if test x$host != x$target
3113 tmake_file=rs6000/t-xaix43
3115 tmake_file=rs6000/t-aix43
3117 xmake_file=rs6000/x-aix43
3122 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
3124 tm_file=rs6000/aix43.h
3125 if test x$host != x$target
3127 tmake_file=rs6000/t-xaix43
3129 tmake_file=rs6000/t-aix43
3131 xmake_file=rs6000/x-aix43
3144 tm_file=rs6000/mach.h
3145 xm_file="${xm_file} rs6000/xm-mach.h"
3146 xmake_file=rs6000/x-mach
3150 tm_file=rs6000/lynx.h
3151 xm_file=rs6000/xm-lynx.h
3152 tmake_file=rs6000/t-rs6000
3153 xmake_file=rs6000/x-lynx
3161 tmake_file="sh/t-sh t-rtems"
3162 tm_file=sh/rtemself.h
3166 tmake_file="sh/t-sh t-rtems"
3175 xm_file="xm-alloca.h ${xm_file}"
3178 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
3179 tm_file=sparc/vxsparc.h
3180 tmake_file=sparc/t-vxsparc
3182 thread_file='vxworks'
3185 tmake_file=sparc/t-sparcbare
3186 tm_file="sparc/aout.h libgloss.h"
3189 tm_file=sparc/netbsd.h
3194 # we need collect2 until our bug is fixed...
3202 tmake_file=sparc/t-elf
3203 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3207 sparc-*-linux-gnuaout*) # Sparc's running GNU/Linux, a.out
3208 xm_file="${xm_file} sparc/xm-linux.h"
3209 tm_file=sparc/linux-aout.h
3213 sparc-*-linux-gnulibc1*) # Sparc's running GNU/Linux, libc5
3214 xm_file="${xm_file} sparc/xm-linux.h"
3216 tm_file=sparc/linux.h
3217 tmake_file="t-linux t-linux-gnulibc1"
3218 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3222 sparc-*-linux-gnu*) # Sparc's running GNU/Linux, libc6
3223 xm_file="${xm_file} sparc/xm-linux.h"
3225 tm_file=sparc/linux.h
3226 tmake_file="t-linux"
3227 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3229 if test x$enable_threads = xyes; then
3235 if test x$gas = xyes
3237 tm_file=sparc/lynx.h
3239 tm_file=sparc/lynx-ng.h
3241 xm_file=sparc/xm-lynx.h
3242 tmake_file=sparc/t-sunos41
3245 sparc-*-rtems*|sparc-*-rtemself*)
3246 tm_file="sparc/rtemself.h"
3247 tmake_file="sparc/t-elf t-rtems"
3248 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3253 tmake_file="sparc/t-sparcbare t-rtems"
3254 tm_file=sparc/rtems.h
3256 sparcv9-*-solaris2*)
3257 tm_file=sparc/sol2-sld-64.h
3258 xm_file="sparc/xm-sysv4-64.h sparc/xm-sol2.h"
3259 xm_defines="USG POSIX"
3260 tmake_file="sparc/t-sol2 sparc/t-sol2-64"
3261 xmake_file=sparc/x-sysv4
3262 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
3264 if test x${enable_threads} = x ; then
3265 enable_threads=$have_pthread_h
3266 if test x${enable_threads} = x ; then
3267 enable_threads=$have_thread_h
3270 if test x${enable_threads} = xyes ; then
3271 if test x${have_pthread_h} = xyes ; then
3274 thread_file='solaris'
3278 sparc-hal-solaris2*)
3279 xm_file=sparc/xm-sol2.h
3280 tm_file="sparc/sol2.h sparc/hal.h"
3281 tmake_file="sparc/t-halos sparc/t-sol2"
3282 xmake_file=sparc/x-sysv4
3283 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3287 if test x$gnu_ld = xyes
3289 tm_file=sparc/sol2.h
3291 tm_file=sparc/sol2-sld.h
3293 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3294 xm_defines="USG POSIX"
3295 tmake_file=sparc/t-sol2
3296 xmake_file=sparc/x-sysv4
3297 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
3308 if test x${enable_threads} = x; then
3309 enable_threads=$have_pthread_h
3310 if test x${enable_threads} = x; then
3311 enable_threads=$have_thread_h
3314 if test x${enable_threads} = xyes; then
3315 if test x${have_pthread_h} = xyes; then
3318 thread_file='solaris'
3323 tm_file=sparc/sunos4.h
3324 tmake_file=sparc/t-sunos40
3328 tm_file=sparc/sunos4.h
3329 tmake_file=sparc/t-sunos41
3331 if test x$gas = xyes; then
3332 tm_file="${tm_file} sparc/sun4gas.h"
3336 tm_file=sparc/sun4o3.h
3340 tm_file=sparc/sysv4.h
3341 xm_file="xm-siglist.h sparc/xm-sysv4.h"
3342 xm_defines="USG POSIX"
3344 xmake_file=sparc/x-sysv4
3345 extra_parts="crtbegin.o crtend.o"
3348 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3349 xm_defines="USG POSIX"
3350 tm_file=sparc/vxsim.h
3351 tmake_file=sparc/t-vxsparc
3352 xmake_file=sparc/x-sysv4
3355 tm_file="sparc/splet.h libgloss.h"
3356 tmake_file=sparc/t-splet
3359 tm_file="sparc/litecoff.h libgloss.h"
3360 tmake_file=sparc/t-sparclite
3363 tm_file="sparc/lite.h aoutos.h libgloss.h"
3364 tmake_file=sparc/t-sparclite
3367 tm_file="sparc/liteelf.h libgloss.h"
3368 tmake_file=sparc/t-sparclite
3369 extra_parts="crtbegin.o crtend.o"
3372 tm_file="sparc/sp86x-aout.h aoutos.h libgloss.h"
3373 tmake_file=sparc/t-sp86x
3376 tm_file="sparc/sp86x-elf.h libgloss.h"
3377 tmake_file=sparc/t-sp86x
3378 extra_parts="crtbegin.o crtend.o"
3381 tmake_file=sparc/t-sp64
3382 tm_file=sparc/sp64-aout.h
3385 tmake_file=sparc/t-sp64
3386 tm_file=sparc/sp64-elf.h
3387 extra_parts="crtbegin.o crtend.o"
3389 sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
3390 tmake_file="t-linux sparc/t-linux64"
3391 xm_file="sparc/xm-sp64.h sparc/xm-linux.h"
3392 tm_file=sparc/linux64.h
3394 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3398 # This hasn't been upgraded to GCC 2.
3399 # tahoe-harris-*) # Harris tahoe, using COFF.
3400 # tm_file=tahoe/harris.h
3402 # tahoe-*-bsd*) # tahoe running BSD
3404 thumb-*-coff* | thumbel-*-coff*)
3406 out_file=arm/thumb.c
3407 xm_file=arm/xm-thumb.h
3408 md_file=arm/thumb.md
3409 tmake_file=arm/t-thumb
3411 thumb-*-elf* | thumbel-*-elf*)
3413 out_file=arm/thumb.c
3414 xm_file=arm/xm-thumb.h
3415 md_file=arm/thumb.md
3416 tmake_file=arm/t-thumb-elf
3419 tm_file=arm/linux-telf.h
3420 out_file=arm/thumb.c
3421 xm_file=arm/xm-thumb.h
3422 md_file=arm/thumb.md
3423 tmake_file=arm/t-thumb-linux
3426 tm_file=arm/uclinux-telf.h
3427 out_file=arm/thumb.c
3428 md_file=arm/thumb.md
3429 tmake_file=arm/t-thumb-linux
3430 xm_file=arm/xm-thumb.h
3434 out_file=arm/thumb.c
3435 xm_file=arm/xm-thumb.h
3436 md_file=arm/thumb.md
3437 tmake_file=arm/t-thumb
3438 thread_file='vxworks'
3442 out_file=arm/thumb.c
3443 xm_file=arm/xm-thumb.h
3444 md_file=arm/thumb.md
3445 tmake_file=arm/t-pe-thumb
3448 # This hasn't been upgraded to GCC 2.
3454 target_cpu_default="TARGET_CPU_generic"
3456 tm_file="v850/v850.h"
3457 xm_file="v850/xm-v850.h"
3458 tmake_file=v850/t-v850
3459 if test x$stabs = xyes
3461 tm_file="${tm_file} dbx.h"
3465 vax-*-bsd*) # vaxen running BSD
3469 vax-*-sysv*) # vaxen running system V
3470 tm_file="${tm_file} vax/vaxv.h"
3475 tm_file="${tm_file} netbsd.h vax/netbsd.h"
3481 tmake_file="${tmake_file} vax/t-openbsd"
3483 vax-*-ultrix*) # vaxen running ultrix
3484 tm_file="${tm_file} vax/ultrix.h"
3488 vax-*-vms*) # vaxen running VMS
3489 xm_file=vax/xm-vms.h
3493 vax-*-*) # vax default entry
3497 xm_file="${xm_file} xm-svr3"
3501 echo "Configuration $machine not supported" 1>&2
3508 ;; # Existing GNU/Linux systems do not use the GNU setup.
3510 # On the GNU system, the setup is just about the same on
3511 # each different CPU. The specific machines that GNU
3512 # supports are matched above and just set $cpu_type.
3513 xm_file="xm-gnu.h ${xm_file}"
3514 tm_file=${cpu_type}/gnu.h
3515 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
3516 # GNU always uses ELF.
3518 # GNU tools are the only tools.
3521 xmake_file=x-linux # These details are the same as Linux.
3522 tmake_file=t-gnu # These are not.
3525 xmake_try_sysv=x-sysv
3526 install_headers_dir=install-headers-cpio
3529 install_headers_dir=install-headers-cpio
3533 # Distinguish i[34567]86
3534 # Also, do not run mips-tfile on MIPS if using gas.
3535 # Process --with-cpu= for PowerPC/rs6000
3536 target_cpu_default2=
3539 target_cpu_default2=1
3542 case $target_alias in
3544 target_cpu_default2=4
3547 target_cpu_default2=2
3551 i686-*-* | i786-*-*)
3552 target_cpu_default2=3
3557 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3560 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3563 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3566 target_cpu_default2="MASK_CPU_EV5"
3570 if test x$gas = xyes
3572 if test "$target_cpu_default2" = ""
3574 target_cpu_default2="MASK_GAS"
3576 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3581 case "x$with_cpu" in
3584 target_cpu_default2="TARGET_CPU_generic"
3587 # Distinguish cores, and major variants
3588 # arm7m doesn't exist, but D & I don't affect code
3589 xarm[23678] | xarm250 | xarm[67][01]0 \
3590 | xarm7m | xarm7dm | xarm7dmi | xarm7tdmi \
3591 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
3592 | xstrongarm | xstrongarm110 | xstrongarm1100)
3593 target_cpu_default2="TARGET_CPU_$with_cpu"
3597 echo "--with-cpu must be passed a value" 1>&2
3602 if test x$pass2done = xyes
3604 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3611 mips*-*-ecoff* | mips*-*-elf*)
3612 if test x$gas = xyes
3614 if test x$gnu_ld = xyes
3616 target_cpu_default2=20
3618 target_cpu_default2=16
3623 if test x$gas = xyes
3625 target_cpu_default2=16
3628 powerpc*-*-* | rs6000-*-*)
3629 case "x$with_cpu" in
3633 xcommon | xpower | xpower2 | xpowerpc | xrios \
3634 | xrios1 | xrios2 | xrsc | xrsc1 \
3635 | x601 | x602 | x603 | x603e | x604 | x604e | x620 \
3636 | xec603e | x740 | x750 | x401 \
3637 | x403 | x505 | x801 | x821 | x823 | x860)
3638 target_cpu_default2="\"$with_cpu\""
3642 echo "--with-cpu must be passed a value" 1>&2
3647 if test x$pass2done = xyes
3649 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3656 case ".$with_cpu" in
3658 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3660 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3661 target_cpu_default2="TARGET_CPU_$with_cpu"
3664 if test x$pass2done = xyes
3666 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3674 if test "$target_cpu_default2" != ""
3676 if test "$target_cpu_default" != ""
3678 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3680 target_cpu_default=$target_cpu_default2
3684 # No need for collect2 if we have the GNU linker.
3685 # Actually, there is now; GNU ld doesn't handle the EH info or
3686 # collecting for shared libraries.
3693 # Save data on machine being used to compile GCC in build_xm_file.
3694 # Save data on host machine in vars host_xm_file and host_xmake_file.
3695 if test x$pass1done = x
3697 if test x"$xm_file" = x
3698 then build_xm_file=$cpu_type/xm-$cpu_type.h
3699 else build_xm_file=$xm_file
3701 build_xm_defines=$xm_defines
3702 build_install_headers_dir=$install_headers_dir
3703 build_exeext=$exeext
3706 if test x$pass2done = x
3708 if test x"$xm_file" = x
3709 then host_xm_file=$cpu_type/xm-$cpu_type.h
3710 else host_xm_file=$xm_file
3712 host_xm_defines=$xm_defines
3713 if test x"$xmake_file" = x
3714 then xmake_file=$cpu_type/x-$cpu_type
3716 host_xmake_file="$xmake_file"
3717 host_truncate_target=$truncate_target
3718 host_extra_gcc_objs=$extra_gcc_objs
3719 host_extra_objs=$extra_host_objs
3726 extra_objs="${host_extra_objs} ${extra_objs}"
3728 # Default the target-machine variables that were not explicitly set.
3729 if test x"$tm_file" = x
3730 then tm_file=$cpu_type/$cpu_type.h; fi
3732 if test x$extra_headers = x
3733 then extra_headers=; fi
3735 if test x"$xm_file" = x
3736 then xm_file=$cpu_type/xm-$cpu_type.h; fi
3738 if test x$md_file = x
3739 then md_file=$cpu_type/$cpu_type.md; fi
3741 if test x$out_file = x
3742 then out_file=$cpu_type/$cpu_type.c; fi
3744 if test x"$tmake_file" = x
3745 then tmake_file=$cpu_type/t-$cpu_type
3748 if test x"$dwarf2" = xyes
3749 then tm_file="tm-dwarf2.h $tm_file"
3752 if test x$float_format = x
3753 then float_format=i64
3756 if test $float_format = none
3757 then float_h_file=Makefile.in
3758 else float_h_file=float-$float_format.h
3761 # Handle cpp installation.
3762 if test x$enable_cpp != xno
3764 tmake_file="$tmake_file t-install-cpp"
3767 # Say what files are being used for the output code and MD file.
3768 echo "Using \`$srcdir/config/$out_file' to output insns."
3769 echo "Using \`$srcdir/config/$md_file' as machine description file."
3772 for f in $tm_file; do
3775 if test $count = ax; then
3776 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
3778 echo "Using the following target machine macro files:"
3779 for f in $tm_file; do
3780 echo " $srcdir/config/$f"
3785 for f in $host_xm_file; do
3788 if test $count = ax; then
3789 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
3791 echo "Using the following host machine macro files:"
3792 for f in $host_xm_file; do
3793 echo " $srcdir/config/$f"
3797 if test "$host_xm_file" != "$build_xm_file"; then
3799 for f in $build_xm_file; do
3802 if test $count = ax; then
3803 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
3805 echo "Using the following build machine macro files:"
3806 for f in $build_xm_file; do
3807 echo " $srcdir/config/$f"
3812 if test x$thread_file = x; then
3813 if test x$target_thread_file != x; then
3814 thread_file=$target_thread_file
3816 thread_file='single'
3820 # Set up the header files.
3821 # $links is the list of header files to create.
3822 # $vars is the list of shell variables with file names to include.
3823 # auto-host.h is the file containing items generated by autoconf and is
3824 # the first file included by config.h.
3826 host_xm_file="auto-host.h gansidecl.h ${host_xm_file} hwint.h"
3828 # If host=build, it is correct to have hconfig include auto-host.h
3829 # as well. If host!=build, we are in error and need to do more
3830 # work to find out the build config parameters.
3831 if test x$host = x$build
3833 build_xm_file="auto-host.h gansidecl.h ${build_xm_file} hwint.h"
3835 # We create a subdir, then run autoconf in the subdir.
3836 # To prevent recursion we set host and build for the new
3837 # invocation of configure to the build for this invocation
3844 /*) realsrcdir=${srcdir};;
3845 *) realsrcdir=../${srcdir};;
3847 CC=${CC_FOR_BUILD} ${realsrcdir}/configure \
3848 --target=$target --host=$build --build=$build
3850 # We just finished tests for the build machine, so rename
3851 # the file auto-build.h in the gcc directory.
3852 mv auto-host.h ../auto-build.h
3855 build_xm_file="auto-build.h gansidecl.h ${build_xm_file} hwint.h"
3858 xm_file="gansidecl.h ${xm_file}"
3859 tm_file="gansidecl.h ${tm_file}"
3861 vars="host_xm_file tm_file tm_p_file xm_file build_xm_file"
3862 links="config.h tm.h tm_p.h tconfig.h hconfig.h"
3863 defines="host_xm_defines null_defines null_defines xm_defines build_xm_defines"
3866 if test -f config.status; then mv -f config.status config.bak; fi
3869 while test -n "$vars"
3871 set $vars; var=$1; shift; vars=$*
3872 set $links; link=$1; shift; links=$*
3873 set $defines; define=$1; shift; defines=$*
3876 # Make sure the file is created, even if it is empty.
3879 # Define TARGET_CPU_DEFAULT if the system wants one.
3880 # This substitutes for lots of *.h files.
3881 if test "$target_cpu_default" != "" -a $link = tm.h
3883 echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
3886 for file in `eval echo '$'$var`; do
3891 echo '#ifdef IN_GCC' >>$link
3894 echo "#include \"$file\"" >>$link
3899 echo '#endif' >>$link
3904 for def in `eval echo '$'$define`; do
3905 echo "#ifndef $def" >>$link
3906 echo "#define $def" >>$link
3907 echo "#endif" >>$link
3911 # Truncate the target if necessary
3912 if test x$host_truncate_target != x; then
3913 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
3916 # Get the version trigger filename from the toplevel
3917 if test "${with_gcc_version_trigger+set}" = set; then
3918 gcc_version_trigger=$with_gcc_version_trigger
3920 gcc_version_trigger=${srcdir}/version.c
3923 gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${gcc_version_trigger}`
3926 # Internationalization
3928 VERSION="$gcc_version"
3929 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
3930 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
3936 # NLS support is still experimental, so disable it by default for now.
3938 [ --enable-nls use Native Language Support (disabled by default)],
3942 XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
3944 # Windows32 Registry support for specifying GCC installation paths.
3945 AC_ARG_ENABLE(win32-registry,
3946 [ --disable-win32-registry
3947 Disable lookup of installation paths in the
3948 Registry on Windows hosts.
3949 --enable-win32-registry Enable registry lookup (default).
3950 --enable-win32-registry=KEY
3951 Use KEY instead of GCC version as the last portion
3952 of the registry key.],,)
3954 AC_MSG_CHECKING(whether windows registry support is requested)
3955 if test x$enable_win32_registry != xno; then
3956 AC_DEFINE(ENABLE_WIN32_REGISTRY)
3962 # Check if user specified a different registry key.
3963 case x${enable_win32_registry} in
3966 gcc_cv_win32_registry_key="$VERSION"
3969 # no registry lookup.
3970 gcc_cv_win32_registry_key=''
3973 # user-specified key.
3974 gcc_cv_win32_registry_key="$enable_win32_registry"
3978 if test x$enable_win32_registry != xno; then
3979 AC_MSG_CHECKING(registry key on windows hosts)
3980 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key")
3981 AC_MSG_RESULT($gcc_cv_win32_registry_key)
3984 # Get an absolute path to the GCC top-level source directory
3990 # Conditionalize the makefile for this host machine.
3991 # Make-host contains the concatenation of all host makefile fragments
3992 # [there can be more than one]. This file is built by configure.frag.
3993 host_overrides=Make-host
3994 dep_host_xmake_file=
3995 for f in .. ${host_xmake_file}
3997 if test -f ${srcdir}/config/$f
3999 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
4003 # Conditionalize the makefile for this target machine.
4004 # Make-target contains the concatenation of all host makefile fragments
4005 # [there can be more than one]. This file is built by configure.frag.
4006 target_overrides=Make-target
4008 for f in .. ${tmake_file}
4010 if test -f ${srcdir}/config/$f
4012 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
4016 # If the host doesn't support symlinks, modify CC in
4017 # FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
4018 # Otherwise, we can use "CC=$(CC)".
4020 if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
4022 cc_set_by_configure="\$(CC)"
4023 quoted_cc_set_by_configure="\$(CC)"
4024 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
4027 if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
4029 symbolic_link="cp -p"
4033 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
4034 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
4035 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
4039 out_object_file=`basename $out_file .c`.o
4042 for f in $tm_file; do
4045 tm_file_list="${tm_file_list} $f" ;;
4046 *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
4051 for f in $host_xm_file; do
4053 auto-host.h | gansidecl.h | hwint.h )
4054 host_xm_file_list="${host_xm_file_list} $f" ;;
4055 *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
4060 for f in $build_xm_file; do
4062 auto-build.h | auto-host.h | gansidecl.h | hwint.h )
4063 build_xm_file_list="${build_xm_file_list} $f" ;;
4064 *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
4068 # Define macro CROSS_COMPILE in compilation
4069 # if this is a cross-compiler.
4070 # Also use all.cross instead of all.internal
4071 # and add cross-make to Makefile.
4072 cross_overrides="/dev/null"
4073 if test x$host != x$target
4075 cross_defines="CROSS=-DCROSS_COMPILE"
4076 cross_overrides="${topdir}/cross-make"
4079 # When building gcc with a cross-compiler, we need to fix a few things.
4080 # This must come after cross-make as we want all.build to override
4082 build_overrides="/dev/null"
4083 if test x$build != x$host
4085 build_overrides="${topdir}/build-make"
4088 # Expand extra_headers to include complete path.
4089 # This substitutes for lots of t-* files.
4091 if test "x$extra_headers" = x
4094 # Prepend ${srcdir}/ginclude/ to every entry in extra_headers.
4095 for file in $extra_headers;
4097 extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/${file}"
4101 if test x$use_collect2 = xno; then
4105 # Add a definition of USE_COLLECT2 if system wants one.
4106 # Also tell toplev.c what to do.
4107 # This substitutes for lots of t-* files.
4108 if test x$use_collect2 = x
4113 will_use_collect2="collect2"
4114 maybe_use_collect2="-DUSE_COLLECT2"
4118 # Set MD_DEPS if the real md file is in md.pre-cpp.
4119 # Set MD_CPP to the cpp to pass the md file through. Md files use ';'
4120 # for line oriented comments, so we must always use a GNU cpp. If
4121 # building gcc with a cross compiler, use the cross compiler just
4122 # built. Otherwise, we can use the cpp just built.
4124 if test "x$md_cppflags" = x
4126 md_file_sub=$srcdir/config/$md_file
4131 # If we have gas in the build tree, make a link to it.
4132 if test -f ../gas/Makefile; then
4133 rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
4136 # If we have nm in the build tree, make a link to it.
4137 if test -f ../binutils/Makefile; then
4138 rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
4141 # If we have ld in the build tree, make a link to it.
4142 if test -f ../ld/Makefile; then
4143 # if test x$use_collect2 = x; then
4144 # rm -f ld; $symbolic_link ../ld/ld-new$host_exeext ld$host_exeext 2>/dev/null
4146 rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
4150 # Figure out what assembler alignment features are present.
4151 AC_MSG_CHECKING(assembler alignment features)
4153 gcc_cv_as_alignment_features=
4154 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
4155 if test -x "$DEFAULT_ASSEMBLER"; then
4156 gcc_cv_as="$DEFAULT_ASSEMBLER"
4157 elif test -x "$AS"; then
4159 elif test -x as$host_exeext; then
4160 # Build using assembler in the current directory.
4161 gcc_cv_as=./as$host_exeext
4162 elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
4163 # Single tree build which includes gas.
4164 for f in $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
4167 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
4169 if test x$gcc_cv_gas_version != x; then
4174 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
4175 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
4177 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
4178 # Gas version 2.6 and later support for .balign and .p2align.
4179 # bytes to skip when using .p2align.
4180 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 6 -o "$gcc_cv_gas_major_version" -gt 2; then
4181 gcc_cv_as_alignment_features=".balign and .p2align"
4182 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4184 # Gas version 2.8 and later support specifying the maximum
4185 # bytes to skip when using .p2align.
4186 if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 8 -o "$gcc_cv_gas_major_version" -gt 2; then
4187 gcc_cv_as_alignment_features=".p2align including maximum skip"
4188 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4191 elif test x$host = x$target; then
4193 # Search the same directories that the installed compiler will
4194 # search. Else we may find the wrong assembler and lose. If we
4195 # do not find a suitable assembler binary, then try the user's
4198 # Also note we have to check MD_EXEC_PREFIX before checking the
4199 # user's path. Unfortunately, there is no good way to get at the
4200 # value of MD_EXEC_PREFIX here. So we do a brute force search
4201 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
4202 # to be fixed as part of the make/configure rewrite too.
4204 if test "x$exec_prefix" = xNONE; then
4205 if test "x$prefix" = xNONE; then
4206 test_prefix=/usr/local
4211 test_prefix=$exec_prefix
4214 # If the loop below does not find an assembler, then use whatever
4215 # one we can find in the users's path.
4219 test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
4220 $test_prefix/lib/gcc-lib/$target \
4221 /usr/lib/gcc/$target/$gcc_version \
4222 /usr/lib/gcc/$target \
4223 $test_prefix/$target/bin/$target/$gcc_version \
4224 $test_prefix/$target/bin \
4229 /bsd43/usr/lib/cmplrs/cc \
4230 /usr/cross64/usr/bin \
4231 /usr/lib/cmplrs/cc \
4232 /sysv/usr/lib/cmplrs/cc \
4233 /svr4/usr/lib/cmplrs/cc \
4236 for dir in $test_dirs; do
4237 if test -f $dir/as$host_exeext; then
4238 gcc_cv_as=$dir/as$host_exeext
4243 if test x$gcc_cv_as != x; then
4244 # Check if we have .balign and .p2align
4245 echo ".balign 4" > conftest.s
4246 echo ".p2align 2" >> conftest.s
4247 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4248 gcc_cv_as_alignment_features=".balign and .p2align"
4249 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4251 rm -f conftest.s conftest.o
4252 # Check if specifying the maximum bytes to skip when
4253 # using .p2align is supported.
4254 echo ".p2align 4,,7" > conftest.s
4255 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4256 gcc_cv_as_alignment_features=".p2align including maximum skip"
4257 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4259 rm -f conftest.s conftest.o
4261 AC_MSG_RESULT($gcc_cv_as_alignment_features)
4263 AC_MSG_CHECKING(assembler subsection support)
4264 gcc_cv_as_subsections=
4265 if test x$gcc_cv_as != x; then
4266 # Check if we have .subsection
4267 echo ".subsection 1" > conftest.s
4268 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4269 gcc_cv_as_subsections=".subsection"
4270 if test -x nm$host_exeext; then
4271 gcc_cv_nm=./nm$host_exeext
4272 elif test x$host = x$target; then
4274 gcc_cv_nm=nm$host_exeext
4276 if test x$gcc_cv_nm != x; then
4277 cat > conftest.s <<EOF
4278 conftest_label1: .word 0
4280 conftest_label2: .word 0
4283 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4284 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
4285 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
4286 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
4289 gcc_cv_as_subsections="working .subsection -1"
4290 AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING)
4295 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
4297 AC_MSG_RESULT($gcc_cv_as_subsections)
4301 AC_MSG_CHECKING(assembler .register pseudo-op support)
4302 gcc_cv_as_register_pseudo_op=
4303 if test x$gcc_cv_as != x; then
4304 # Check if we have .register
4305 echo ".register %g2, #scratch" > conftest.s
4306 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4307 gcc_cv_as_register_pseudo_op=yes
4308 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP)
4310 rm -f conftest.s conftest.o
4312 AC_MSG_RESULT($gcc_cv_as_register_pseudo_op)
4314 AC_MSG_CHECKING([assembler offsetable %lo() support])
4315 gcc_cv_as_offsetable_lo10=
4316 if test x$gcc_cv_as != x; then
4317 # Check if assembler has offsetable %lo()
4318 echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
4319 echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
4320 gcc_cv_as_flags64="-xarch=v9"
4321 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4324 gcc_cv_as_flags64="-64"
4325 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4328 gcc_cv_as_flags64=""
4331 if test -n "$gcc_cv_as_flags64" ; then
4332 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest1.o conftest1.s > /dev/null 2>&1; then
4333 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
4336 gcc_cv_as_offsetable_lo10=yes
4337 AC_DEFINE(HAVE_AS_OFFSETABLE_LO10)
4341 rm -f conftest.s conftest.o conftest1.s conftest1.o
4343 AC_MSG_RESULT($gcc_cv_as_offsetable_lo10)
4349 AC_MSG_CHECKING(assembler instructions)
4350 gcc_cv_as_instructions=
4351 if test x$gcc_cv_as != x; then
4352 set "filds fists" "filds mem; fists mem"
4355 echo "$2" > conftest.s
4356 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4357 gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
4358 AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$1" | tr '[a-z ]' '[A-Z_]'`)
4362 rm -f conftest.s conftest.o
4364 AC_MSG_RESULT($gcc_cv_as_instructions)
4368 # Figure out what language subdirectories are present.
4369 # Look if the user specified --enable-languages="..."; if not, use
4370 # the environment variable $LANGUAGES if defined. $LANGUAGES might
4372 if test x"${enable_languages+set}" != xset; then
4373 if test x"${LANGUAGES+set}" = xset; then
4374 enable_languages="`echo ${LANGUAGES} | tr ' ' ','`"
4376 enable_languages=all
4380 for lang in ${srcdir}/*/config-lang.in ..
4384 # The odd quoting in the next line works around
4385 # an apparent bug in bash 1.12 on linux.
4387 ${srcdir}/[*]/config-lang.in) ;;
4389 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
4390 if test "x$lang_alias" = x
4392 echo "$lang doesn't set \$language." 1>&2
4395 if test x"${enable_languages}" = xall; then
4398 case "${enable_languages}" in
4399 ${lang_alias} | "${lang_alias},"* | *",${lang_alias},"* | *",${lang_alias}" )
4407 if test x"${add_this_lang}" = xyes; then
4409 ${srcdir}/ada/config-lang.in)
4410 if test x$gnat = xyes ; then
4411 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4415 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4424 # Make gthr-default.h if we have a thread file.
4426 if test $thread_file != single; then
4427 rm -f gthr-default.h
4428 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
4429 gthread_flags=-DHAVE_GTHR_DEFAULT
4431 AC_SUBST(gthread_flags)
4433 # Make empty files to contain the specs and options for each language.
4434 # Then add #include lines to for a compiler that has specs and/or options.
4439 rm -f specs.h options.h gencheck.h
4440 touch specs.h options.h gencheck.h
4441 for subdir in . $subdirs
4443 if test -f $srcdir/$subdir/lang-specs.h; then
4444 echo "#include \"$subdir/lang-specs.h\"" >>specs.h
4445 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
4447 if test -f $srcdir/$subdir/lang-options.h; then
4448 echo "#include \"$subdir/lang-options.h\"" >>options.h
4449 lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
4451 if test -f $srcdir/$subdir/$subdir-tree.def; then
4452 echo "#include \"$subdir/$subdir-tree.def\"" >>gencheck.h
4453 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
4457 # These (without "all_") are set in each config-lang.in.
4458 # `language' must be a single word so is spelled singularly.
4464 all_outputs='Makefile intl/Makefile po/Makefile.in fixinc/Makefile'
4465 # List of language makefile fragments.
4470 # Add the language fragments.
4471 # Languages are added via two mechanisms. Some information must be
4472 # recorded in makefile variables, these are defined in config-lang.in.
4473 # We accumulate them and plug them into the main Makefile.
4474 # The other mechanism is a set of hooks for each of the main targets
4475 # like `clean', `install', etc.
4477 language_fragments="Make-lang"
4478 language_hooks="Make-hooks"
4481 for s in .. $subdirs
4493 . ${srcdir}/$s/config-lang.in
4494 if test "x$language" = x
4496 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
4499 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in ${srcdir}/$s/Makefile.in"
4500 all_languages="$all_languages $language"
4501 if test "x$boot_language" = xyes
4503 all_boot_languages="$all_boot_languages $language"
4505 all_compilers="$all_compilers $compilers"
4506 all_stagestuff="$all_stagestuff $stagestuff"
4507 all_diff_excludes="$all_diff_excludes $diff_excludes"
4508 all_headers="$all_headers $headers"
4509 all_outputs="$all_outputs $outputs"
4510 if test x$outputs = x
4512 oldstyle_subdirs="$oldstyle_subdirs $s"
4514 all_lib2funcs="$all_lib2funcs $lib2funcs"
4518 # Since we can't use `::' targets, we link each language in
4519 # with a set of hooks, reached indirectly via lang.${target}.
4523 target_list="all.build all.cross start.encap rest.encap \
4525 install-normal install-common install-info install-man \
4527 mostlyclean clean distclean extraclean maintainer-clean \
4528 stage1 stage2 stage3 stage4"
4529 for t in $target_list
4532 for lang in .. $all_languages
4534 if test $lang != ".."; then
4538 echo "lang.$t: $x" >> Make-hooks
4541 # If we're not building in srcdir, create .gdbinit.
4543 if test ! -f Makefile.in; then
4544 echo "dir ." > .gdbinit
4545 echo "dir ${srcdir}" >> .gdbinit
4546 if test x$gdb_needs_out_file_path = xyes
4548 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
4550 if test "x$subdirs" != x; then
4553 echo "dir ${srcdir}/$s" >> .gdbinit
4556 echo "source ${srcdir}/.gdbinit" >> .gdbinit
4559 # Define variables host_canonical and build_canonical
4560 # because some Cygnus local changes in the Makefile depend on them.
4561 build_canonical=${build}
4562 host_canonical=${host}
4564 if test "${host}" != "${target}" ; then
4565 target_subdir=${target}/
4567 AC_SUBST(build_canonical)
4568 AC_SUBST(host_canonical)
4569 AC_SUBST(target_subdir)
4571 # If this is using newlib, then define inhibit_libc in
4572 # LIBGCC2_CFLAGS. This will cause __eprintf to be left out of
4573 # libgcc.a, but that's OK because newib should have its own version of
4576 if test x$with_newlib = xyes; then
4577 inhibit_libc=-Dinhibit_libc
4579 AC_SUBST(inhibit_libc)
4581 # If $(exec_prefix) exists and is not the same as $(prefix), then compute an
4582 # absolute path for gcc_tooldir based on inserting the number of up-directory
4583 # movements required to get from $(exec_prefix) to $(prefix) into the basic
4584 # $(libsubdir)/@(unlibsubdir) based path.
4585 # Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
4586 # make and thus we'd get different behavior depending on where we built the
4588 if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
4589 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
4591 changequote(<<, >>)dnl
4592 # An explanation of the sed strings:
4593 # -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
4594 # -e 's|/$||' match a trailing forward slash and eliminates it
4595 # -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
4596 # -e 's|/[^/]*|../|g' replaces each occurance of /<directory> with ../
4598 # (*) Note this pattern overwrites the first character of the string
4599 # with a forward slash if one is not already present. This is not a
4600 # problem because the exact names of the sub-directories concerned is
4601 # unimportant, just the number of them matters.
4603 # The practical upshot of these patterns is like this:
4605 # prefix exec_prefix result
4606 # ------ ----------- ------
4608 # /foo/ /foo/bar ../
4609 # /foo /foo/bar/ ../
4610 # /foo/ /foo/bar/ ../
4611 # /foo /foo/bar/ugg ../../
4614 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
4615 changequote([, ])dnl
4617 AC_SUBST(gcc_tooldir)
4620 # Nothing to do for FLOAT_H, float_format already handled.
4624 # Process the language and host/target makefile fragments.
4625 ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
4627 # Substitute configuration variables
4629 AC_SUBST(all_boot_languages)
4630 AC_SUBST(all_compilers)
4631 AC_SUBST(all_diff_excludes)
4632 AC_SUBST(all_headers)
4633 AC_SUBST(all_lang_makefiles)
4634 AC_SUBST(all_languages)
4635 AC_SUBST(all_lib2funcs)
4636 AC_SUBST(all_stagestuff)
4637 AC_SUBST(build_exeext)
4638 AC_SUBST(build_install_headers_dir)
4639 AC_SUBST(build_xm_file_list)
4640 AC_SUBST(cc_set_by_configure)
4641 AC_SUBST(quoted_cc_set_by_configure)
4642 AC_SUBST(cpp_install_dir)
4644 AC_SUBST(dep_host_xmake_file)
4645 AC_SUBST(dep_tmake_file)
4646 AC_SUBST(extra_c_flags)
4647 AC_SUBST(extra_c_objs)
4648 AC_SUBST(extra_cpp_objs)
4649 AC_SUBST(extra_cxx_objs)
4650 AC_SUBST(extra_headers_list)
4651 AC_SUBST(extra_objs)
4652 AC_SUBST(extra_parts)
4653 AC_SUBST(extra_passes)
4654 AC_SUBST(extra_programs)
4655 AC_SUBST(fixinc_defs)
4656 AC_SUBST(float_h_file)
4657 AC_SUBST(gcc_gxx_include_dir)
4658 AC_SUBST(gcc_version)
4659 AC_SUBST(gcc_version_trigger)
4660 AC_SUBST(host_exeext)
4661 AC_SUBST(host_extra_gcc_objs)
4662 AC_SUBST(host_xm_file_list)
4664 AC_SUBST(lang_options_files)
4665 AC_SUBST(lang_specs_files)
4666 AC_SUBST(lang_tree_files)
4667 AC_SUBST(local_prefix)
4668 AC_SUBST(maybe_use_collect2)
4670 AC_SUBST(objc_boehm_gc)
4672 AC_SUBST(out_object_file)
4673 AC_SUBST(stage_prefix_set_by_configure)
4674 AC_SUBST(symbolic_link)
4675 AC_SUBST(thread_file)
4676 AC_SUBST(tm_file_list)
4677 AC_SUBST(will_use_collect2)
4680 AC_SUBST_FILE(target_overrides)
4681 AC_SUBST_FILE(host_overrides)
4682 AC_SUBST(cross_defines)
4683 AC_SUBST_FILE(cross_overrides)
4684 AC_SUBST_FILE(build_overrides)
4685 AC_SUBST_FILE(language_fragments)
4686 AC_SUBST_FILE(language_hooks)
4688 # Echo that links are built
4689 if test x$host = x$target
4697 if test x$host != x$build
4699 str3=" on a $build system"
4702 if test "x$str2" != x || test "x$str3" != x
4707 echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
4709 if test "x$str2" != x || test "x$str3" != x
4711 echo " ${str2}${str3}." 1>&2
4714 # Truncate the target if necessary
4715 if test x$host_truncate_target != x; then
4716 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
4719 # Configure the subdirectories
4720 # AC_CONFIG_SUBDIRS($subdirs)
4722 # Create the Makefile
4723 # and configure language subdirectories
4724 AC_OUTPUT($all_outputs,
4726 . $srcdir/configure.lang
4727 case x$CONFIG_HEADERS in
4728 xauto-host.h:config.in)
4731 # If the host supports symlinks, point stage[1234] at ../stage[1234] so
4732 # bootstrapping and the installation procedure can still use
4733 # CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
4734 # FLAGS_TO_PASS has been modified to solve the problem there.
4735 # This is virtually a duplicate of what happens in configure.lang; we do
4736 # an extra check to make sure this only happens if ln -s can be used.
4737 if test "$symbolic_link" = "ln -s"; then
4738 for d in .. ${subdirs} ; do
4739 if test $d != ..; then
4742 for t in stage1 stage2 stage3 stage4 include
4745 $symbolic_link ../$t $t 2>/dev/null
4751 # Avoid having to add intl to our include paths.
4752 if test -f intl/libintl.h; then
4753 echo creating libintl.h
4754 echo '#include "intl/libintl.h"' >libintl.h
4761 target_alias='${target_alias}'
4763 subdirs='${subdirs}'
4764 oldstyle_subdirs='${oldstyle_subdirs}'
4765 symbolic_link='${symbolic_link}'
4766 program_transform_set='${program_transform_set}'
4767 program_transform_name='${program_transform_name}'
4768 dep_host_xmake_file='${dep_host_xmake_file}'
4769 host_xmake_file='${host_xmake_file}'
4770 dep_tmake_file='${dep_tmake_file}'
4771 tmake_file='${tmake_file}'
4772 thread_file='${thread_file}'
4773 gcc_version='${gcc_version}'
4774 gcc_version_trigger='${gcc_version_trigger}'
4775 local_prefix='${local_prefix}'
4776 build_install_headers_dir='${build_install_headers_dir}'
4777 build_exeext='${build_exeext}'
4778 host_exeext='${host_exeext}'
4779 out_file='${out_file}'
4780 gdb_needs_out_file_path='${gdb_needs_out_file_path}'
4781 SET_MAKE='${SET_MAKE}'
4782 target_list='${target_list}'
4783 target_overrides='${target_overrides}'
4784 host_overrides='${host_overrides}'
4785 cross_defines='${cross_defines}'
4786 cross_overrides='${cross_overrides}'
4787 build_overrides='${build_overrides}'
4788 cpp_install_dir='${cpp_install_dir}'