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="${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 valloc)
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
390 GCC_NEED_DECLARATIONS(bcopy bzero bcmp \
391 index rindex getenv atol sbrk abort atof strerror getcwd getwd \
392 strsignal putc_unlocked fputs_unlocked strstr)
394 GCC_NEED_DECLARATIONS(malloc realloc calloc free, [
400 GCC_NEED_DECLARATIONS(getrlimit setrlimit getrusage, [
401 #include <sys/types.h>
402 #ifdef HAVE_SYS_RESOURCE_H
403 #include <sys/resource.h>
409 # mkdir takes a single argument on some systems.
410 GCC_FUNC_MKDIR_TAKES_ONE_ARG
420 build_install_headers_dir=install-headers-tar
425 host_truncate_target=
428 # Decode the host machine, then the target machine.
429 # For the host machine, we save the xm_file variable as host_xm_file;
430 # then we decode the target machine and forget everything else
431 # that came from the host machine.
432 for machine in $build $host $target; do
446 # Set this to force installation and use of collect2.
448 # Set this to override the default target model.
450 # Set this to control how the header file directory is installed.
451 install_headers_dir=install-headers-tar
452 # Set this to a non-empty list of args to pass to cpp if the target
453 # wants its .md file passed through cpp.
455 # Set this if directory names should be truncated to 14 characters.
457 # Set this if gdb needs a dir command with `dirname $out_file`
458 gdb_needs_out_file_path=
459 # Set this if the build machine requires executables to have a
462 # Set this to control which thread package will be used.
464 # Reinitialize these from the flag values every loop pass, since some
465 # configure entries modify them.
467 gnu_ld="$gnu_ld_flag"
468 enable_threads=$enable_threads_flag
470 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
471 # updated in each machine entry.
473 cpu_type=`echo $machine | sed 's/-.*$//'`
509 tm_file=${cpu_type}/${cpu_type}.h
510 xm_file=${cpu_type}/xm-${cpu_type}.h
511 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h;
513 tm_p_file=${cpu_type}/${cpu_type}-protos.h;
515 # On a.out targets, we need to use collect2.
522 # Common parts for linux-gnu and openbsd systems
525 xm_defines="HAVE_ATEXIT POSIX BSTRING"
528 tm_file=${cpu_type}/openbsd.h
529 tmake_file="t-libc-ok t-openbsd"
530 # avoid surprises, always provide an xm-openbsd file
531 xm_file=${cpu_type}/xm-openbsd.h
532 # don't depend on processor x-fragments as well
534 if test x$enable_threads = xyes; then
536 tmake_file="${tmake_file} t-openbsd-thread"
542 # Support site-specific machine types.
544 cpu_type=`echo $machine | sed -e 's/-.*//'`
545 rest=`echo $machine | sed -e "s/$cpu_type-//"`
546 xm_file=${cpu_type}/xm-$rest.h
547 tm_file=${cpu_type}/$rest.h
548 if test -f $srcdir/config/${cpu_type}/x-$rest; \
549 then xmake_file=${cpu_type}/x-$rest; \
552 if test -f $srcdir/config/${cpu_type}/t-$rest; \
553 then tmake_file=${cpu_type}/t-$rest; \
559 a29k-*-bsd* | a29k-*-sym1*)
560 tm_file="${tm_file} a29k/unix.h"
562 xmake_file=a29k/x-unix
565 a29k-*-udi | a29k-*-coff)
566 tm_file="${tm_file} dbxcoff.h a29k/udi.h"
567 tmake_file=a29k/t-a29kbare
570 tm_file="${tm_file} dbxcoff.h a29k/udi.h a29k/vx29k.h"
571 tmake_file=a29k/t-vx29k
572 extra_parts="crtbegin.o crtend.o"
573 thread_file='vxworks'
575 a29k-*-*) # Default a29k environment.
579 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
581 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
582 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
584 # GAS + IEEE_CONFORMANT
585 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
587 xm_file="alpha/xm-alpha-interix.h xm-interix.h"
588 xmake_file="x-interix alpha/t-pe"
589 tmake_file="alpha/t-interix alpha/t-ieee"
590 if test x$enable_threads = xyes ; then
593 if test x$stabs = xyes ; then
594 tm_file="${tm_file} dbxcoff.h"
596 #prefix='$$INTERIX_ROOT'/usr/contrib
597 #local_prefix='$$INTERIX_ROOT'/usr/contrib
599 alpha*-*-linux-gnuecoff*)
600 tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h"
601 target_cpu_default="MASK_GAS"
602 tmake_file="alpha/t-ieee"
607 alpha*-*-linux-gnulibc1*)
608 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
609 target_cpu_default="MASK_GAS"
610 tmake_file="t-linux t-linux-gnulibc1 alpha/t-linux alpha/t-crtbe alpha/t-ieee"
611 extra_parts="crtbegin.o crtend.o"
614 if test x$enable_threads = xyes; then
619 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
620 target_cpu_default="MASK_GAS"
621 tmake_file="t-linux alpha/t-linux alpha/t-crtbe alpha/t-ieee"
622 extra_parts="crtbegin.o crtend.o"
625 if test x$enable_threads = xyes; then
630 tm_file="${tm_file} alpha/elf.h alpha/netbsd.h alpha/netbsd-elf.h"
631 target_cpu_default="MASK_GAS"
632 tmake_file="alpha/t-crtbe alpha/t-ieee"
633 extra_parts="crtbegin.o crtend.o"
639 # default x-alpha is only appropriate for dec-osf.
640 target_cpu_default="MASK_GAS"
641 tmake_file="alpha/t-ieee"
645 if test x$stabs = xyes
647 tm_file="${tm_file} dbx.h"
649 if test x$gas != xyes
651 extra_passes="mips-tfile mips-tdump"
654 tmake_file="alpha/t-ieee"
657 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
662 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
665 tm_file="${tm_file} alpha/osf.h"
666 # Some versions of OSF4 (specifically X4.0-9 296.7) have
667 # a broken tar, so we use cpio instead.
668 install_headers_dir=install-headers-cpio
671 tm_file="${tm_file} alpha/osf.h"
676 *-*-osf4.0[b-z] | *-*-osf4.[1-9]*)
678 target_cpu_default=MASK_SUPPORT_ARCH
683 tm_file="${tm_file} dbx.h alpha/vxworks.h"
684 tmake_file="alpha/t-ieee"
687 extra_passes="mips-tfile mips-tdump"
690 thread_file='vxworks'
693 tm_file="${tm_file} alpha/alpha32.h alpha/win-nt.h winnt/win-nt.h"
694 xm_file="${xm_file} config/winnt/xm-winnt.h alpha/xm-winnt.h"
695 tmake_file="t-libc-ok alpha/t-ieee"
696 xmake_file=winnt/x-winnt
697 extra_host_objs=oldnames.o
698 extra_gcc_objs="spawnv.o oldnames.o"
699 if test x$gnu_ld != xyes
701 extra_programs=ld.exe
703 if test x$enable_threads = xyes; then
709 xm_file="${xm_file} alpha/xm-vms.h"
710 tmake_file="alpha/t-vms alpha/t-ieee"
713 extra_parts="crtinit.o crtfini.o"
715 arm-*-coff* | armel-*-coff*)
717 tmake_file=arm/t-bare
721 tmake_file=arm/t-bare
722 thread_file='vxworks'
725 arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
727 tm_file=arm/riscix1-1.h
730 arm-*-riscix*) # Acorn RISC machine
733 tm_file=arm/rix-gas.h
737 xmake_file=arm/x-riscix
738 tmake_file=arm/t-riscix
741 arm-semi-aout | armel-semi-aout)
743 tmake_file=arm/t-semi
745 arm-semi-aof | armel-semi-aof)
746 tm_file=arm/semiaof.h
747 tmake_file=arm/t-semiaof
751 xm_file="arm/xm-netbsd.h ${xm_file}"
752 tmake_file="t-netbsd arm/t-netbsd"
755 arm*-*-linux-gnuaout*) # ARM GNU/Linux with a.out
758 tm_file=arm/linux-aout.h
759 tmake_file=arm/t-linux
762 arm*-*-linux-gnuoldld*) # ARM GNU/Linux with old ELF linker
763 xm_file=arm/xm-linux.h
765 tm_file="arm/linux-oldld.h arm/linux-elf.h"
768 tm_file="arm/linux-elf26.h $tm_file"
771 tmake_file="t-linux arm/t-linux"
772 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
774 case x${enable_threads} in
775 x | xyes | xpthreads | xposix)
780 arm*-*-linux-gnu*) # ARM GNU/Linux with ELF
781 xm_file=arm/xm-linux.h
783 tm_file="arm/linux-elf.h"
786 tm_file="arm/linux-elf26.h $tm_file"
789 tmake_file="t-linux arm/t-linux"
790 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
792 case x${enable_threads} in
793 x | xyes | xpthreads | xposix)
798 arm*-*-uclinux*) # ARM ucLinux
799 tm_file=arm/uclinux-elf.h
800 tmake_file=arm/t-arm-elf
804 tmake_file=arm/t-bare
807 tm_file=arm/ecos-elf.h
811 tm_file=arm/unknown-elf.h
812 tmake_file=arm/t-arm-elf
815 tm_file=arm/unknown-elf-oabi.h
816 tmake_file=arm/t-arm-elf
823 c1-convex-*) # Convex C1
827 c2-convex-*) # Convex C2
840 target_cpu_default=16
847 clipper-intergraph-clix*)
848 tm_file="${tm_file} svr3.h clipper/clix.h"
849 xm_file=clipper/xm-clix.h
850 xmake_file=clipper/x-clix
851 extra_headers=va-clipper.h
852 extra_parts="crtbegin.o crtend.o"
853 install_headers_dir=install-headers-cpio
861 tm_file="fr30/fr30.h"
862 tmake_file=fr30/t-fr30
863 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
865 # This hasn't been upgraded to GCC 2.
866 # fx80-alliant-*) # Alliant FX/80
872 target_cpu_default="(MASK_PA_11 | MASK_GAS | MASK_JUMP_IN_DELAY)"
873 tm_file="${tm_file} pa/elf.h linux.h pa/pa-linux.h"
874 tmake_file="t-linux pa/t-linux"
875 extra_parts="crtbegin.o crtend.o"
878 if test x$enable_threads = xyes; then
883 target_cpu_default="MASK_PA_11"
884 tmake_file=pa/t-openbsd
887 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
888 tm_file="${tm_file} elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
889 xm_file=pa/xm-papro.h
893 target_cpu_default="MASK_PA_11"
894 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
898 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
899 tm_file="${tm_file} elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h"
900 xm_file=pa/xm-papro.h
904 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
908 tm_file="${tm_file} pa/som.h"
909 target_cpu_default="MASK_PA_11"
913 tm_file="${tm_file} pa/som.h"
917 tm_file="pa/pa-oldas.h ${tm_file} pa/som.h pa/pa-hpux7.h"
918 xm_file=pa/xm-pahpux.h
919 xmake_file=pa/x-pa-hpux
922 tm_file="${tm_file} pa/gas.h"
924 install_headers_dir=install-headers-cpio
928 hppa1.0-*-hpux8.0[0-2]*)
930 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
931 xm_file=pa/xm-pahpux.h
932 xmake_file=pa/x-pa-hpux
935 tm_file="${tm_file} pa/pa-gas.h"
937 tm_file="pa/pa-oldas.h ${tm_file}"
939 install_headers_dir=install-headers-cpio
943 hppa1.1-*-hpux8.0[0-2]*)
945 target_cpu_default="MASK_PA_11"
946 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
947 xm_file=pa/xm-pahpux.h
948 xmake_file=pa/x-pa-hpux
951 tm_file="${tm_file} pa/pa-gas.h"
953 tm_file="pa/pa-oldas.h ${tm_file}"
955 install_headers_dir=install-headers-cpio
959 target_cpu_default="MASK_PA_11"
960 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
961 xm_file=pa/xm-pahpux.h
962 xmake_file=pa/x-pa-hpux
965 tm_file="${tm_file} pa/pa-gas.h"
967 install_headers_dir=install-headers-cpio
971 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
972 xm_file=pa/xm-pahpux.h
973 xmake_file=pa/x-pa-hpux
976 tm_file="${tm_file} pa/pa-gas.h"
978 install_headers_dir=install-headers-cpio
981 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
982 target_cpu_default="MASK_PA_11"
983 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
984 xm_file=pa/xm-pahpux.h
985 xmake_file=pa/x-pa-hpux
989 tm_file="${tm_file} pa/pa-gas.h"
991 if test x$enable_threads = x; then
992 enable_threads=$have_pthread_h
994 if test x$enable_threads = xyes; then
996 tmake_file="${tmake_file} pa/t-dce-thr"
998 install_headers_dir=install-headers-cpio
1002 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
1003 xm_file=pa/xm-pahpux.h
1004 xmake_file=pa/x-pa-hpux
1006 if test x$gas = xyes
1008 tm_file="${tm_file} pa/pa-gas.h"
1010 if test x$enable_threads = x; then
1011 enable_threads=$have_pthread_h
1013 if test x$enable_threads = xyes; then
1015 tmake_file="${tmake_file} pa/t-dce-thr"
1017 install_headers_dir=install-headers-cpio
1020 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
1021 target_cpu_default="MASK_PA_11"
1022 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1023 xm_file=pa/xm-pahpux.h
1024 xmake_file=pa/x-pa-hpux
1026 if [[ x$gas = xyes ]]
1028 tm_file="${tm_file} pa/pa-gas.h"
1030 # if [[ x$enable_threads = x ]]; then
1031 # enable_threads=$have_pthread_h
1033 # if [[ x$enable_threads = xyes ]]; then
1035 # tmake_file="${tmake_file} pa/t-dce-thr"
1037 install_headers_dir=install-headers-cpio
1041 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
1042 xm_file=pa/xm-pahpux.h
1043 xmake_file=pa/x-pa-hpux
1044 if [[ x$gas = xyes ]]
1046 tm_file="${tm_file} pa/pa-gas.h"
1048 # if [[ x$enable_threads = x ]]; then
1049 # enable_threads=$have_pthread_h
1051 # if [[ x$enable_threads = xyes ]]; then
1053 # tmake_file="${tmake_file} pa/t-dce-thr"
1055 install_headers_dir=install-headers-cpio
1058 hppa1.1-*-hpux* | hppa2*-*-hpux*)
1059 target_cpu_default="MASK_PA_11"
1060 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1061 xm_file=pa/xm-pahpux.h
1062 xmake_file=pa/x-pa-hpux
1063 if test x$gas = xyes
1065 tm_file="${tm_file} pa/pa-gas.h"
1067 install_headers_dir=install-headers-cpio
1071 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
1072 xm_file=pa/xm-pahpux.h
1073 xmake_file=pa/x-pa-hpux
1074 if test x$gas = xyes
1076 tm_file="${tm_file} pa/pa-gas.h"
1078 install_headers_dir=install-headers-cpio
1081 hppa1.1-*-hiux* | hppa2*-*-hiux*)
1082 target_cpu_default="MASK_PA_11"
1083 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1084 xm_file=pa/xm-pahpux.h
1085 xmake_file=pa/x-pa-hpux
1086 if test x$gas = xyes
1088 tm_file="${tm_file} pa/pa-gas.h"
1090 install_headers_dir=install-headers-cpio
1094 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
1095 xm_file=pa/xm-pahpux.h
1096 xmake_file=pa/x-pa-hpux
1097 if test x$gas = xyes
1099 tm_file="${tm_file} pa/pa-gas.h"
1101 install_headers_dir=install-headers-cpio
1105 tm_file="${tm_file} elfos.h pa/elf.h"
1106 target_cpu_default="MASK_PA_11"
1110 tm_file="${tm_file} pa/pa-mpeix.h"
1111 xm_file=pa/xm-pampeix.h
1112 xmake_file=pa/x-pa-mpeix
1113 echo "You must use gas. Assuming it is already installed."
1114 install_headers_dir=install-headers-tar
1115 fixincludes=Makefile.in
1118 i370-*-opened*) # IBM 360/370/390 Architecture
1119 xm_file=i370/xm-oe.h
1121 xmake_file=i370/x-oe
1122 tmake_file=i370/t-oe
1123 fixincludes=Makefile.in # Headers are wierd, don't mess with
1126 xm_file=i370/xm-mvs.h
1128 tmake_file=i370/t-mvs
1129 fixincludes=Makefile.in # Headers are wierd, don't mess with
1132 xm_file="xm-linux.h i370/xm-linux.h"
1134 tm_file="i370/linux.h ${tm_file}"
1135 tmake_file="t-linux i370/t-linux"
1136 fixincludes=Makefile.in # The headers are ok already.
1137 # broken_install=yes
1138 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1139 # extra_parts="crtbegin.o crtend.o"
1143 if [[ x$enable_threads = xyes ]]; then
1150 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h"
1151 tm_file=i386/i386elf.h
1152 tmake_file=i386/t-i386elf
1156 i[34567]86-ibm-aix*) # IBM PS/2 running AIX
1158 if test x$gas = xyes
1160 tm_file=i386/aix386.h
1161 extra_parts="crtbegin.o crtend.o"
1162 tmake_file=i386/t-crtstuff
1164 tm_file=i386/aix386ng.h
1167 xm_file="xm-alloca.h i386/xm-aix.h ${xm_file}"
1169 xmake_file=i386/x-aix
1172 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1174 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1175 xm_defines="USG POSIX SMALL_ARG_MAX"
1176 xmake_file=i386/x-ncr3000
1177 if test x$stabs = xyes -a x$gas = xyes
1179 tm_file=i386/sysv4gdb.h
1181 tm_file=i386/sysv4.h
1183 extra_parts="crtbegin.o crtend.o"
1184 tmake_file=i386/t-crtpic
1190 xm_file=i386/xm-next.h
1191 tmake_file=i386/t-next
1192 xmake_file=i386/x-next
1193 extra_objs=nextstep.o
1194 extra_parts="crtbegin.o crtend.o"
1195 if test x$enable_threads = xyes; then
1200 i[34567]86-sequent-bsd*) # 80386 from Sequent
1203 if test x$gas = xyes
1205 tm_file=i386/seq-gas.h
1207 tm_file=i386/sequent.h
1211 i[34567]86-sequent-ptx1*)
1213 xm_defines="USG SVR3"
1214 xmake_file=i386/x-sysv3
1215 tm_file=i386/seq-sysv3.h
1216 tmake_file=i386/t-crtstuff
1217 extra_parts="crtbegin.o crtend.o"
1218 install_headers_dir=install-headers-cpio
1221 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1223 xm_defines="USG SVR3"
1224 xmake_file=i386/x-sysv3
1225 tm_file=i386/seq2-sysv3.h
1226 tmake_file=i386/t-crtstuff
1227 extra_parts="crtbegin.o crtend.o"
1228 install_headers_dir=install-headers-cpio
1231 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1233 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1234 xm_defines="USG POSIX SMALL_ARG_MAX"
1236 tm_file=i386/ptx4-i.h
1238 extra_parts="crtbegin.o crtend.o"
1239 install_headers_dir=install-headers-cpio
1241 i386-sun-sunos*) # Sun i386 roadrunner
1247 i[34567]86-wrs-vxworks*)
1249 tm_file=i386/vxi386.h
1250 tmake_file=i386/t-i386bare
1251 thread_file='vxworks'
1256 tm_file=i386/i386-aout.h
1257 tmake_file=i386/t-i386bare
1260 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1262 tm_file=i386/bsd386.h
1263 # tmake_file=t-libc-ok
1268 tm_file=i386/386bsd.h
1269 # tmake_file=t-libc-ok
1270 # Next line turned off because both 386BSD and BSD/386 use GNU ld.
1274 i[34567]86-*-freebsdelf*)
1276 tm_file="i386/i386.h i386/att.h svr4.h i386/freebsd-elf.h i386/perform.h"
1277 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1278 tmake_file=t-freebsd
1282 case x${enable_threads} in
1283 xyes | xpthreads | xposix)
1285 tmake_file="${tmake_file} t-openbsd-thread"
1290 i[34567]86-*-freebsd*)
1292 tm_file=i386/freebsd.h
1293 tmake_file=t-freebsd
1296 i[34567]86-*-netbsd*)
1298 tm_file=i386/netbsd.h
1303 i[34567]86-*-openbsd*)
1305 # we need collect2 until our bug is fixed...
1311 tm_file=i386/i386-coff.h
1312 tmake_file=i386/t-i386bare
1315 i[34567]86-*-isc*) # 80386 running ISC system
1317 xm_file="${xm_file} i386/xm-isc.h"
1318 xm_defines="USG SVR3"
1321 i[34567]86-*-isc[34]*)
1323 xmake_file=i386/x-isc3
1326 xmake_file=i386/x-isc
1329 if test x$gas = xyes -a x$stabs = xyes
1331 tm_file=i386/iscdbx.h
1332 tmake_file=i386/t-svr3dbx
1333 extra_parts="svr3.ifile svr3z.ifile"
1335 tm_file=i386/isccoff.h
1336 tmake_file=i386/t-crtstuff
1337 extra_parts="crtbegin.o crtend.o"
1339 install_headers_dir=install-headers-cpio
1342 i[34567]86-*-linux-gnuoldld*) # Intel 80386's running GNU/Linux
1343 changequote([,])dnl # with a.out format using
1345 xmake_file=x-linux-aout
1346 tmake_file="t-linux-aout i386/t-crtstuff"
1347 tm_file=i386/linux-oldld.h
1352 i[34567]86-*-linux-gnuaout*) # Intel 80386's running GNU/Linux
1353 changequote([,])dnl # with a.out format
1354 xmake_file=x-linux-aout
1355 tmake_file="t-linux-aout i386/t-crtstuff"
1356 tm_file=i386/linux-aout.h
1361 i[34567]86-*-linux-gnulibc1) # Intel 80386's running GNU/Linux
1362 changequote([,])dnl # with ELF format using the
1363 # GNU/Linux C library 5
1365 tm_file=i386/linux.h
1366 tmake_file="t-linux t-linux-gnulibc1 i386/t-crtstuff"
1367 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1370 if test x$enable_threads = xyes; then
1371 thread_file='single'
1375 i[34567]86-*-linux-gnu*) # Intel 80386's running GNU/Linux
1376 changequote([,])dnl # with ELF format using glibc 2
1377 # aka GNU/Linux C library 6
1379 tm_file=i386/linux.h
1380 tmake_file="t-linux i386/t-crtstuff"
1381 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
1384 if test x$enable_threads = xyes; then
1394 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1396 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
1400 i[34567]86-pc-msdosdjgpp*)
1402 xm_file=i386/xm-djgpp.h
1403 tm_file=i386/djgpp.h
1404 tmake_file=i386/t-djgpp
1405 xmake_file=i386/x-djgpp
1409 case $host in *pc-msdosdjgpp*)
1415 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1418 tmake_file=t-libc-ok
1423 i[34567]86-*-lynxos*)
1425 if test x$gas = xyes
1429 tm_file=i386/lynx-ng.h
1431 xm_file=i386/xm-lynx.h
1432 tmake_file=i386/t-i386bare
1439 # tmake_file=t-libc-ok
1443 i[34567]86-*-osfrose*) # 386 using OSF/rose
1445 if test x$elf = xyes
1447 tm_file=i386/osfelf.h
1450 tm_file=i386/osfrose.h
1453 xm_file="i386/xm-osf.h ${xm_file}"
1454 xmake_file=i386/x-osfrose
1455 tmake_file=i386/t-osf
1456 extra_objs=halfpic.o
1459 i[34567]86-go32-rtems*)
1462 xm_file=i386/xm-go32.h
1463 tm_file=i386/go32-rtems.h
1464 tmake_file="i386/t-go32 t-rtems"
1467 i[34567]86-*-rtems*|i[34567]86-*-rtemself*)
1470 tm_file=i386/rtemself.h
1471 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
1472 tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems"
1475 i[34567]86-*-rtemscoff*)
1478 tm_file=i386/rtems.h
1479 tmake_file="i386/t-i386bare t-rtems"
1482 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1484 xm_file="xm-siglist.h xm-alloca.h ${xm_file} i386/xm-sco5.h"
1485 xm_defines="USG SVR3"
1486 xmake_file=i386/x-sco5
1487 install_headers_dir=install-headers-cpio
1489 if test x$gas = xyes
1491 tm_file="i386/sco5gas.h ${tm_file}"
1492 tmake_file=i386/t-sco5gas
1494 tmake_file=i386/t-sco5
1496 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
1499 i[34567]86-*-sco3.2v4*) # 80386 running SCO 3.2v4 system
1501 xm_file="${xm_file} i386/xm-sco.h"
1502 xm_defines="USG SVR3 BROKEN_LDEXP SMALL_ARG_MAX NO_SYS_SIGLIST"
1503 xmake_file=i386/x-sco4
1504 install_headers_dir=install-headers-cpio
1505 if test x$stabs = xyes
1507 tm_file=i386/sco4dbx.h
1508 tmake_file=i386/t-svr3dbx
1509 extra_parts="svr3.ifile svr3z.rfile"
1512 tmake_file=i386/t-crtstuff
1513 extra_parts="crtbegin.o crtend.o"
1515 # The default EAFS filesystem supports long file names.
1516 # Truncating the target makes $host != $target which
1517 # makes gcc think it is doing a cross-compile.
1518 # truncate_target=yes
1521 i[34567]86-*-sco*) # 80386 running SCO system
1523 xm_file=i386/xm-sco.h
1524 xmake_file=i386/x-sco
1525 install_headers_dir=install-headers-cpio
1526 if test x$stabs = xyes
1528 tm_file=i386/scodbx.h
1529 tmake_file=i386/t-svr3dbx
1530 extra_parts="svr3.ifile svr3z.rfile"
1533 extra_parts="crtbegin.o crtend.o"
1534 tmake_file=i386/t-crtstuff
1539 i[34567]86-*-solaris2*)
1541 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1542 xm_defines="USG POSIX SMALL_ARG_MAX"
1544 if test x$gas = xyes; then
1545 # Only needed if gas does not support -s
1546 tm_file="i386/sol2gas.h ${tm_file}"
1548 tmake_file=i386/t-sol2
1549 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
1551 if test x${enable_threads} = x; then
1552 enable_threads=$have_pthread_h
1553 if test x${enable_threads} = x; then
1554 enable_threads=$have_thread_h
1557 if test x${enable_threads} = xyes; then
1558 if test x${have_pthread_h} = xyes; then
1561 thread_file='solaris'
1566 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1568 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1569 xm_defines="USG POSIX"
1570 tm_file=i386/sysv5.h
1571 if test x$stabs = xyes
1573 tm_file="${tm_file} dbx.h"
1575 tmake_file=i386/t-crtpic
1577 extra_parts="crtbegin.o crtend.o"
1578 if test x$enable_threads = xyes; then
1583 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1585 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1586 xm_defines="USG POSIX SMALL_ARG_MAX"
1587 tm_file=i386/sysv4.h
1588 if test x$stabs = xyes
1590 tm_file="${tm_file} dbx.h"
1592 tmake_file=i386/t-crtpic
1594 extra_parts="crtbegin.o crtend.o"
1597 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1599 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1600 xm_defines="USG POSIX"
1602 tmake_file="i386/t-crtpic i386/t-udk"
1604 extra_parts="crtbegin.o crtend.o"
1605 install_headers_dir=install-headers-cpio
1608 i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
1611 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h i386/xm-osf1elf.h"
1612 xm_defines="USE_C_ALLOCA SMALL_ARG_MAX"
1613 if test x$stabs = xyes
1615 tm_file=i386/osf1elfgdb.h
1617 tm_file=i386/osf1elf.h
1619 tmake_file=i386/t-osf1elf
1620 xmake_file=i386/x-osf1elf
1621 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1624 i[34567]86-*-sysv*) # Intel 80386's running system V
1626 xm_defines="USG SVR3"
1627 xmake_file=i386/x-sysv3
1628 if test x$gas = xyes
1630 if test x$stabs = xyes
1632 tm_file=i386/svr3dbx.h
1633 tmake_file=i386/t-svr3dbx
1634 extra_parts="svr3.ifile svr3z.rfile"
1636 tm_file=i386/svr3gas.h
1637 extra_parts="crtbegin.o crtend.o"
1638 tmake_file=i386/t-crtstuff
1641 tm_file=i386/sysv3.h
1642 extra_parts="crtbegin.o crtend.o"
1643 tmake_file=i386/t-crtstuff
1646 i386-*-vsta) # Intel 80386's running VSTa kernel
1647 xm_file="${xm_file} i386/xm-vsta.h"
1649 tmake_file=i386/t-vsta
1650 xmake_file=i386/x-vsta
1655 xm_file="${xm_file} i386/xm-cygwin.h"
1656 tmake_file=i386/t-cygwin
1657 tm_file=i386/win32.h
1658 xmake_file=i386/x-cygwin
1660 if test x$enable_threads = xyes; then
1666 i[34567]86-*-pe | i[34567]86-*-cygwin*)
1668 xm_file="${xm_file} i386/xm-cygwin.h"
1669 tmake_file=i386/t-cygwin
1670 tm_file=i386/cygwin.h
1671 xmake_file=i386/x-cygwin
1673 if test x$enable_threads = xyes; then
1679 i[34567]86-*-mingw32*)
1681 tm_file=i386/mingw32.h
1682 xm_file="${xm_file} i386/xm-mingw32.h"
1683 tmake_file="i386/t-cygwin i386/t-mingw32"
1685 xmake_file=i386/x-cygwin
1686 if test x$enable_threads = xyes; then
1693 *minwg32crt* | *mingw32*)
1694 tm_file="${tm_file} i386/crtdll.h"
1702 xm_file="${xm_file} i386/xm-uwin.h"
1703 xm_defines="USG NO_STAB_H NO_SYS_SIGLIST"
1704 tmake_file="i386/t-cygwin i386/t-uwin"
1706 xmake_file=i386/x-cygwin
1707 if test x$enable_threads = xyes; then
1713 i[34567]86-*-interix*)
1715 tm_file="i386/i386-interix.h interix.h"
1716 xm_file="i386/xm-i386-interix.h xm-interix.h"
1717 xm_defines="USG NO_SYS_SIGLIST"
1718 tmake_file="i386/t-interix"
1719 extra_objs=interix.o
1720 xmake_file=x-interix
1721 if test x$enable_threads = xyes ; then
1724 if test x$stabs = xyes ; then
1725 tm_file="${tm_file} dbxcoff.h"
1729 i[34567]86-*-winnt3*)
1731 tm_file=i386/win-nt.h
1732 out_file=i386/i386.c
1733 xm_file="xm-winnt.h ${xm_file}"
1734 xmake_file=winnt/x-winnt
1735 tmake_file=i386/t-winnt
1736 extra_host_objs="winnt.o oldnames.o"
1737 extra_gcc_objs="spawnv.o oldnames.o"
1738 if test x$gnu_ld != xyes
1740 extra_programs=ld.exe
1742 if test x$enable_threads = xyes; then
1747 i[34567]86-dg-dgux*)
1749 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1750 xm_defines="USG POSIX"
1751 out_file=i386/dgux.c
1753 tmake_file=i386/t-dgux
1754 xmake_file=i386/x-dgux
1755 install_headers_dir=install-headers-cpio
1757 i860-alliant-*) # Alliant FX/2800
1758 tm_file="${tm_file} svr4.h i860/sysv4.h i860/fx2800.h"
1759 xm_file="${xm_file}"
1760 xmake_file=i860/x-fx2800
1761 tmake_file=i860/t-fx2800
1762 extra_parts="crtbegin.o crtend.o"
1765 tm_file="${tm_file} i860/bsd.h"
1766 if test x$gas = xyes
1768 tm_file="${tm_file} i860/bsd-gas.h"
1773 tm_file="${tm_file} i860/mach.h"
1774 tmake_file=t-libc-ok
1776 i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1777 tm_file="${tm_file} svr3.h i860/paragon.h"
1778 xm_defines="USG SVR3"
1782 tm_file="${tm_file} svr3.h i860/sysv3.h"
1783 xm_defines="USG SVR3"
1784 xmake_file=i860/x-sysv3
1785 extra_parts="crtbegin.o crtend.o"
1788 tm_file="${tm_file} svr4.h i860/sysv4.h"
1789 xm_defines="USG SVR3"
1790 xmake_file=i860/x-sysv4
1792 extra_parts="crtbegin.o crtend.o"
1794 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1795 tm_file="${tm_file} i960/vx960.h"
1796 tmake_file=i960/t-vxworks960
1798 thread_file='vxworks'
1800 i960-wrs-vxworks5* | i960-wrs-vxworks)
1801 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1802 tmake_file=i960/t-vxworks960
1804 thread_file='vxworks'
1807 tm_file="${tm_file} i960/vx960.h"
1808 tmake_file=i960/t-vxworks960
1810 thread_file='vxworks'
1813 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1814 tmake_file=i960/t-960bare
1818 tmake_file="i960/t-960bare t-rtems"
1819 tm_file="${tm_file} dbxcoff.h i960/rtems.h"
1822 i960-*-*) # Default i960 environment.
1826 extra_parts="crtinit.o crtfini.o"
1828 m68000-convergent-sysv*)
1830 xm_file="m68k/xm-3b1.h ${xm_file}"
1833 extra_headers=math-68881.h
1835 m68000-hp-bsd*) # HP 9000/200 running BSD
1836 tm_file=m68k/hp2bsd.h
1837 xmake_file=m68k/x-hp2bsd
1839 extra_headers=math-68881.h
1841 m68000-hp-hpux*) # HP 9000 series 300
1842 xm_file="xm_alloca.h ${xm_file}"
1843 xm_defines="USG NO_SYS_SIGLIST"
1844 if test x$gas = xyes
1846 xmake_file=m68k/x-hp320g
1847 tm_file=m68k/hp310g.h
1849 xmake_file=m68k/x-hp320
1850 tm_file=m68k/hp310.h
1852 install_headers_dir=install-headers-cpio
1854 extra_headers=math-68881.h
1859 extra_headers=math-68881.h
1862 tm_file=m68k/sun2o4.h
1864 extra_headers=math-68881.h
1867 xm_file="m68k/xm-3b1.h ${xm_file}"
1869 if test x$gas = xyes
1876 extra_headers=math-68881.h
1878 m68k-apple-aux*) # Apple Macintosh running A/UX
1879 xm_defines="USG AUX"
1880 tmake_file=m68k/t-aux
1881 install_headers_dir=install-headers-cpio
1882 extra_headers=math-68881.h
1883 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1885 if test "$gnu_ld" = yes
1887 tm_file="${tm_file} m68k/auxgld.h"
1889 tm_file="${tm_file} m68k/auxld.h"
1891 if test "$gas" = yes
1893 tm_file="${tm_file} m68k/auxgas.h"
1895 tm_file="${tm_file} m68k/auxas.h"
1897 tm_file="${tm_file} m68k/a-ux.h"
1901 tm_file=m68k/apollo68.h
1902 xmake_file=m68k/x-apollo68
1904 extra_headers=math-68881.h
1907 m68k-altos-sysv*) # Altos 3068
1908 if test x$gas = xyes
1910 tm_file=m68k/altos3068.h
1913 echo "The Altos is supported only with the GNU assembler" 1>&2
1916 extra_headers=math-68881.h
1918 m68k-bull-sysv*) # Bull DPX/2
1919 if test x$gas = xyes
1921 if test x$stabs = xyes
1923 tm_file=m68k/dpx2cdbx.h
1925 tm_file=m68k/dpx2g.h
1930 xm_file="xm-alloca.h ${xm_file}"
1932 xmake_file=m68k/x-dpx2
1934 extra_headers=math-68881.h
1936 m68k-atari-sysv4*) # Atari variant of V.4.
1937 tm_file=m68k/atari.h
1938 xm_file="xm-alloca.h ${xm_file}"
1939 xm_defines="USG FULL_PROTOTYPES"
1941 extra_parts="crtbegin.o crtend.o"
1942 extra_headers=math-68881.h
1945 m68k-motorola-sysv*)
1946 tm_file=m68k/mot3300.h
1947 xm_file="xm-alloca.h m68k/xm-mot3300.h ${xm_file}"
1948 xm_defines=NO_SYS_SIGLIST
1949 if test x$gas = xyes
1951 xmake_file=m68k/x-mot3300-gas
1952 if test x$gnu_ld = xyes
1954 tmake_file=m68k/t-mot3300-gald
1956 tmake_file=m68k/t-mot3300-gas
1960 xmake_file=m68k/x-mot3300
1961 if test x$gnu_ld = xyes
1963 tmake_file=m68k/t-mot3300-gld
1965 tmake_file=m68k/t-mot3300
1969 gdb_needs_out_file_path=yes
1970 extra_parts="crt0.o mcrt0.o"
1971 extra_headers=math-68881.h
1974 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1975 tm_file=m68k/tower-as.h
1976 xm_defines="USG SVR3"
1977 xmake_file=m68k/x-tower
1978 extra_parts="crtbegin.o crtend.o"
1979 extra_headers=math-68881.h
1982 tm_file=m68k/plexus.h
1983 xm_file="xm-alloca.h m68k/xm-plexus.h ${xm_file}"
1986 extra_headers=math-68881.h
1990 xm_file="xm-alloca.h ${xm_file}"
1992 extra_headers=math-68881.h
1995 xm_file="xm-alloca.h m68k/xm-crds.h ${xm_file}"
1996 xm_defines="USG unos"
1997 xmake_file=m68k/x-crds
2000 extra_headers=math-68881.h
2002 m68k-cbm-sysv4*) # Commodore variant of V.4.
2004 xm_file="xm-alloca.h ${xm_file}"
2005 xm_defines="USG FULL_PROTOTYPES"
2006 xmake_file=m68k/x-amix
2008 extra_parts="crtbegin.o crtend.o"
2009 extra_headers=math-68881.h
2013 tm_file=m68k/ccur-GAS.h
2014 xmake_file=m68k/x-ccur
2015 extra_headers=math-68881.h
2019 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
2020 tm_file=m68k/hp3bsd44.h
2021 xmake_file=m68k/x-hp3bsd44
2023 extra_headers=math-68881.h
2026 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
2027 tm_file=m68k/hp3bsd.h
2029 extra_headers=math-68881.h
2033 if test x$with_fp = xno
2035 tm_file=m68k/isi-nfp.h
2041 extra_headers=math-68881.h
2043 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
2044 xm_file="xm_alloca.h ${xm_file}"
2045 xm_defines="USG NO_SYS_SIGLIST"
2046 if test x$gas = xyes
2048 xmake_file=m68k/x-hp320g
2049 tm_file=m68k/hp320g.h
2051 xmake_file=m68k/x-hp320
2052 tm_file=m68k/hpux7.h
2054 install_headers_dir=install-headers-cpio
2056 extra_headers=math-68881.h
2059 m68k-hp-hpux*) # HP 9000 series 300
2060 xm_file="xm_alloca.h ${xm_file}"
2061 xm_defines="USG NO_SYS_SIGLIST"
2062 if test x$gas = xyes
2064 xmake_file=m68k/x-hp320g
2065 tm_file=m68k/hp320g.h
2067 xmake_file=m68k/x-hp320
2068 tm_file=m68k/hp320.h
2070 install_headers_dir=install-headers-cpio
2072 extra_headers=math-68881.h
2076 tm_file=m68k/sun3mach.h
2078 extra_headers=math-68881.h
2082 if test x$gas = xyes
2084 tm_file=m68k/news3gas.h
2086 tm_file=m68k/news3.h
2089 extra_headers=math-68881.h
2092 m68k-sony-bsd* | m68k-sony-newsos*)
2093 if test x$gas = xyes
2095 tm_file=m68k/newsgas.h
2100 extra_headers=math-68881.h
2103 m68k-next-nextstep2*)
2104 tm_file=m68k/next21.h
2105 xm_file="m68k/xm-next.h ${xm_file}"
2106 tmake_file=m68k/t-next
2107 xmake_file=m68k/x-next
2108 extra_objs=nextstep.o
2109 extra_headers=math-68881.h
2113 m68k-next-nextstep3*)
2115 xm_file="m68k/xm-next.h ${xm_file}"
2116 tmake_file=m68k/t-next
2117 xmake_file=m68k/x-next
2118 extra_objs=nextstep.o
2119 extra_parts="crtbegin.o crtend.o"
2120 extra_headers=math-68881.h
2122 if test x$enable_threads = xyes; then
2127 if test x$with_fp = xno
2129 tm_file=m68k/sun3n3.h
2131 tm_file=m68k/sun3o3.h
2135 extra_headers=math-68881.h
2137 m68k-sun-sunos*) # For SunOS 4 (the default).
2138 if test x$with_fp = xno
2140 tm_file=m68k/sun3n.h
2146 extra_headers=math-68881.h
2149 tm_file=m68k/vxm68k.h
2150 tmake_file=m68k/t-vxworks68
2151 extra_headers=math-68881.h
2152 thread_file='vxworks'
2156 tmake_file=m68k/t-m68kbare
2157 tm_file="m68k/m68k-aout.h libgloss.h"
2158 extra_headers=math-68881.h
2162 tmake_file=m68k/t-m68kbare
2163 tm_file="m68k/m68k-coff.h dbx.h libgloss.h"
2164 extra_headers=math-68881.h
2167 m68020-*-elf* | m68k-*-elf*)
2168 tm_file="m68k/m68020-elf.h"
2169 xm_file=m68k/xm-m68kv.h
2170 tmake_file=m68k/t-m68kelf
2171 header_files=math-68881.h
2174 if test x$gas = xyes
2178 tm_file=m68k/lynx-ng.h
2180 xm_file=m68k/xm-lynx.h
2182 tmake_file=m68k/t-lynx
2183 extra_headers=math-68881.h
2187 tm_file=m68k/netbsd.h
2194 # we need collect2 until our bug is fixed...
2197 m68k-*-sysv3*) # Motorola m68k's running system V.3
2198 xm_file="xm-alloca.h ${xm_file}"
2200 xmake_file=m68k/x-m68kv
2201 extra_parts="crtbegin.o crtend.o"
2202 extra_headers=math-68881.h
2205 m68k-*-sysv4*) # Motorola m68k's running system V.4
2206 tm_file=m68k/m68kv4.h
2207 xm_file="xm-alloca.h ${xm_file}"
2210 extra_parts="crtbegin.o crtend.o"
2211 extra_headers=math-68881.h
2214 m68k-*-linux-gnuaout*) # Motorola m68k's running GNU/Linux
2217 tm_file=m68k/linux-aout.h
2218 tmake_file="t-linux-aout m68k/t-linux-aout"
2219 extra_headers=math-68881.h
2223 m68k-*-linux-gnulibc1) # Motorola m68k's running GNU/Linux
2224 # with ELF format using the
2225 # GNU/Linux C library 5
2227 tm_file=m68k/linux.h
2228 tmake_file="t-linux t-linux-gnulibc1 m68k/t-linux"
2229 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2230 extra_headers=math-68881.h
2234 m68k-*-linux-gnu*) # Motorola m68k's running GNU/Linux
2235 # with ELF format using glibc 2
2236 # aka the GNU/Linux C library 6.
2238 tm_file=m68k/linux.h
2239 tmake_file="t-linux m68k/t-linux"
2240 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2241 extra_headers=math-68881.h
2244 if test x$enable_threads = xyes; then
2249 tmake_file=m68k/t-m68kbare
2250 tm_file=m68k/m68k-psos.h
2251 extra_headers=math-68881.h
2254 m68k-*-rtemscoff*|m68k-*-rtems*)
2255 tmake_file="m68k/t-m68kbare t-rtems"
2256 tm_file=m68k/rtems.h
2257 extra_headers=math-68881.h
2261 tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff"
2262 tm_file=m68k/rtemself.h
2263 extra_headers=math-68881.h
2269 tm_file=m88k/dguxbcs.h
2270 tmake_file=m88k/t-dguxbcs
2274 tmake_file=m88k/t-dgux
2277 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
2278 xmake_file=m88k/x-dgux
2279 if test x$gas = xyes
2281 tmake_file=m88k/t-dgux-gas
2284 m88k-dolphin-sysv3*)
2285 tm_file=m88k/dolph.h
2286 extra_parts="crtbegin.o crtend.o"
2287 xm_file="m88k/xm-sysv3.h ${xm_file}"
2288 xmake_file=m88k/x-dolph
2289 if test x$gas = xyes
2291 tmake_file=m88k/t-m88k-gas
2294 m88k-tektronix-sysv3)
2295 tm_file=m88k/tekXD88.h
2296 extra_parts="crtbegin.o crtend.o"
2297 xm_file="m88k/xm-sysv3.h ${xm_file}"
2298 xmake_file=m88k/x-tekXD88
2299 if test x$gas = xyes
2301 tmake_file=m88k/t-m88k-gas
2305 tm_file=m88k/m88k-aout.h
2308 tm_file=m88k/m88k-coff.h
2309 tmake_file=m88k/t-bug
2313 extra_parts="crtbegin.o crtend.o"
2314 if test x$gas = xyes
2316 tmake_file=m88k/t-luna-gas
2318 tmake_file=m88k/t-luna
2322 tmake_file="${tmake_file} m88k/t-luna-gas"
2325 tm_file=m88k/sysv3.h
2326 extra_parts="crtbegin.o crtend.o"
2327 xm_file="m88k/xm-sysv3.h ${xm_file}"
2328 xmake_file=m88k/x-sysv3
2329 if test x$gas = xyes
2331 tmake_file=m88k/t-m88k-gas
2335 tm_file=m88k/sysv4.h
2336 extra_parts="crtbegin.o crtend.o"
2337 xmake_file=m88k/x-sysv4
2338 tmake_file=m88k/t-sysv4
2340 mips-sgi-irix6*) # SGI System V.4., IRIX 6
2341 if test "x$gnu_ld" = xyes
2343 tm_file="mips/iris6.h mips/iris6gld.h"
2345 tm_file=mips/iris6.h
2347 tmake_file=mips/t-iris6
2348 xm_file=mips/xm-iris6.h
2349 xmake_file=mips/x-iris6
2350 # if test x$enable_threads = xyes; then
2351 # thread_file='irix'
2355 tm_file="mips/elf.h mips/vxworks.h"
2356 tmake_file=mips/t-ecoff
2359 extra_parts="crtbegin.o crtend.o"
2360 thread_file='vxworks'
2362 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
2363 tm_file="mips/iris6.h mips/cross64.h"
2365 xm_file="mips/xm-iris5.h"
2366 xmake_file=mips/x-iris
2367 tmake_file=mips/t-cross64
2368 # See comment in mips/iris[56].h files.
2370 # if test x$enable_threads = xyes; then
2371 # thread_file='irix'
2375 if test x$gas = xyes
2377 if test x$stabs = xyes
2379 tm_file=mips/iris5gdb.h
2381 tm_file="mips/sni-svr4.h mips/sni-gas.h"
2384 tm_file=mips/sni-svr4.h
2387 xmake_file=mips/x-sni-svr4
2388 tmake_file=mips/t-mips-gas
2389 if test x$gnu_ld != xyes
2394 mips-sgi-irix5*) # SGI System V.4., IRIX 5
2395 if test x$gas = xyes
2397 tm_file="mips/iris5.h mips/iris5gas.h"
2398 if test x$stabs = xyes
2400 tm_file="${tm_file} dbx.h"
2403 tm_file=mips/iris5.h
2406 xm_file="mips/xm-iris5.h"
2407 xmake_file=mips/x-iris
2408 # mips-tfile doesn't work yet
2409 tmake_file=mips/t-mips-gas
2410 # See comment in mips/iris5.h file.
2412 # if test x$enable_threads = xyes; then
2413 # thread_file='irix'
2416 mips-sgi-irix4loser*) # Mostly like a MIPS.
2417 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
2418 if test x$stabs = xyes; then
2419 tm_file="${tm_file} dbx.h"
2422 xmake_file=mips/x-iris
2423 if test x$gas = xyes
2425 tmake_file=mips/t-mips-gas
2427 extra_passes="mips-tfile mips-tdump"
2429 if test x$gnu_ld != xyes
2433 # if test x$enable_threads = xyes; then
2434 # thread_file='irix'
2437 mips-sgi-irix4*) # Mostly like a MIPS.
2438 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
2439 if test x$stabs = xyes; then
2440 tm_file="${tm_file} dbx.h"
2443 xmake_file=mips/x-iris
2444 if test x$gas = xyes
2446 tmake_file=mips/t-mips-gas
2448 extra_passes="mips-tfile mips-tdump"
2450 if test x$gnu_ld != xyes
2454 # if test x$enable_threads = xyes; then
2455 # thread_file='irix'
2458 mips-sgi-*) # Mostly like a MIPS.
2459 tm_file="mips/iris3.h ${tm_file}"
2460 if test x$stabs = xyes; then
2461 tm_file="${tm_file} dbx.h"
2464 xmake_file=mips/x-iris3
2465 if test x$gas = xyes
2467 tmake_file=mips/t-mips-gas
2469 extra_passes="mips-tfile mips-tdump"
2471 if test x$gnu_ld != xyes
2476 mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
2477 tm_file="mips/osfrose.h ${tm_file}"
2478 xmake_file=mips/x-osfrose
2479 tmake_file=mips/t-osfrose
2480 extra_objs=halfpic.o
2483 mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2484 tm_file=mips/dec-osf1.h
2485 if test x$stabs = xyes; then
2486 tm_file="${tm_file} dbx.h"
2488 xmake_file=mips/x-dec-osf1
2489 if test x$gas = xyes
2491 tmake_file=mips/t-mips-gas
2493 tmake_file=mips/t-ultrix
2494 extra_passes="mips-tfile mips-tdump"
2496 if test x$gnu_ld != xyes
2501 mips-dec-bsd*) # Decstation running 4.4 BSD
2502 tm_file=mips/dec-bsd.h
2503 if test x$gas = xyes
2505 tmake_file=mips/t-mips-gas
2507 tmake_file=mips/t-ultrix
2508 extra_passes="mips-tfile mips-tdump"
2510 if test x$gnu_ld != xyes
2515 mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
2516 tm_file=mips/netbsd.h
2517 # On NetBSD, the headers are already okay, except for math.h.
2520 mips*-*-linux*) # Linux MIPS, either endian.
2522 xm_file="xm-siglist.h ${xm_file}"
2524 mipsel-*) tm_file="mips/elfl.h mips/linux.h" ;;
2525 *) tm_file="mips/elf.h mips/linux.h" ;;
2527 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2530 if test x$enable_threads = xyes; then
2534 mips*el-*-openbsd*) # mips little endian
2535 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2537 mips*-*-openbsd*) # mips big endian
2538 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2539 tm_file="mips/openbsd-be.h ${tm_file}"
2541 mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
2542 tm_file="mips/news4.h ${tm_file}"
2543 if test x$stabs = xyes; then
2544 tm_file="${tm_file} dbx.h"
2546 if test x$gas = xyes
2548 tmake_file=mips/t-mips-gas
2550 extra_passes="mips-tfile mips-tdump"
2552 if test x$gnu_ld != xyes
2556 xmake_file=mips/x-sony
2558 mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2559 # That is based on svr4.
2560 # t-svr4 is not right because this system doesn't use ELF.
2561 tm_file="mips/news5.h ${tm_file}"
2562 if test x$stabs = xyes; then
2563 tm_file="${tm_file} dbx.h"
2565 xm_file="xm-siglist.h ${xm_file}"
2567 if test x$gas = xyes
2569 tmake_file=mips/t-mips-gas
2571 extra_passes="mips-tfile mips-tdump"
2573 if test x$gnu_ld != xyes
2578 mips-tandem-sysv4*) # Tandem S2 running NonStop UX
2579 tm_file="mips/svr4-5.h mips/svr4-t.h"
2580 if test x$stabs = xyes; then
2581 tm_file="${tm_file} dbx.h"
2583 xm_file="xm-siglist.h ${xm_file}"
2585 xmake_file=mips/x-sysv
2586 if test x$gas = xyes
2588 tmake_file=mips/t-mips-gas
2589 extra_parts="crtbegin.o crtend.o"
2591 tmake_file=mips/t-mips
2592 extra_passes="mips-tfile mips-tdump"
2594 if test x$gnu_ld != xyes
2599 mips-*-ultrix* | mips-dec-mach3) # Decstation.
2600 tm_file="mips/ultrix.h ${tm_file}"
2601 if test x$stabs = xyes; then
2602 tm_file="${tm_file} dbx.h"
2604 xmake_file=mips/x-ultrix
2605 if test x$gas = xyes
2607 tmake_file=mips/t-mips-gas
2609 tmake_file=mips/t-ultrix
2610 extra_passes="mips-tfile mips-tdump"
2612 if test x$gnu_ld != xyes
2618 mips-*-riscos[56789]bsd*)
2620 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
2621 if test x$stabs = xyes; then
2622 tm_file="${tm_file} dbx.h"
2624 if test x$gas = xyes
2626 tmake_file=mips/t-bsd-gas
2628 tmake_file=mips/t-bsd
2629 extra_passes="mips-tfile mips-tdump"
2631 if test x$gnu_ld != xyes
2637 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2639 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
2640 if test x$stabs = xyes; then
2641 tm_file="${tm_file} dbx.h"
2643 if test x$gas = xyes
2645 tmake_file=mips/t-bsd-gas
2647 tmake_file=mips/t-bsd
2648 extra_passes="mips-tfile mips-tdump"
2650 if test x$gnu_ld != xyes
2656 mips-*-riscos[56789]sysv4*)
2658 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
2659 if test x$stabs = xyes; then
2660 tm_file="${tm_file} dbx.h"
2662 xm_file="xm-siglist.h ${xm_file}"
2663 xmake_file=mips/x-sysv
2664 if test x$gas = xyes
2666 tmake_file=mips/t-svr4-gas
2668 tmake_file=mips/t-svr4
2669 extra_passes="mips-tfile mips-tdump"
2671 if test x$gnu_ld != xyes
2677 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2679 tm_file="mips/svr4-4.h ${tm_file}"
2680 if test x$stabs = xyes; then
2681 tm_file="${tm_file} dbx.h"
2684 xmake_file=mips/x-sysv
2685 if test x$gas = xyes
2687 tmake_file=mips/t-svr4-gas
2689 tmake_file=mips/t-svr4
2690 extra_passes="mips-tfile mips-tdump"
2692 if test x$gnu_ld != xyes
2698 mips-*-riscos[56789]sysv*)
2700 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
2701 if test x$stabs = xyes; then
2702 tm_file="${tm_file} dbx.h"
2705 xmake_file=mips/x-sysv
2706 if test x$gas = xyes
2708 tmake_file=mips/t-svr3-gas
2710 tmake_file=mips/t-svr3
2711 extra_passes="mips-tfile mips-tdump"
2713 if test x$gnu_ld != xyes
2718 mips-*-sysv* | mips-*-riscos*sysv*)
2719 tm_file="mips/svr3-4.h ${tm_file}"
2720 if test x$stabs = xyes; then
2721 tm_file="${tm_file} dbx.h"
2724 xmake_file=mips/x-sysv
2725 if test x$gas = xyes
2727 tmake_file=mips/t-svr3-gas
2729 tmake_file=mips/t-svr3
2730 extra_passes="mips-tfile mips-tdump"
2732 if test x$gnu_ld != xyes
2738 mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2740 tm_file=mips/mips-5.h
2741 if test x$stabs = xyes; then
2742 tm_file="${tm_file} dbx.h"
2744 if test x$gas = xyes
2746 tmake_file=mips/t-mips-gas
2748 extra_passes="mips-tfile mips-tdump"
2750 if test x$gnu_ld != xyes
2758 tm_file=mips/ecoffl.h
2759 if test x$stabs = xyes; then
2760 tm_file="${tm_file} dbx.h"
2762 tmake_file=mips/t-ecoff
2765 tm_file="gofast.h mips/ecoff.h"
2766 if test x$stabs = xyes; then
2767 tm_file="${tm_file} dbx.h"
2769 tmake_file=mips/t-ecoff
2772 tm_file="mips/elfl.h"
2773 tmake_file=mips/t-elf
2776 tm_file="mips/elf.h"
2777 tmake_file=mips/t-elf
2780 tm_file="mips/elfl64.h"
2781 tmake_file=mips/t-elf
2783 mips64orionel-*-elf*)
2784 tm_file="mips/elforion.h mips/elfl64.h"
2785 tmake_file=mips/t-elf
2788 tm_file="mips/elf64.h"
2789 tmake_file=mips/t-elf
2792 tm_file="mips/elforion.h mips/elf64.h"
2793 tmake_file=mips/t-elf
2795 mips64orion-*-rtems*)
2796 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2797 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
2798 tmake_file="mips/t-elf t-rtems"
2801 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
2802 tmake_file=mips/t-r3900
2805 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
2806 tmake_file=mips/t-r3900
2808 mips-*-*) # Default MIPS RISC-OS 4.0.
2809 if test x$stabs = xyes; then
2810 tm_file="${tm_file} dbx.h"
2812 if test x$gas = xyes
2814 tmake_file=mips/t-mips-gas
2816 extra_passes="mips-tfile mips-tdump"
2818 if test x$gnu_ld != xyes
2825 tm_file="mn10200/mn10200.h"
2826 if test x$stabs = xyes
2828 tm_file="${tm_file} dbx.h"
2834 tm_file="mn10300/mn10300.h"
2835 if test x$stabs = xyes
2837 tm_file="${tm_file} dbx.h"
2842 tm_file=ns32k/encore.h
2846 tm_file=ns32k/sequent.h
2850 tm_file=ns32k/tek6100.h
2854 tm_file=ns32k/tek6200.h
2857 # This has not been updated to GCC 2.
2860 # xmake_file=ns32k/x-genix
2861 # tm_file=ns32k/genix.h
2865 tm_file=ns32k/merlin.h
2869 tm_file=ns32k/pc532-mach.h
2873 tm_file=ns32k/pc532-min.h
2874 xm_file="ns32k/xm-pc532-min.h ${xm-file}"
2879 tm_file=ns32k/netbsd.h
2880 xm_file="ns32k/xm-netbsd.h ${xm_file}"
2881 # On NetBSD, the headers are already okay, except for math.h.
2886 tm_file="${tm_file} pdp11/2bsd.h"
2893 # This has not been updated to GCC 2.
2896 # xmake_file=pyr/x-pyr
2903 xmake_file=romp/x-mach
2910 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
2914 tm_file=rs6000/beos.h
2915 xm_file=rs6000/xm-beos.h
2916 tmake_file=rs6000/t-beos
2917 xmake_file=rs6000/x-beos
2919 powerpc-*-sysv* | powerpc-*-elf*)
2920 tm_file=rs6000/sysv4.h
2921 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2922 xm_defines="USG POSIX"
2923 extra_headers=ppc-asm.h
2924 if test x$gas = xyes
2926 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2928 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2930 xmake_file=rs6000/x-sysv4
2933 tm_file=rs6000/eabiaix.h
2934 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2935 extra_headers=ppc-asm.h
2938 tm_file=rs6000/eabisim.h
2939 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2940 extra_headers=ppc-asm.h
2943 tm_file=rs6000/eabi.h
2944 if test x$gas = xyes
2946 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2948 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2950 extra_headers=ppc-asm.h
2953 tm_file=rs6000/rtems.h
2954 if test x$gas = xyes
2956 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
2958 tmake_file="rs6000/t-ppc t-rtems rs6000/t-ppccomm"
2960 extra_headers=ppc-asm.h
2962 powerpc-*-linux-gnulibc1)
2963 tm_file=rs6000/linux.h
2964 xm_file=rs6000/xm-sysv4.h
2965 out_file=rs6000/rs6000.c
2966 if test x$gas = xyes
2968 tmake_file="rs6000/t-ppcos t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2970 tmake_file="rs6000/t-ppc t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2973 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2974 extra_headers=ppc-asm.h
2975 if test x$enable_threads = xyes; then
2979 powerpc-*-linux-gnu*)
2980 tm_file=rs6000/linux.h
2981 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2982 xm_defines="USG ${xm_defines}"
2983 out_file=rs6000/rs6000.c
2984 if test x$gas = xyes
2986 tmake_file="rs6000/t-ppcos t-linux rs6000/t-ppccomm"
2988 tmake_file="rs6000/t-ppc t-linux rs6000/t-ppccomm"
2991 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2992 extra_headers=ppc-asm.h
2993 if test x$enable_threads = xyes; then
2997 powerpc-wrs-vxworks*)
2999 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
3000 xm_defines="USG POSIX"
3001 tm_file=rs6000/vxppc.h
3002 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3003 extra_headers=ppc-asm.h
3004 thread_file='vxworks'
3006 powerpcle-*-sysv* | powerpcle-*-elf*)
3007 tm_file=rs6000/sysv4le.h
3008 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
3009 xm_defines="USG POSIX"
3010 if test x$gas = xyes
3012 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
3014 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3016 xmake_file=rs6000/x-sysv4
3017 extra_headers=ppc-asm.h
3019 powerpcle-*-eabisim*)
3020 tm_file=rs6000/eabilesim.h
3021 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3022 extra_headers=ppc-asm.h
3025 tm_file=rs6000/eabile.h
3026 if test x$gas = xyes
3028 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
3030 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3032 extra_headers=ppc-asm.h
3034 powerpcle-*-winnt* )
3035 tm_file=rs6000/win-nt.h
3036 tmake_file=rs6000/t-winnt
3038 if test x$enable_threads = xyes; then
3041 extra_headers=ppc-asm.h
3043 powerpcle-*-pe | powerpcle-*-cygwin*)
3044 tm_file=rs6000/cygwin.h
3045 xm_file="rs6000/xm-cygwin.h ${xm_file}"
3046 tmake_file=rs6000/t-winnt
3047 xmake_file=rs6000/x-cygwin
3049 if test x$enable_threads = xyes; then
3053 extra_headers=ppc-asm.h
3055 powerpcle-*-solaris2*)
3056 tm_file=rs6000/sol2.h
3057 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
3058 xm_defines="USG POSIX"
3059 if test x$gas = xyes
3061 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
3063 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
3065 xmake_file=rs6000/x-sysv4
3066 extra_headers=ppc-asm.h
3069 rs6000-ibm-aix3.[01]*)
3071 tm_file=rs6000/aix31.h
3072 xmake_file=rs6000/x-aix31
3077 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
3079 tm_file=rs6000/aix3newas.h
3080 if test x$host != x$target
3082 tmake_file=rs6000/t-xnewas
3084 tmake_file=rs6000/t-newas
3090 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
3092 tm_file=rs6000/aix41.h
3093 if test x$host != x$target
3095 tmake_file=rs6000/t-xnewas
3097 tmake_file=rs6000/t-newas
3099 if test "$gnu_ld" = yes
3101 xmake_file=rs6000/x-aix41-gld
3103 xmake_file=rs6000/x-aix41
3109 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
3111 tm_file=rs6000/aix43.h
3112 if test x$host != x$target
3114 tmake_file=rs6000/t-xaix43
3116 tmake_file=rs6000/t-aix43
3118 xmake_file=rs6000/x-aix43
3123 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
3125 tm_file=rs6000/aix43.h
3126 if test x$host != x$target
3128 tmake_file=rs6000/t-xaix43
3130 tmake_file=rs6000/t-aix43
3132 xmake_file=rs6000/x-aix43
3145 tm_file=rs6000/mach.h
3146 xm_file="${xm_file} rs6000/xm-mach.h"
3147 xmake_file=rs6000/x-mach
3151 tm_file=rs6000/lynx.h
3152 xm_file=rs6000/xm-lynx.h
3153 tmake_file=rs6000/t-rs6000
3154 xmake_file=rs6000/x-lynx
3162 tmake_file="sh/t-sh t-rtems"
3163 tm_file=sh/rtemself.h
3167 tmake_file="sh/t-sh t-rtems"
3176 xm_file="xm-alloca.h ${xm_file}"
3179 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
3180 tm_file=sparc/vxsparc.h
3181 tmake_file=sparc/t-vxsparc
3183 thread_file='vxworks'
3186 tmake_file=sparc/t-sparcbare
3187 tm_file="sparc/aout.h libgloss.h"
3190 tm_file=sparc/netbsd.h
3195 # we need collect2 until our bug is fixed...
3203 tmake_file=sparc/t-elf
3204 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3208 sparc-*-linux-gnuaout*) # Sparc's running GNU/Linux, a.out
3209 xm_file="${xm_file} sparc/xm-linux.h"
3210 tm_file=sparc/linux-aout.h
3214 sparc-*-linux-gnulibc1*) # Sparc's running GNU/Linux, libc5
3215 xm_file="${xm_file} sparc/xm-linux.h"
3217 tm_file=sparc/linux.h
3218 tmake_file="t-linux t-linux-gnulibc1"
3219 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3223 sparc-*-linux-gnu*) # Sparc's running GNU/Linux, libc6
3224 xm_file="${xm_file} sparc/xm-linux.h"
3226 tm_file=sparc/linux.h
3227 tmake_file="t-linux"
3228 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3230 if test x$enable_threads = xyes; then
3236 if test x$gas = xyes
3238 tm_file=sparc/lynx.h
3240 tm_file=sparc/lynx-ng.h
3242 xm_file=sparc/xm-lynx.h
3243 tmake_file=sparc/t-sunos41
3246 sparc-*-rtems*|sparc-*-rtemself*)
3247 tm_file="sparc/rtemself.h"
3248 tmake_file="sparc/t-elf t-rtems"
3249 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3254 tmake_file="sparc/t-sparcbare t-rtems"
3255 tm_file=sparc/rtems.h
3257 sparcv9-*-solaris2*)
3258 tm_file=sparc/sol2-sld-64.h
3259 xm_file="sparc/xm-sysv4-64.h sparc/xm-sol2.h"
3260 xm_defines="USG POSIX"
3261 tmake_file="sparc/t-sol2 sparc/t-sol2-64"
3262 xmake_file=sparc/x-sysv4
3263 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
3265 if test x${enable_threads} = x ; then
3266 enable_threads=$have_pthread_h
3267 if test x${enable_threads} = x ; then
3268 enable_threads=$have_thread_h
3271 if test x${enable_threads} = xyes ; then
3272 if test x${have_pthread_h} = xyes ; then
3275 thread_file='solaris'
3279 sparc-hal-solaris2*)
3280 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3281 xm_defines="USG POSIX"
3282 tm_file="sparc/sol2.h sparc/hal.h"
3283 tmake_file="sparc/t-halos sparc/t-sol2"
3284 xmake_file=sparc/x-sysv4
3285 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
3294 thread_file='solaris'
3297 if test x$gnu_ld = xyes
3299 tm_file=sparc/sol2.h
3301 tm_file=sparc/sol2-sld.h
3303 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3304 xm_defines="USG POSIX"
3305 tmake_file=sparc/t-sol2
3306 xmake_file=sparc/x-sysv4
3307 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
3318 if test x${enable_threads} = x; then
3319 enable_threads=$have_pthread_h
3320 if test x${enable_threads} = x; then
3321 enable_threads=$have_thread_h
3324 if test x${enable_threads} = xyes; then
3325 if test x${have_pthread_h} = xyes; then
3328 thread_file='solaris'
3333 tm_file=sparc/sunos4.h
3334 tmake_file=sparc/t-sunos40
3338 tm_file=sparc/sunos4.h
3339 tmake_file=sparc/t-sunos41
3341 if test x$gas = xyes; then
3342 tm_file="${tm_file} sparc/sun4gas.h"
3346 tm_file=sparc/sun4o3.h
3350 tm_file=sparc/sysv4.h
3351 xm_file="xm-siglist.h sparc/xm-sysv4.h"
3352 xm_defines="USG POSIX"
3354 xmake_file=sparc/x-sysv4
3355 extra_parts="crtbegin.o crtend.o"
3358 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3359 xm_defines="USG POSIX"
3360 tm_file=sparc/vxsim.h
3361 tmake_file=sparc/t-vxsparc
3362 xmake_file=sparc/x-sysv4
3365 tm_file="sparc/splet.h libgloss.h"
3366 tmake_file=sparc/t-splet
3369 tm_file="sparc/litecoff.h libgloss.h"
3370 tmake_file=sparc/t-sparclite
3373 tm_file="sparc/lite.h aoutos.h libgloss.h"
3374 tmake_file=sparc/t-sparclite
3377 tm_file="sparc/liteelf.h"
3378 tmake_file=sparc/t-sparclite
3379 extra_parts="crtbegin.o crtend.o"
3382 tm_file="sparc/sp86x-aout.h aoutos.h libgloss.h"
3383 tmake_file=sparc/t-sp86x
3386 tm_file="sparc/sp86x-elf.h"
3387 tmake_file=sparc/t-sp86x
3388 extra_parts="crtbegin.o crtend.o"
3391 tmake_file=sparc/t-sp64
3392 tm_file=sparc/sp64-aout.h
3395 tmake_file=sparc/t-sp64
3396 tm_file=sparc/sp64-elf.h
3397 extra_parts="crtbegin.o crtend.o"
3399 sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
3400 tmake_file="t-linux sparc/t-linux64"
3401 xm_file="sparc/xm-sp64.h sparc/xm-linux.h"
3402 tm_file=sparc/linux64.h
3404 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
3408 # This hasn't been upgraded to GCC 2.
3409 # tahoe-harris-*) # Harris tahoe, using COFF.
3410 # tm_file=tahoe/harris.h
3412 # tahoe-*-bsd*) # tahoe running BSD
3414 thumb-*-coff* | thumbel-*-coff*)
3416 out_file=arm/thumb.c
3417 xm_file=arm/xm-thumb.h
3418 md_file=arm/thumb.md
3419 tmake_file=arm/t-thumb
3421 thumb-*-elf* | thumbel-*-elf*)
3423 out_file=arm/thumb.c
3424 xm_file=arm/xm-thumb.h
3425 md_file=arm/thumb.md
3426 tmake_file=arm/t-thumb-elf
3429 tm_file=arm/linux-telf.h
3430 out_file=arm/thumb.c
3431 xm_file=arm/xm-thumb.h
3432 md_file=arm/thumb.md
3433 tmake_file=arm/t-thumb-linux
3436 tm_file=arm/uclinux-telf.h
3437 out_file=arm/thumb.c
3438 md_file=arm/thumb.md
3439 tmake_file=arm/t-thumb-linux
3440 xm_file=arm/xm-thumb.h
3444 out_file=arm/thumb.c
3445 xm_file=arm/xm-thumb.h
3446 md_file=arm/thumb.md
3447 tmake_file=arm/t-thumb
3448 thread_file='vxworks'
3452 out_file=arm/thumb.c
3453 xm_file=arm/xm-thumb.h
3454 md_file=arm/thumb.md
3455 tmake_file=arm/t-pe-thumb
3458 # This hasn't been upgraded to GCC 2.
3464 target_cpu_default="TARGET_CPU_generic"
3466 tm_file="v850/v850.h"
3467 xm_file="v850/xm-v850.h"
3468 tmake_file=v850/t-v850
3469 if test x$stabs = xyes
3471 tm_file="${tm_file} dbx.h"
3475 vax-*-bsd*) # vaxen running BSD
3479 vax-*-sysv*) # vaxen running system V
3480 tm_file="${tm_file} vax/vaxv.h"
3485 tm_file="${tm_file} netbsd.h vax/netbsd.h"
3491 tmake_file="${tmake_file} vax/t-openbsd"
3493 vax-*-ultrix*) # vaxen running ultrix
3494 tm_file="${tm_file} vax/ultrix.h"
3498 vax-*-vms*) # vaxen running VMS
3499 xm_file=vax/xm-vms.h
3503 vax-*-*) # vax default entry
3507 xm_file="${xm_file} xm-svr3"
3511 echo "Configuration $machine not supported" 1>&2
3518 ;; # Existing GNU/Linux systems do not use the GNU setup.
3520 # On the GNU system, the setup is just about the same on
3521 # each different CPU. The specific machines that GNU
3522 # supports are matched above and just set $cpu_type.
3523 xm_file="xm-gnu.h ${xm_file}"
3524 tm_file=${cpu_type}/gnu.h
3525 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
3526 # GNU always uses ELF.
3528 # GNU tools are the only tools.
3531 xmake_file=x-linux # These details are the same as Linux.
3532 tmake_file=t-gnu # These are not.
3535 xmake_try_sysv=x-sysv
3536 install_headers_dir=install-headers-cpio
3539 install_headers_dir=install-headers-cpio
3543 # Distinguish i[34567]86
3544 # Also, do not run mips-tfile on MIPS if using gas.
3545 # Process --with-cpu= for PowerPC/rs6000
3546 target_cpu_default2=
3549 target_cpu_default2=1
3552 case $target_alias in
3554 target_cpu_default2=4
3557 target_cpu_default2=2
3561 i686-*-* | i786-*-*)
3562 target_cpu_default2=3
3567 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
3570 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
3573 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
3576 target_cpu_default2="MASK_CPU_EV5"
3580 if test x$gas = xyes
3582 if test "$target_cpu_default2" = ""
3584 target_cpu_default2="MASK_GAS"
3586 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
3591 case "x$with_cpu" in
3594 target_cpu_default2="TARGET_CPU_generic"
3597 # Distinguish cores, and major variants
3598 # arm7m doesn't exist, but D & I don't affect code
3600 xarm[23678] | xarm250 | xarm[67][01]0 \
3601 | xarm7m | xarm7dm | xarm7dmi | xarm7tdmi \
3602 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
3603 | xstrongarm | xstrongarm110 | xstrongarm1100)
3605 target_cpu_default2="TARGET_CPU_$with_cpu"
3609 echo "--with-cpu must be passed a value" 1>&2
3614 if test x$pass2done = xyes
3616 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3623 mips*-*-ecoff* | mips*-*-elf*)
3624 if test x$gas = xyes
3626 if test x$gnu_ld = xyes
3628 target_cpu_default2=20
3630 target_cpu_default2=16
3635 if test x$gas = xyes
3637 target_cpu_default2=16
3640 powerpc*-*-* | rs6000-*-*)
3641 case "x$with_cpu" in
3645 xcommon | xpower | xpower2 | xpowerpc | xrios \
3646 | xrios1 | xrios2 | xrsc | xrsc1 \
3647 | x601 | x602 | x603 | x603e | x604 | x604e | x620 \
3648 | xec603e | x740 | x750 | x401 \
3649 | x403 | x505 | x801 | x821 | x823 | x860)
3650 target_cpu_default2="\"$with_cpu\""
3654 echo "--with-cpu must be passed a value" 1>&2
3659 if test x$pass2done = xyes
3661 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3668 case ".$with_cpu" in
3670 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3672 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
3673 target_cpu_default2="TARGET_CPU_$with_cpu"
3676 if test x$pass2done = xyes
3678 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3686 if test "$target_cpu_default2" != ""
3688 if test "$target_cpu_default" != ""
3690 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3692 target_cpu_default=$target_cpu_default2
3696 # No need for collect2 if we have the GNU linker.
3697 # Actually, there is now; GNU ld doesn't handle the EH info or
3698 # collecting for shared libraries.
3705 # Save data on machine being used to compile GCC in build_xm_file.
3706 # Save data on host machine in vars host_xm_file and host_xmake_file.
3707 if test x$pass1done = x
3709 if test x"$xm_file" = x
3710 then build_xm_file=$cpu_type/xm-$cpu_type.h
3711 else build_xm_file=$xm_file
3713 build_xm_defines=$xm_defines
3714 build_install_headers_dir=$install_headers_dir
3715 build_exeext=$exeext
3718 if test x$pass2done = x
3720 if test x"$xm_file" = x
3721 then host_xm_file=$cpu_type/xm-$cpu_type.h
3722 else host_xm_file=$xm_file
3724 host_xm_defines=$xm_defines
3725 if test x"$xmake_file" = x
3726 then xmake_file=$cpu_type/x-$cpu_type
3728 host_xmake_file="$xmake_file"
3729 host_truncate_target=$truncate_target
3730 host_extra_gcc_objs=$extra_gcc_objs
3731 host_extra_objs=$extra_host_objs
3738 extra_objs="${host_extra_objs} ${extra_objs}"
3740 # Default the target-machine variables that were not explicitly set.
3741 if test x"$tm_file" = x
3742 then tm_file=$cpu_type/$cpu_type.h; fi
3744 if test x$extra_headers = x
3745 then extra_headers=; fi
3747 if test x"$xm_file" = x
3748 then xm_file=$cpu_type/xm-$cpu_type.h; fi
3750 if test x$md_file = x
3751 then md_file=$cpu_type/$cpu_type.md; fi
3753 if test x$out_file = x
3754 then out_file=$cpu_type/$cpu_type.c; fi
3756 if test x"$tmake_file" = x
3757 then tmake_file=$cpu_type/t-$cpu_type
3760 if test x"$dwarf2" = xyes
3761 then tm_file="tm-dwarf2.h $tm_file"
3764 if test x$float_format = x
3765 then float_format=i64
3768 if test $float_format = none
3769 then float_h_file=Makefile.in
3770 else float_h_file=float-$float_format.h
3773 # Handle cpp installation.
3774 if test x$enable_cpp != xno
3776 tmake_file="$tmake_file t-install-cpp"
3779 # Say what files are being used for the output code and MD file.
3780 echo "Using \`$srcdir/config/$out_file' to output insns."
3781 echo "Using \`$srcdir/config/$md_file' as machine description file."
3784 for f in $tm_file; do
3787 if test $count = ax; then
3788 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
3790 echo "Using the following target machine macro files:"
3791 for f in $tm_file; do
3792 echo " $srcdir/config/$f"
3797 for f in $host_xm_file; do
3800 if test $count = ax; then
3801 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
3803 echo "Using the following host machine macro files:"
3804 for f in $host_xm_file; do
3805 echo " $srcdir/config/$f"
3809 if test "$host_xm_file" != "$build_xm_file"; then
3811 for f in $build_xm_file; do
3814 if test $count = ax; then
3815 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
3817 echo "Using the following build machine macro files:"
3818 for f in $build_xm_file; do
3819 echo " $srcdir/config/$f"
3824 if test x$thread_file = x; then
3825 if test x$target_thread_file != x; then
3826 thread_file=$target_thread_file
3828 thread_file='single'
3832 # Set up the header files.
3833 # $links is the list of header files to create.
3834 # $vars is the list of shell variables with file names to include.
3835 # auto-host.h is the file containing items generated by autoconf and is
3836 # the first file included by config.h.
3838 host_xm_file="auto-host.h gansidecl.h ${host_xm_file} hwint.h"
3840 # If host=build, it is correct to have hconfig include auto-host.h
3841 # as well. If host!=build, we are in error and need to do more
3842 # work to find out the build config parameters.
3843 if test x$host = x$build
3845 build_xm_file="auto-host.h gansidecl.h ${build_xm_file} hwint.h"
3847 # We create a subdir, then run autoconf in the subdir.
3848 # To prevent recursion we set host and build for the new
3849 # invocation of configure to the build for this invocation
3856 /*) realsrcdir=${srcdir};;
3857 *) realsrcdir=../${srcdir};;
3859 CC=${CC_FOR_BUILD} ${realsrcdir}/configure \
3860 --target=$target --host=$build --build=$build
3862 # We just finished tests for the build machine, so rename
3863 # the file auto-build.h in the gcc directory.
3864 mv auto-host.h ../auto-build.h
3867 build_xm_file="auto-build.h gansidecl.h ${build_xm_file} hwint.h"
3870 xm_file="gansidecl.h ${xm_file}"
3871 tm_file="gansidecl.h ${tm_file}"
3873 vars="host_xm_file tm_file tm_p_file xm_file build_xm_file"
3874 links="config.h tm.h tm_p.h tconfig.h hconfig.h"
3875 defines="host_xm_defines null_defines null_defines xm_defines build_xm_defines"
3878 if test -f config.status; then mv -f config.status config.bak; fi
3881 while test -n "$vars"
3883 set $vars; var=$1; shift; vars=$*
3884 set $links; link=$1; shift; links=$*
3885 set $defines; define=$1; shift; defines=$*
3888 # Make sure the file is created, even if it is empty.
3891 # Define TARGET_CPU_DEFAULT if the system wants one.
3892 # This substitutes for lots of *.h files.
3893 if test "$target_cpu_default" != "" -a $link = tm.h
3895 echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
3898 for file in `eval echo '$'$var`; do
3903 echo '#ifdef IN_GCC' >>$link
3906 echo "#include \"$file\"" >>$link
3911 echo '#endif' >>$link
3916 for def in `eval echo '$'$define`; do
3917 echo "#ifndef $def" >>$link
3918 echo "#define $def" >>$link
3919 echo "#endif" >>$link
3923 # Truncate the target if necessary
3924 if test x$host_truncate_target != x; then
3925 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
3928 # Get the version trigger filename from the toplevel
3929 if test "${with_gcc_version_trigger+set}" = set; then
3930 gcc_version_trigger=$with_gcc_version_trigger
3932 gcc_version_trigger=${srcdir}/version.c
3935 gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${gcc_version_trigger}`
3938 # Internationalization
3940 VERSION="$gcc_version"
3941 AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
3942 AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
3948 # NLS support is still experimental, so disable it by default for now.
3950 [ --enable-nls use Native Language Support (disabled by default)],
3954 XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
3956 # Windows32 Registry support for specifying GCC installation paths.
3957 AC_ARG_ENABLE(win32-registry,
3958 [ --disable-win32-registry
3959 Disable lookup of installation paths in the
3960 Registry on Windows hosts.
3961 --enable-win32-registry Enable registry lookup (default).
3962 --enable-win32-registry=KEY
3963 Use KEY instead of GCC version as the last portion
3964 of the registry key.],,)
3966 AC_MSG_CHECKING(whether windows registry support is requested)
3967 if test x$enable_win32_registry != xno; then
3968 AC_DEFINE(ENABLE_WIN32_REGISTRY)
3974 # Check if user specified a different registry key.
3975 case x${enable_win32_registry} in
3978 gcc_cv_win32_registry_key="$VERSION"
3981 # no registry lookup.
3982 gcc_cv_win32_registry_key=''
3985 # user-specified key.
3986 gcc_cv_win32_registry_key="$enable_win32_registry"
3990 if test x$enable_win32_registry != xno; then
3991 AC_MSG_CHECKING(registry key on windows hosts)
3992 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key")
3993 AC_MSG_RESULT($gcc_cv_win32_registry_key)
3996 # Get an absolute path to the GCC top-level source directory
4002 # Conditionalize the makefile for this host machine.
4003 # Make-host contains the concatenation of all host makefile fragments
4004 # [there can be more than one]. This file is built by configure.frag.
4005 host_overrides=Make-host
4006 dep_host_xmake_file=
4007 for f in .. ${host_xmake_file}
4009 if test -f ${srcdir}/config/$f
4011 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
4015 # Conditionalize the makefile for this target machine.
4016 # Make-target contains the concatenation of all host makefile fragments
4017 # [there can be more than one]. This file is built by configure.frag.
4018 target_overrides=Make-target
4020 for f in .. ${tmake_file}
4022 if test -f ${srcdir}/config/$f
4024 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
4028 # If the host doesn't support symlinks, modify CC in
4029 # FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
4030 # Otherwise, we can use "CC=$(CC)".
4032 if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
4034 cc_set_by_configure="\$(CC)"
4035 quoted_cc_set_by_configure="\$(CC)"
4036 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
4039 if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
4041 symbolic_link="cp -p"
4045 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
4046 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
4047 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
4051 out_object_file=`basename $out_file .c`.o
4054 for f in $tm_file; do
4057 tm_file_list="${tm_file_list} $f" ;;
4058 *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
4063 for f in $host_xm_file; do
4065 auto-host.h | gansidecl.h | hwint.h )
4066 host_xm_file_list="${host_xm_file_list} $f" ;;
4067 *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
4072 for f in $build_xm_file; do
4074 auto-build.h | auto-host.h | gansidecl.h | hwint.h )
4075 build_xm_file_list="${build_xm_file_list} $f" ;;
4076 *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
4080 # Define macro CROSS_COMPILE in compilation
4081 # if this is a cross-compiler.
4082 # Also use all.cross instead of all.internal
4083 # and add cross-make to Makefile.
4084 cross_overrides="/dev/null"
4085 if test x$host != x$target
4087 cross_defines="CROSS=-DCROSS_COMPILE"
4088 cross_overrides="${topdir}/cross-make"
4091 # When building gcc with a cross-compiler, we need to fix a few things.
4092 # This must come after cross-make as we want all.build to override
4094 build_overrides="/dev/null"
4095 if test x$build != x$host
4097 build_overrides="${topdir}/build-make"
4100 # Expand extra_headers to include complete path.
4101 # This substitutes for lots of t-* files.
4103 if test "x$extra_headers" = x
4106 # Prepend ${srcdir}/ginclude/ to every entry in extra_headers.
4107 for file in $extra_headers;
4109 extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/${file}"
4113 if test x$use_collect2 = xno; then
4117 # Add a definition of USE_COLLECT2 if system wants one.
4118 # Also tell toplev.c what to do.
4119 # This substitutes for lots of t-* files.
4120 if test x$use_collect2 = x
4125 will_use_collect2="collect2"
4126 maybe_use_collect2="-DUSE_COLLECT2"
4130 # Set MD_DEPS if the real md file is in md.pre-cpp.
4131 # Set MD_CPP to the cpp to pass the md file through. Md files use ';'
4132 # for line oriented comments, so we must always use a GNU cpp. If
4133 # building gcc with a cross compiler, use the cross compiler just
4134 # built. Otherwise, we can use the cpp just built.
4136 if test "x$md_cppflags" = x
4138 md_file_sub=$srcdir/config/$md_file
4143 # If we have gas in the build tree, make a link to it.
4144 if test -f ../gas/Makefile; then
4145 rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
4148 # If we have nm in the build tree, make a link to it.
4149 if test -f ../binutils/Makefile; then
4150 rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
4153 # If we have ld in the build tree, make a link to it.
4154 if test -f ../ld/Makefile; then
4155 # if test x$use_collect2 = x; then
4156 # rm -f ld; $symbolic_link ../ld/ld-new$host_exeext ld$host_exeext 2>/dev/null
4158 rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
4162 # Figure out what assembler alignment features are present.
4163 AC_MSG_CHECKING(assembler alignment features)
4165 gcc_cv_as_alignment_features=
4166 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
4167 if test -x "$DEFAULT_ASSEMBLER"; then
4168 gcc_cv_as="$DEFAULT_ASSEMBLER"
4169 elif test -x "$AS"; then
4171 elif test -x as$host_exeext; then
4172 # Build using assembler in the current directory.
4173 gcc_cv_as=./as$host_exeext
4174 elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
4175 # Single tree build which includes gas.
4176 for f in $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
4179 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
4181 if test x$gcc_cv_gas_version != x; then
4186 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
4187 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
4189 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
4190 # Gas version 2.6 and later support for .balign and .p2align.
4191 # bytes to skip when using .p2align.
4192 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
4193 gcc_cv_as_alignment_features=".balign and .p2align"
4194 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4196 # Gas version 2.8 and later support specifying the maximum
4197 # bytes to skip when using .p2align.
4198 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
4199 gcc_cv_as_alignment_features=".p2align including maximum skip"
4200 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4203 elif test x$host = x$target; then
4205 # Search the same directories that the installed compiler will
4206 # search. Else we may find the wrong assembler and lose. If we
4207 # do not find a suitable assembler binary, then try the user's
4210 # Also note we have to check MD_EXEC_PREFIX before checking the
4211 # user's path. Unfortunately, there is no good way to get at the
4212 # value of MD_EXEC_PREFIX here. So we do a brute force search
4213 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
4214 # to be fixed as part of the make/configure rewrite too.
4216 if test "x$exec_prefix" = xNONE; then
4217 if test "x$prefix" = xNONE; then
4218 test_prefix=/usr/local
4223 test_prefix=$exec_prefix
4226 # If the loop below does not find an assembler, then use whatever
4227 # one we can find in the users's path.
4231 test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
4232 $test_prefix/lib/gcc-lib/$target \
4233 /usr/lib/gcc/$target/$gcc_version \
4234 /usr/lib/gcc/$target \
4235 $test_prefix/$target/bin/$target/$gcc_version \
4236 $test_prefix/$target/bin \
4241 /bsd43/usr/lib/cmplrs/cc \
4242 /usr/cross64/usr/bin \
4243 /usr/lib/cmplrs/cc \
4244 /sysv/usr/lib/cmplrs/cc \
4245 /svr4/usr/lib/cmplrs/cc \
4248 for dir in $test_dirs; do
4249 if test -f $dir/as$host_exeext; then
4250 gcc_cv_as=$dir/as$host_exeext
4255 if test x$gcc_cv_as != x; then
4256 # Check if we have .balign and .p2align
4257 echo ".balign 4" > conftest.s
4258 echo ".p2align 2" >> conftest.s
4259 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4260 gcc_cv_as_alignment_features=".balign and .p2align"
4261 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4263 rm -f conftest.s conftest.o
4264 # Check if specifying the maximum bytes to skip when
4265 # using .p2align is supported.
4266 echo ".p2align 4,,7" > conftest.s
4267 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4268 gcc_cv_as_alignment_features=".p2align including maximum skip"
4269 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4271 rm -f conftest.s conftest.o
4273 AC_MSG_RESULT($gcc_cv_as_alignment_features)
4275 AC_MSG_CHECKING(assembler subsection support)
4276 gcc_cv_as_subsections=
4277 if test x$gcc_cv_as != x; then
4278 # Check if we have .subsection
4279 echo ".subsection 1" > conftest.s
4280 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4281 gcc_cv_as_subsections=".subsection"
4282 if test -x nm$host_exeext; then
4283 gcc_cv_nm=./nm$host_exeext
4284 elif test x$host = x$target; then
4286 gcc_cv_nm=nm$host_exeext
4288 if test x$gcc_cv_nm != x; then
4289 cat > conftest.s <<EOF
4290 conftest_label1: .word 0
4292 conftest_label2: .word 0
4295 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4296 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
4297 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
4298 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
4301 gcc_cv_as_subsections="working .subsection -1"
4302 AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING)
4307 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
4309 AC_MSG_RESULT($gcc_cv_as_subsections)
4313 AC_MSG_CHECKING(assembler .register pseudo-op support)
4314 gcc_cv_as_register_pseudo_op=
4315 if test x$gcc_cv_as != x; then
4316 # Check if we have .register
4317 echo ".register %g2, #scratch" > conftest.s
4318 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4319 gcc_cv_as_register_pseudo_op=yes
4320 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP)
4322 rm -f conftest.s conftest.o
4324 AC_MSG_RESULT($gcc_cv_as_register_pseudo_op)
4326 AC_MSG_CHECKING([assembler offsetable %lo() support])
4327 gcc_cv_as_offsetable_lo10=
4328 if test x$gcc_cv_as != x; then
4329 # Check if assembler has offsetable %lo()
4330 echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
4331 echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
4332 gcc_cv_as_flags64="-xarch=v9"
4333 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4336 gcc_cv_as_flags64="-64"
4337 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4340 gcc_cv_as_flags64=""
4343 if test -n "$gcc_cv_as_flags64" ; then
4344 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest1.o conftest1.s > /dev/null 2>&1; then
4345 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
4348 gcc_cv_as_offsetable_lo10=yes
4349 AC_DEFINE(HAVE_AS_OFFSETABLE_LO10)
4353 rm -f conftest.s conftest.o conftest1.s conftest1.o
4355 AC_MSG_RESULT($gcc_cv_as_offsetable_lo10)
4361 AC_MSG_CHECKING(assembler instructions)
4362 gcc_cv_as_instructions=
4363 if test x$gcc_cv_as != x; then
4364 set "filds fists" "filds mem; fists mem"
4367 echo "$2" > conftest.s
4368 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4369 gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
4370 AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$1" | tr '[a-z ]' '[A-Z_]'`)
4374 rm -f conftest.s conftest.o
4376 AC_MSG_RESULT($gcc_cv_as_instructions)
4380 # Figure out what language subdirectories are present.
4381 # Look if the user specified --enable-languages="..."; if not, use
4382 # the environment variable $LANGUAGES if defined. $LANGUAGES might
4384 if test x"${enable_languages+set}" != xset; then
4385 if test x"${LANGUAGES+set}" = xset; then
4386 enable_languages="`echo ${LANGUAGES} | tr ' ' ','`"
4388 enable_languages=all
4392 for lang in ${srcdir}/*/config-lang.in ..
4396 # The odd quoting in the next line works around
4397 # an apparent bug in bash 1.12 on linux.
4399 ${srcdir}/[*]/config-lang.in) ;;
4401 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
4402 if test "x$lang_alias" = x
4404 echo "$lang doesn't set \$language." 1>&2
4407 if test x"${enable_languages}" = xall; then
4410 case "${enable_languages}" in
4411 ${lang_alias} | "${lang_alias},"* | *",${lang_alias},"* | *",${lang_alias}" )
4419 if test x"${add_this_lang}" = xyes; then
4421 ${srcdir}/ada/config-lang.in)
4422 if test x$gnat = xyes ; then
4423 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4427 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4436 # Make gthr-default.h if we have a thread file.
4438 if test $thread_file != single; then
4439 rm -f gthr-default.h
4440 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
4441 gthread_flags=-DHAVE_GTHR_DEFAULT
4443 AC_SUBST(gthread_flags)
4445 # Find out what GC implementation we want, or may, use.
4447 [ --with-gc={simple,page} Choose the garbage collection mechanism to use
4448 with the compiler.],
4454 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
4457 [if test $ac_cv_func_mmap_fixed_mapped = yes; then
4459 elif test $ac_cv_func_valloc = yes; then
4465 echo "Using $GGC for garbage collection."
4467 # Make empty files to contain the specs and options for each language.
4468 # Then add #include lines to for a compiler that has specs and/or options.
4473 rm -f specs.h options.h gencheck.h
4474 touch specs.h options.h gencheck.h
4475 for subdir in . $subdirs
4477 if test -f $srcdir/$subdir/lang-specs.h; then
4478 echo "#include \"$subdir/lang-specs.h\"" >>specs.h
4479 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
4481 if test -f $srcdir/$subdir/lang-options.h; then
4482 echo "#include \"$subdir/lang-options.h\"" >>options.h
4483 lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
4485 if test -f $srcdir/$subdir/$subdir-tree.def; then
4486 echo "#include \"$subdir/$subdir-tree.def\"" >>gencheck.h
4487 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
4491 # These (without "all_") are set in each config-lang.in.
4492 # `language' must be a single word so is spelled singularly.
4498 all_outputs='Makefile intl/Makefile po/Makefile.in fixinc/Makefile'
4499 # List of language makefile fragments.
4504 # Add the language fragments.
4505 # Languages are added via two mechanisms. Some information must be
4506 # recorded in makefile variables, these are defined in config-lang.in.
4507 # We accumulate them and plug them into the main Makefile.
4508 # The other mechanism is a set of hooks for each of the main targets
4509 # like `clean', `install', etc.
4511 language_fragments="Make-lang"
4512 language_hooks="Make-hooks"
4515 for s in .. $subdirs
4527 . ${srcdir}/$s/config-lang.in
4528 if test "x$language" = x
4530 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
4533 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in ${srcdir}/$s/Makefile.in"
4534 all_languages="$all_languages $language"
4535 if test "x$boot_language" = xyes
4537 all_boot_languages="$all_boot_languages $language"
4539 all_compilers="$all_compilers $compilers"
4540 all_stagestuff="$all_stagestuff $stagestuff"
4541 all_diff_excludes="$all_diff_excludes $diff_excludes"
4542 all_headers="$all_headers $headers"
4543 all_outputs="$all_outputs $outputs"
4544 if test x$outputs = x
4546 oldstyle_subdirs="$oldstyle_subdirs $s"
4548 all_lib2funcs="$all_lib2funcs $lib2funcs"
4552 # Since we can't use `::' targets, we link each language in
4553 # with a set of hooks, reached indirectly via lang.${target}.
4557 target_list="all.build all.cross start.encap rest.encap \
4559 install-normal install-common install-info install-man \
4561 mostlyclean clean distclean extraclean maintainer-clean \
4562 stage1 stage2 stage3 stage4"
4563 for t in $target_list
4566 for lang in .. $all_languages
4568 if test $lang != ".."; then
4572 echo "lang.$t: $x" >> Make-hooks
4575 # If we're not building in srcdir, create .gdbinit.
4577 if test ! -f Makefile.in; then
4578 echo "dir ." > .gdbinit
4579 echo "dir ${srcdir}" >> .gdbinit
4580 if test x$gdb_needs_out_file_path = xyes
4582 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
4584 if test "x$subdirs" != x; then
4587 echo "dir ${srcdir}/$s" >> .gdbinit
4590 echo "source ${srcdir}/.gdbinit" >> .gdbinit
4593 # Define variables host_canonical and build_canonical
4594 # because some Cygnus local changes in the Makefile depend on them.
4595 build_canonical=${build}
4596 host_canonical=${host}
4598 if test "${host}" != "${target}" ; then
4599 target_subdir=${target}/
4601 AC_SUBST(build_canonical)
4602 AC_SUBST(host_canonical)
4603 AC_SUBST(target_subdir)
4605 # If this is using newlib, then define inhibit_libc in
4606 # LIBGCC2_CFLAGS. This will cause __eprintf to be left out of
4607 # libgcc.a, but that's OK because newib should have its own version of
4610 if test x$with_newlib = xyes; then
4611 inhibit_libc=-Dinhibit_libc
4613 AC_SUBST(inhibit_libc)
4615 # If $(exec_prefix) exists and is not the same as $(prefix), then compute an
4616 # absolute path for gcc_tooldir based on inserting the number of up-directory
4617 # movements required to get from $(exec_prefix) to $(prefix) into the basic
4618 # $(libsubdir)/@(unlibsubdir) based path.
4619 # Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
4620 # make and thus we'd get different behavior depending on where we built the
4622 if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
4623 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
4625 changequote(<<, >>)dnl
4626 # An explanation of the sed strings:
4627 # -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
4628 # -e 's|/$||' match a trailing forward slash and eliminates it
4629 # -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
4630 # -e 's|/[^/]*|../|g' replaces each occurance of /<directory> with ../
4632 # (*) Note this pattern overwrites the first character of the string
4633 # with a forward slash if one is not already present. This is not a
4634 # problem because the exact names of the sub-directories concerned is
4635 # unimportant, just the number of them matters.
4637 # The practical upshot of these patterns is like this:
4639 # prefix exec_prefix result
4640 # ------ ----------- ------
4642 # /foo/ /foo/bar ../
4643 # /foo /foo/bar/ ../
4644 # /foo/ /foo/bar/ ../
4645 # /foo /foo/bar/ugg ../../
4648 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
4649 changequote([, ])dnl
4651 AC_SUBST(gcc_tooldir)
4654 # Nothing to do for FLOAT_H, float_format already handled.
4658 # Process the language and host/target makefile fragments.
4659 ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
4661 # Substitute configuration variables
4663 AC_SUBST(all_boot_languages)
4664 AC_SUBST(all_compilers)
4665 AC_SUBST(all_diff_excludes)
4666 AC_SUBST(all_headers)
4667 AC_SUBST(all_lang_makefiles)
4668 AC_SUBST(all_languages)
4669 AC_SUBST(all_lib2funcs)
4670 AC_SUBST(all_stagestuff)
4671 AC_SUBST(build_exeext)
4672 AC_SUBST(build_install_headers_dir)
4673 AC_SUBST(build_xm_file_list)
4674 AC_SUBST(cc_set_by_configure)
4675 AC_SUBST(quoted_cc_set_by_configure)
4676 AC_SUBST(cpp_install_dir)
4678 AC_SUBST(dep_host_xmake_file)
4679 AC_SUBST(dep_tmake_file)
4680 AC_SUBST(extra_c_flags)
4681 AC_SUBST(extra_c_objs)
4682 AC_SUBST(extra_cpp_objs)
4683 AC_SUBST(extra_cxx_objs)
4684 AC_SUBST(extra_headers_list)
4685 AC_SUBST(extra_objs)
4686 AC_SUBST(extra_parts)
4687 AC_SUBST(extra_passes)
4688 AC_SUBST(extra_programs)
4689 AC_SUBST(fixinc_defs)
4690 AC_SUBST(float_h_file)
4691 AC_SUBST(gcc_gxx_include_dir)
4692 AC_SUBST(gcc_version)
4693 AC_SUBST(gcc_version_trigger)
4694 AC_SUBST(host_exeext)
4695 AC_SUBST(host_extra_gcc_objs)
4696 AC_SUBST(host_xm_file_list)
4698 AC_SUBST(lang_options_files)
4699 AC_SUBST(lang_specs_files)
4700 AC_SUBST(lang_tree_files)
4701 AC_SUBST(local_prefix)
4702 AC_SUBST(maybe_use_collect2)
4704 AC_SUBST(objc_boehm_gc)
4706 AC_SUBST(out_object_file)
4707 AC_SUBST(stage_prefix_set_by_configure)
4708 AC_SUBST(symbolic_link)
4709 AC_SUBST(thread_file)
4710 AC_SUBST(tm_file_list)
4711 AC_SUBST(will_use_collect2)
4714 AC_SUBST_FILE(target_overrides)
4715 AC_SUBST_FILE(host_overrides)
4716 AC_SUBST(cross_defines)
4717 AC_SUBST_FILE(cross_overrides)
4718 AC_SUBST_FILE(build_overrides)
4719 AC_SUBST_FILE(language_fragments)
4720 AC_SUBST_FILE(language_hooks)
4722 # Echo that links are built
4723 if test x$host = x$target
4731 if test x$host != x$build
4733 str3=" on a $build system"
4736 if test "x$str2" != x || test "x$str3" != x
4741 echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
4743 if test "x$str2" != x || test "x$str3" != x
4745 echo " ${str2}${str3}." 1>&2
4748 # Truncate the target if necessary
4749 if test x$host_truncate_target != x; then
4750 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
4753 # Configure the subdirectories
4754 # AC_CONFIG_SUBDIRS($subdirs)
4756 # Create the Makefile
4757 # and configure language subdirectories
4758 AC_OUTPUT($all_outputs,
4760 . $srcdir/configure.lang
4761 case x$CONFIG_HEADERS in
4762 xauto-host.h:config.in)
4765 # If the host supports symlinks, point stage[1234] at ../stage[1234] so
4766 # bootstrapping and the installation procedure can still use
4767 # CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
4768 # FLAGS_TO_PASS has been modified to solve the problem there.
4769 # This is virtually a duplicate of what happens in configure.lang; we do
4770 # an extra check to make sure this only happens if ln -s can be used.
4771 if test "$symbolic_link" = "ln -s"; then
4772 for d in .. ${subdirs} ; do
4773 if test $d != ..; then
4776 for t in stage1 stage2 stage3 stage4 include
4779 $symbolic_link ../$t $t 2>/dev/null
4785 # Avoid having to add intl to our include paths.
4786 if test -f intl/libintl.h; then
4787 echo creating libintl.h
4788 echo '#include "intl/libintl.h"' >libintl.h
4795 target_alias='${target_alias}'
4797 subdirs='${subdirs}'
4798 oldstyle_subdirs='${oldstyle_subdirs}'
4799 symbolic_link='${symbolic_link}'
4800 program_transform_set='${program_transform_set}'
4801 program_transform_name='${program_transform_name}'
4802 dep_host_xmake_file='${dep_host_xmake_file}'
4803 host_xmake_file='${host_xmake_file}'
4804 dep_tmake_file='${dep_tmake_file}'
4805 tmake_file='${tmake_file}'
4806 thread_file='${thread_file}'
4807 gcc_version='${gcc_version}'
4808 gcc_version_trigger='${gcc_version_trigger}'
4809 local_prefix='${local_prefix}'
4810 build_install_headers_dir='${build_install_headers_dir}'
4811 build_exeext='${build_exeext}'
4812 host_exeext='${host_exeext}'
4813 out_file='${out_file}'
4814 gdb_needs_out_file_path='${gdb_needs_out_file_path}'
4815 SET_MAKE='${SET_MAKE}'
4816 target_list='${target_list}'
4817 target_overrides='${target_overrides}'
4818 host_overrides='${host_overrides}'
4819 cross_defines='${cross_defines}'
4820 cross_overrides='${cross_overrides}'
4821 build_overrides='${build_overrides}'
4822 cpp_install_dir='${cpp_install_dir}'