]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/configure.in
genattr.c (function_unit_desc): Constify a char*.
[thirdparty/gcc.git] / gcc / configure.in
CommitLineData
46f18e7b
RK
1# configure.in for GNU CC
2# Process this file with autoconf to generate a configuration script.
3
4283012f 4# Copyright (C) 1997, 1998, 1999 Free Software Foundation, Inc.
46f18e7b
RK
5
6#This file is part of GNU CC.
7
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)
11#any later version.
12
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.
17
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.
22
23# Initialization and defaults
c9a3de16 24AC_PREREQ(2.12.1)
46f18e7b 25AC_INIT(tree.c)
b7cb92ad 26AC_CONFIG_HEADER(auto-host.h:config.in)
cdcc6a01 27
46f18e7b
RK
28remove=rm
29hard_link=ln
30symbolic_link='ln -s'
31copy=cp
32
75a39864
JL
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
37# is true:
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
41AC_MSG_CHECKING(LIBRARY_PATH variable)
42changequote(,)dnl
43case ${LIBRARY_PATH} in
44 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
45 library_path_setting="contains current directory"
46 ;;
47 *)
48 library_path_setting="ok"
49 ;;
50esac
51changequote([,])dnl
52AC_MSG_RESULT($library_path_setting)
53if test "$library_path_setting" != "ok"; then
54AC_MSG_ERROR([
55*** LIBRARY_PATH shouldn't contain the current directory when
079bd08e 56*** building gcc. Please change the environment variable
75a39864
JL
57*** and run configure again.])
58fi
59
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
63# is true:
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
67AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
68changequote(,)dnl
69case ${GCC_EXEC_PREFIX} in
70 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
71 gcc_exec_prefix_setting="contains current directory"
72 ;;
73 *)
74 gcc_exec_prefix_setting="ok"
75 ;;
76esac
77changequote([,])dnl
78AC_MSG_RESULT($gcc_exec_prefix_setting)
79if test "$gcc_exec_prefix_setting" != "ok"; then
80AC_MSG_ERROR([
81*** GCC_EXEC_PREFIX shouldn't contain the current directory when
079bd08e 82*** building gcc. Please change the environment variable
75a39864
JL
83*** and run configure again.])
84fi
85
46f18e7b
RK
86# Check for additional parameters
87
88# With GNU ld
89AC_ARG_WITH(gnu-ld,
90[ --with-gnu-ld arrange to work with GNU ld.],
df6faf79
JW
91gnu_ld_flag="$with_gnu_ld",
92gnu_ld_flag=no)
46f18e7b 93
ab339d62
AO
94# With pre-defined ld
95AC_ARG_WITH(ld,
96[ --with-ld arrange to use the specified ld (full pathname).],
3ccc3a56
AO
97DEFAULT_LINKER="$with_ld")
98if 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])
e154a394 101 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
102 gnu_ld_flag=yes
103 fi
3ccc3a56 104 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER")
ab339d62
AO
105fi
106
46f18e7b
RK
107# With GNU as
108AC_ARG_WITH(gnu-as,
4d8392b7 109[ --with-gnu-as arrange to work with GNU as.],
df6faf79
JW
110gas_flag="$with_gnu_as",
111gas_flag=no)
46f18e7b 112
ab339d62
AO
113AC_ARG_WITH(as,
114[ --with-as arrange to use the specified as (full pathname).],
3ccc3a56
AO
115DEFAULT_ASSEMBLER="$with_as")
116if 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])
e154a394 119 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
ab339d62
AO
120 gas_flag=yes
121 fi
3ccc3a56
AO
122 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER")
123fi
ab339d62 124
46f18e7b
RK
125# With stabs
126AC_ARG_WITH(stabs,
127[ --with-stabs arrange to use stabs instead of host debug format.],
535b86ce 128stabs="$with_stabs",
46f18e7b
RK
129stabs=no)
130
131# With ELF
132AC_ARG_WITH(elf,
133[ --with-elf arrange to use ELF instead of host debug format.],
535b86ce 134elf="$with_elf",
46f18e7b
RK
135elf=no)
136
4d8392b7 137# Specify the local prefix
4e88d51b 138local_prefix=
4d8392b7
RK
139AC_ARG_WITH(local-prefix,
140[ --with-local-prefix=DIR specifies directory to put local include.],
4e88d51b
JM
141[case "${withval}" in
142yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
143no) ;;
144*) local_prefix=$with_local_prefix ;;
145esac])
4d8392b7
RK
146
147# Default local prefix if it is empty
75bffa71 148if test x$local_prefix = x; then
4d8392b7
RK
149 local_prefix=/usr/local
150fi
151
8f8d3278
NC
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.
155gcc_gxx_include_dir=
9514f0d1
RK
156# Specify the g++ header file directory
157AC_ARG_WITH(gxx-include-dir,
158[ --with-gxx-include-dir=DIR
159 specifies directory to put g++ header files.],
4e88d51b
JM
160[case "${withval}" in
161yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
162no) ;;
8f8d3278 163*) gcc_gxx_include_dir=$with_gxx_include_dir ;;
4e88d51b
JM
164esac])
165
8f8d3278 166if test x${gcc_gxx_include_dir} = x; then
4e88d51b 167 if test x${enable_version_specific_runtime_libs} = xyes; then
8f8d3278 168 gcc_gxx_include_dir='${libsubdir}/include/g++'
4e88d51b 169 else
a270b446 170 topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
de82584d 171changequote(<<, >>)dnl
8f8d3278 172 gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/g++"-${libstdcxx_interface}
de82584d 173changequote([, ])dnl
4e88d51b
JM
174 fi
175fi
46f18e7b 176
a494747c
MM
177# Enable expensive internal checks
178AC_ARG_ENABLE(checking,
179[ --enable-checking enable expensive run-time checks.],
4e88d51b
JM
180[case "${enableval}" in
181yes) AC_DEFINE(ENABLE_CHECKING) ;;
182no) ;;
183*) AC_MSG_ERROR(bad value ${enableval} given for checking option) ;;
184esac])
a494747c 185
3ecc3258
ZW
186AC_ARG_ENABLE(cpp,
187[ --disable-cpp don't provide a user-visible C preprocessor.],
188[], [enable_cpp=yes])
189
190AC_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])
196elif test x$withval != xno; then
197 cpp_install_dir=$withval
198fi])
199
f81a440f 200# Use cpplib+cppmain for the preprocessor, but don't link it with the compiler.
e061d1ce 201cpp_main=cccp
f81a440f
ZW
202AC_ARG_ENABLE(cpplib,
203[ --enable-cpplib use cpplib for the C preprocessor.],
204if test x$enable_cpplib != xno; then
205 cpp_main=cppmain
206fi)
207
208# Link cpplib into the compiler proper, for C/C++/ObjC.
b4294351 209AC_ARG_ENABLE(c-cpplib,
f81a440f 210[ --enable-c-cpplib link cpplib directly into C and C++ compilers
3ecc3258 211 (EXPERIMENTAL) (implies --enable-cpplib).],
75bffa71 212if test x$enable_c_cpplib != xno; then
19283265
RH
213 extra_c_objs="${extra_c_objs} libcpp.a"
214 extra_cxx_objs="${extra_cxx_objs} ../libcpp.a"
8f8d3278 215 extra_c_flags="${extra_c_flags} -DUSE_CPPLIB=1"
e061d1ce 216 cpp_main=cppmain
b4294351 217fi)
f81a440f 218
56f48ce9
DB
219# Enable Multibyte Characters for C/C++
220AC_ARG_ENABLE(c-mbchar,
f81a440f 221[ --enable-c-mbchar enable multibyte characters for C and C++.],
75bffa71 222if test x$enable_c_mbchar != xno; then
56f48ce9
DB
223 extra_c_flags=-DMULTIBYTE_CHARS=1
224fi)
76c8f855
BK
225
226# Disable fast fixincludes
227AC_ARG_ENABLE(fast-fixincludes,
228[ --disable-fast-fixincludes
229 Disable the new fast fixincludes.
230 Run the old fixincludes script unconditionally],
231if test x$enable_fast_fixincludes = xno ; then
232 cp $srcdir/fixincludes ./fixinc.sh
233fi)
234
0bbb1697
RK
235# Enable threads
236# Pass with no value to take the default
237# Pass with a value to specify a thread package
238AC_ARG_ENABLE(threads,
239[ --enable-threads enable thread usage for target GCC.
240 --enable-threads=LIB use LIB thread package for target GCC.],
75bffa71 241if test x$enable_threads = xno; then
0bbb1697
RK
242 enable_threads=''
243fi,
244enable_threads='')
245
e445171e 246enable_threads_flag=$enable_threads
0bbb1697 247# Check if a valid thread package
e445171e 248case x${enable_threads_flag} in
0bbb1697
RK
249 x | xno)
250 # No threads
a851212a 251 target_thread_file='single'
0bbb1697
RK
252 ;;
253 xyes)
254 # default
a851212a 255 target_thread_file=''
0bbb1697
RK
256 ;;
257 xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
7cc34889 258 xsolaris | xwin32 | xdce | xvxworks)
e445171e 259 target_thread_file=$enable_threads_flag
0bbb1697
RK
260 ;;
261 *)
262 echo "$enable_threads is an unknown thread package" 1>&2
263 exit 1
264 ;;
265esac
266
d8bb17c8
OP
267AC_ARG_ENABLE(objc-gc,
268[ --enable-objc-gc enable the use of Boehm's garbage collector with
269 the GNU Objective-C runtime.],
270if [[[ x$enable_objc_gc = xno ]]]; then
271 objc_boehm_gc=''
272else
273 objc_boehm_gc=1
274fi,
275objc_boehm_gc='')
276
90e6a802
RL
277AC_ARG_WITH(dwarf2,
278[ --enable-dwarf2 enable DWARF2 debugging as default.],
279dwarf2="$with_dwarf2",
280dwarf2=no)
281
46f18e7b
RK
282# Determine the host, build, and target systems
283AC_CANONICAL_SYSTEM
284
e9a25f70
JL
285# Find the native compiler
286AC_PROG_CC
61842080
MM
287
288# If the native compiler is GCC, we can enable warnings even in stage1.
289# That's useful for people building cross-compilers, or just running a
290# quick `make'.
291if test "x$GCC" = "xyes"; then
292 stage1_warn_cflags='$(WARN_CFLAGS)'
293else
294 stage1_warn_cflags=""
295fi
296AC_SUBST(stage1_warn_cflags)
297
e9a25f70
JL
298AC_PROG_MAKE_SET
299
ab339d62 300AC_MSG_CHECKING([whether a default assembler was specified])
3ccc3a56 301if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
e154a394 302 if test x"$gas_flag" = x"no"; then
3ccc3a56 303 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
ab339d62 304 else
3ccc3a56 305 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
ab339d62
AO
306 fi
307else
308 AC_MSG_RESULT(no)
309fi
310
311AC_MSG_CHECKING([whether a default linker was specified])
3ccc3a56 312if test x"${DEFAULT_LINKER+set}" = x"set"; then
e154a394 313 if test x"$gnu_ld_flag" = x"no"; then
3ccc3a56 314 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
ab339d62 315 else
3ccc3a56 316 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
ab339d62
AO
317 fi
318else
319 AC_MSG_RESULT(no)
320fi
321
46f18e7b
RK
322# Find some useful tools
323AC_PROG_AWK
324AC_PROG_LEX
ac64120e
JW
325GCC_PROG_LN
326GCC_PROG_LN_S
e9b4fabf 327GCC_C_VOLATILE
46f18e7b
RK
328AC_PROG_RANLIB
329AC_PROG_YACC
76143254 330EGCS_PROG_INSTALL
46f18e7b 331
956d6950
JL
332AC_HEADER_STDC
333AC_HEADER_TIME
ccc7d11a 334GCC_HEADER_STRING
e9831ca0 335AC_HEADER_SYS_WAIT
75923b2f 336AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h fcntl.h unistd.h stab.h sys/file.h sys/time.h sys/resource.h sys/param.h sys/times.h sys/stat.h direct.h)
7636d567 337
f24af81b
TT
338# Check for thread headers.
339AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
340AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
341
bcf12124
JL
342# See if GNAT has been installed
343AC_CHECK_PROG(gnat, gnatbind, yes, no)
344
76844337
RH
345# See if the system preprocessor understands the ANSI C preprocessor
346# stringification operator.
347AC_MSG_CHECKING(whether cpp understands the stringify operator)
348AC_CACHE_VAL(gcc_cv_c_have_stringify,
349[AC_TRY_COMPILE(,
350[#define S(x) #x
351char *test = S(foo);],
352gcc_cv_c_have_stringify=yes, gcc_cv_c_have_stringify=no)])
353AC_MSG_RESULT($gcc_cv_c_have_stringify)
354if test $gcc_cv_c_have_stringify = yes; then
355 AC_DEFINE(HAVE_CPP_STRINGIFY)
356fi
357
7636d567
JW
358# Use <inttypes.h> only if it exists,
359# doesn't clash with <sys/types.h>, and declares intmax_t.
360AC_MSG_CHECKING(for inttypes.h)
361AC_CACHE_VAL(gcc_cv_header_inttypes_h,
362[AC_TRY_COMPILE(
363 [#include <sys/types.h>
364#include <inttypes.h>],
365 [intmax_t i = -1;],
9da0e39b 366 [gcc_cv_header_inttypes_h=yes],
7636d567
JW
367 gcc_cv_header_inttypes_h=no)])
368AC_MSG_RESULT($gcc_cv_header_inttypes_h)
9da0e39b
AS
369if test $gcc_cv_header_inttypes_h = yes; then
370 AC_DEFINE(HAVE_INTTYPES_H)
371fi
cdcc6a01 372
76b4b31e 373AC_CHECK_FUNCS(strtoul bsearch strerror putenv popen bcopy bzero bcmp \
8f81384f 374 index rindex strchr strrchr kill getrlimit setrlimit atoll atoq \
54953b66
UD
375 sysconf isascii gettimeofday strsignal putc_unlocked fputc_unlocked \
376 fputs_unlocked)
a81fb89e 377
56f48ce9
DB
378# Make sure wchar_t is available
379#AC_CHECK_TYPE(wchar_t, unsigned int)
380
76b4b31e 381GCC_FUNC_VFPRINTF_DOPRNT
f1b54f9b 382GCC_FUNC_PRINTF_PTR
b27d2bd5
MK
383
384case "${host}" in
385*-*-uwin*)
386 # Under some versions of uwin, vfork is notoriously buggy and the test
387 # can hang configure; on other versions, vfork exists just as a stub.
388 # FIXME: This should be removed once vfork in uwin's runtime is fixed.
389 ac_cv_func_vfork_works=no
390 ;;
391esac
c375c43b 392AC_FUNC_VFORK
f1b54f9b 393
a81fb89e 394GCC_NEED_DECLARATIONS(malloc realloc calloc free bcopy bzero bcmp \
007e8d2a 395 index rindex getenv atol sbrk abort atof strerror getcwd getwd \
f36fcf57 396 strsignal putc_unlocked fputs_unlocked strstr)
cdcc6a01 397
d2cabf16
KG
398GCC_NEED_DECLARATIONS(getrlimit setrlimit, [
399#include <sys/types.h>
400#ifdef HAVE_SYS_RESOURCE_H
401#include <sys/resource.h>
402#endif
403])
404
e3512ac2
JL
405AC_DECL_SYS_SIGLIST
406
75923b2f
MK
407# mkdir takes a single argument on some systems.
408GCC_FUNC_MKDIR_TAKES_ONE_ARG
409
46f18e7b
RK
410# File extensions
411manext='.1'
412objext='.o'
46f18e7b
RK
413AC_SUBST(manext)
414AC_SUBST(objext)
46f18e7b
RK
415
416build_xm_file=
61536478 417build_xm_defines=
46f18e7b
RK
418build_install_headers_dir=install-headers-tar
419build_exeext=
420host_xm_file=
61536478 421host_xm_defines=
46f18e7b
RK
422host_xmake_file=
423host_truncate_target=
6e26218f 424host_exeext=
46f18e7b
RK
425
426# Decode the host machine, then the target machine.
427# For the host machine, we save the xm_file variable as host_xm_file;
428# then we decode the target machine and forget everything else
429# that came from the host machine.
430for machine in $build $host $target; do
431
432 out_file=
433 xmake_file=
434 tmake_file=
435 extra_headers=
436 extra_passes=
437 extra_parts=
438 extra_programs=
439 extra_objs=
440 extra_host_objs=
441 extra_gcc_objs=
61536478 442 xm_defines=
46f18e7b
RK
443 float_format=
444 # Set this to force installation and use of collect2.
445 use_collect2=
446 # Set this to override the default target model.
447 target_cpu_default=
46f18e7b
RK
448 # Set this to control how the header file directory is installed.
449 install_headers_dir=install-headers-tar
450 # Set this to a non-empty list of args to pass to cpp if the target
451 # wants its .md file passed through cpp.
452 md_cppflags=
453 # Set this if directory names should be truncated to 14 characters.
454 truncate_target=
455 # Set this if gdb needs a dir command with `dirname $out_file`
456 gdb_needs_out_file_path=
46f18e7b
RK
457 # Set this if the build machine requires executables to have a
458 # file name suffix.
459 exeext=
a851212a
JW
460 # Set this to control which thread package will be used.
461 thread_file=
df6faf79
JW
462 # Reinitialize these from the flag values every loop pass, since some
463 # configure entries modify them.
464 gas="$gas_flag"
465 gnu_ld="$gnu_ld_flag"
e445171e 466 enable_threads=$enable_threads_flag
46f18e7b
RK
467
468 # Set default cpu_type, tm_file and xm_file so it can be updated in
469 # each machine entry.
470 cpu_type=`echo $machine | sed 's/-.*$//'`
471 case $machine in
08fc0184
RK
472 alpha*-*-*)
473 cpu_type=alpha
474 ;;
46f18e7b
RK
475 arm*-*-*)
476 cpu_type=arm
477 ;;
478 c*-convex-*)
479 cpu_type=convex
480 ;;
75bffa71
ILT
481changequote(,)dnl
482 i[34567]86-*-*)
483changequote([,])dnl
46f18e7b
RK
484 cpu_type=i386
485 ;;
486 hppa*-*-*)
487 cpu_type=pa
488 ;;
489 m68000-*-*)
490 cpu_type=m68k
491 ;;
492 mips*-*-*)
493 cpu_type=mips
494 ;;
495 powerpc*-*-*)
496 cpu_type=rs6000
497 ;;
498 pyramid-*-*)
499 cpu_type=pyr
500 ;;
501 sparc*-*-*)
502 cpu_type=sparc
503 ;;
504 esac
505
506 tm_file=${cpu_type}/${cpu_type}.h
507 xm_file=${cpu_type}/xm-${cpu_type}.h
508
7aae67a2
JM
509 # On a.out targets, we need to use collect2.
510 case $machine in
511 *-*-*aout*)
512 use_collect2=yes
513 ;;
514 esac
515
1b4a979b 516 # Common parts for linux-gnu and openbsd systems
61536478
JL
517 case $machine in
518 *-*-linux-gnu*)
c7391272 519 xm_defines="HAVE_ATEXIT POSIX BSTRING"
61536478 520 ;;
1b4a979b
ME
521 *-*-openbsd*)
522 tm_file=${cpu_type}/openbsd.h
1b4a979b
ME
523 tmake_file="t-libc-ok t-openbsd"
524 # avoid surprises, always provide an xm-openbsd file
525 xm_file=${cpu_type}/xm-openbsd.h
766518a0
ME
526 # don't depend on processor x-fragments as well
527 xmake_file=none
1b4a979b
ME
528 if test x$enable_threads = xyes; then
529 thread_file='posix'
530 tmake_file="${tmake_file} t-openbsd-thread"
531 fi
532 ;;
61536478
JL
533 esac
534
46f18e7b
RK
535 case $machine in
536 # Support site-specific machine types.
537 *local*)
538 cpu_type=`echo $machine | sed -e 's/-.*//'`
539 rest=`echo $machine | sed -e "s/$cpu_type-//"`
540 xm_file=${cpu_type}/xm-$rest.h
541 tm_file=${cpu_type}/$rest.h
75bffa71 542 if test -f $srcdir/config/${cpu_type}/x-$rest; \
46f18e7b
RK
543 then xmake_file=${cpu_type}/x-$rest; \
544 else true; \
545 fi
75bffa71 546 if test -f $srcdir/config/${cpu_type}/t-$rest; \
46f18e7b
RK
547 then tmake_file=${cpu_type}/t-$rest; \
548 else true; \
549 fi
550 ;;
551 1750a-*-*)
552 ;;
553 a29k-*-bsd* | a29k-*-sym1*)
554 tm_file="${tm_file} a29k/unix.h"
61536478 555 xm_defines=USG
46f18e7b
RK
556 xmake_file=a29k/x-unix
557 use_collect2=yes
558 ;;
559 a29k-*-udi | a29k-*-coff)
560 tm_file="${tm_file} dbxcoff.h a29k/udi.h"
561 tmake_file=a29k/t-a29kbare
562 ;;
7cc34889 563 a29k-wrs-vxworks*)
46f18e7b
RK
564 tm_file="${tm_file} dbxcoff.h a29k/udi.h a29k/vx29k.h"
565 tmake_file=a29k/t-vx29k
566 extra_parts="crtbegin.o crtend.o"
7cc34889 567 thread_file='vxworks'
46f18e7b
RK
568 ;;
569 a29k-*-*) # Default a29k environment.
570 use_collect2=yes
571 ;;
615c8231
DT
572 alpha-*-interix)
573 tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h"
574
575 # GAS + IEEE_CONFORMANT+IEEE (no inexact);
8354da48 576 #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE"
615c8231 577
8354da48
JL
578 # GAS + IEEE_CONFORMANT
579 target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT"
615c8231
DT
580
581 xm_file="alpha/xm-alpha-interix.h xm-interix.h"
582 xmake_file="x-interix alpha/t-pe"
e345693a 583 tmake_file="alpha/t-interix alpha/t-ieee"
615c8231
DT
584 if test x$enable_threads = xyes ; then
585 thread_file='posix'
586 fi
587 if test x$stabs = xyes ; then
588 tm_file="${tm_file} dbxcoff.h"
589 fi
590 #prefix='$$INTERIX_ROOT'/usr/contrib
591 #local_prefix='$$INTERIX_ROOT'/usr/contrib
592 ;;
08fc0184 593 alpha*-*-linux-gnuecoff*)
8983c716 594 tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h"
61536478 595 target_cpu_default="MASK_GAS"
e345693a 596 tmake_file="alpha/t-ieee"
e71c3bb0 597 gas=no
46f18e7b 598 xmake_file=none
46f18e7b
RK
599 gas=yes gnu_ld=yes
600 ;;
704a6306 601 alpha*-*-linux-gnulibc1*)
9d654bba 602 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
61536478 603 target_cpu_default="MASK_GAS"
e345693a 604 tmake_file="t-linux t-linux-gnulibc1 alpha/t-linux alpha/t-crtbe alpha/t-ieee"
574badbc 605 extra_parts="crtbegin.o crtend.o"
704a6306 606 xmake_file=none
704a6306 607 gas=yes gnu_ld=yes
75bffa71 608 if test x$enable_threads = xyes; then
704a6306
RH
609 thread_file='posix'
610 fi
611 ;;
08fc0184 612 alpha*-*-linux-gnu*)
9d654bba 613 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
61536478 614 target_cpu_default="MASK_GAS"
e345693a 615 tmake_file="t-linux alpha/t-linux alpha/t-crtbe alpha/t-ieee"
574badbc 616 extra_parts="crtbegin.o crtend.o"
46f18e7b 617 xmake_file=none
46f18e7b 618 gas=yes gnu_ld=yes
75bffa71 619 if test x$enable_threads = xyes; then
c811d261
RK
620 thread_file='posix'
621 fi
46f18e7b 622 ;;
9d654bba 623 alpha*-*-netbsd*)
66953094 624 tm_file="${tm_file} alpha/elf.h alpha/netbsd.h alpha/netbsd-elf.h"
9d654bba 625 target_cpu_default="MASK_GAS"
e345693a 626 tmake_file="alpha/t-crtbe alpha/t-ieee"
9d654bba
RH
627 extra_parts="crtbegin.o crtend.o"
628 xmake_file=none
9d654bba
RH
629 gas=yes gnu_ld=yes
630 ;;
1b4a979b
ME
631
632 alpha*-*-openbsd*)
633 # default x-alpha is only appropriate for dec-osf.
634 target_cpu_default="MASK_GAS"
e345693a 635 tmake_file="alpha/t-ieee"
1b4a979b 636 ;;
9d654bba 637
e9a25f70 638 alpha*-dec-osf*)
75bffa71 639 if test x$stabs = xyes
dec3e070
JW
640 then
641 tm_file="${tm_file} dbx.h"
642 fi
75bffa71 643 if test x$gas != xyes
dec3e070
JW
644 then
645 extra_passes="mips-tfile mips-tdump"
646 fi
dec3e070 647 use_collect2=yes
e345693a 648 tmake_file="alpha/t-ieee"
dec3e070 649 case $machine in
6ecd4e53 650 *-*-osf1*)
b0435cf4 651 tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h"
e9a25f70 652 ;;
75bffa71
ILT
653changequote(,)dnl
654 *-*-osf[23]*)
655changequote([,])dnl
b0435cf4 656 tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h"
e9a25f70
JL
657 ;;
658 *-*-osf4*)
b0435cf4 659 tm_file="${tm_file} alpha/osf.h"
e9a25f70
JL
660 # Some versions of OSF4 (specifically X4.0-9 296.7) have
661 # a broken tar, so we use cpio instead.
dec3e070
JW
662 install_headers_dir=install-headers-cpio
663 ;;
7bc69973
JP
664 *-*-osf5*)
665 tm_file="${tm_file} alpha/osf.h"
666 ;;
dec3e070 667 esac
e9a25f70 668 case $machine in
75bffa71
ILT
669changequote(,)dnl
670 *-*-osf4.0[b-z] | *-*-osf4.[1-9]*)
671changequote([,])dnl
e9a25f70
JL
672 target_cpu_default=MASK_SUPPORT_ARCH
673 ;;
674 esac
46f18e7b 675 ;;
9ec36da5
JL
676 alpha*-*-vxworks*)
677 tm_file="${tm_file} dbx.h alpha/vxworks.h"
e345693a 678 tmake_file="alpha/t-ieee"
9ec36da5
JL
679 if [ x$gas != xyes ]
680 then
681 extra_passes="mips-tfile mips-tdump"
682 fi
683 use_collect2=yes
28897609 684 thread_file='vxworks'
9ec36da5 685 ;;
b0435cf4 686 alpha*-*-winnt*)
615c8231 687 tm_file="${tm_file} alpha/alpha32.h alpha/win-nt.h winnt/win-nt.h"
46f18e7b 688 xm_file="${xm_file} config/winnt/xm-winnt.h alpha/xm-winnt.h"
e345693a 689 tmake_file="t-libc-ok alpha/t-ieee"
46f18e7b
RK
690 xmake_file=winnt/x-winnt
691 extra_host_objs=oldnames.o
692 extra_gcc_objs="spawnv.o oldnames.o"
75bffa71 693 if test x$gnu_ld != xyes
46f18e7b
RK
694 then
695 extra_programs=ld.exe
696 fi
75bffa71 697 if test x$enable_threads = xyes; then
0bbb1697
RK
698 thread_file='win32'
699 fi
46f18e7b 700 ;;
08fc0184 701 alpha*-dec-vms*)
46f18e7b
RK
702 tm_file=alpha/vms.h
703 xm_file="${xm_file} alpha/xm-vms.h"
e345693a 704 tmake_file="alpha/t-vms alpha/t-ieee"
46f18e7b 705 ;;
66ed0683
JL
706 arc-*-elf*)
707 extra_parts="crtinit.o crtfini.o"
708 ;;
46f18e7b
RK
709 arm-*-coff* | armel-*-coff*)
710 tm_file=arm/coff.h
711 tmake_file=arm/t-bare
712 ;;
2aa0c933 713 arm-*-vxworks*)
e14db015 714 tm_file=arm/vxarm.h
2aa0c933 715 tmake_file=arm/t-bare
28897609 716 thread_file='vxworks'
2aa0c933 717 ;;
75bffa71
ILT
718changequote(,)dnl
719 arm-*-riscix1.[01]*) # Acorn RISC machine (early versions)
720changequote([,])dnl
46f18e7b
RK
721 tm_file=arm/riscix1-1.h
722 use_collect2=yes
723 ;;
724 arm-*-riscix*) # Acorn RISC machine
75bffa71 725 if test x$gas = xyes
46f18e7b
RK
726 then
727 tm_file=arm/rix-gas.h
728 else
729 tm_file=arm/riscix.h
730 fi
731 xmake_file=arm/x-riscix
732 tmake_file=arm/t-riscix
733 use_collect2=yes
734 ;;
735 arm-semi-aout | armel-semi-aout)
736 tm_file=arm/semi.h
737 tmake_file=arm/t-semi
46f18e7b
RK
738 ;;
739 arm-semi-aof | armel-semi-aof)
740 tm_file=arm/semiaof.h
741 tmake_file=arm/t-semiaof
46f18e7b 742 ;;
58600d24 743 arm*-*-netbsd*)
d23f4158 744 tm_file=arm/netbsd.h
641d4216 745 xm_file="arm/xm-netbsd.h ${xm_file}"
e9a25f70 746 tmake_file="t-netbsd arm/t-netbsd"
af0ca027 747 use_collect2=yes
d23f4158 748 ;;
b355a481 749 arm*-*-linux-gnuaout*) # ARM GNU/Linux with a.out
618d2e70 750 cpu_type=arm
618d2e70 751 xmake_file=x-linux
b355a481 752 tm_file=arm/linux-aout.h
618d2e70 753 tmake_file=arm/t-linux
618d2e70
RK
754 gnu_ld=yes
755 ;;
078e19a4 756 arm*-*-linux-gnuoldld*) # ARM GNU/Linux with old ELF linker
b355a481
NC
757 xm_file=arm/xm-linux.h
758 xmake_file=x-linux
078e19a4 759 tm_file="arm/linux-oldld.h arm/linux-elf.h"
b355a481
NC
760 case $machine in
761 armv2*-*-*)
078e19a4
PB
762 tm_file="arm/linux-elf26.h $tm_file"
763 ;;
764 esac
765 tmake_file="t-linux arm/t-linux"
766 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
767 gnu_ld=yes
768 case x${enable_threads} in
769 x | xyes | xpthreads | xposix)
770 thread_file='posix'
b355a481 771 ;;
078e19a4
PB
772 esac
773 ;;
774 arm*-*-linux-gnu*) # ARM GNU/Linux with ELF
775 xm_file=arm/xm-linux.h
776 xmake_file=x-linux
777 tm_file="arm/linux-elf.h"
778 case $machine in
779 armv2*-*-*)
780 tm_file="arm/linux-elf26.h $tm_file"
b355a481
NC
781 ;;
782 esac
783 tmake_file="t-linux arm/t-linux"
784 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
b355a481 785 gnu_ld=yes
65120c40
SB
786 case x${enable_threads} in
787 x | xyes | xpthreads | xposix)
788 thread_file='posix'
789 ;;
790 esac
b355a481 791 ;;
483f6332
PB
792 arm*-*-uclinux*) # ARM ucLinux
793 tm_file=arm/uclinux-elf.h
794 tmake_file=arm/t-arm-elf
795 ;;
b355a481 796 arm*-*-aout)
f5967c59 797 tm_file=arm/aout.h
e9a25f70 798 tmake_file=arm/t-bare
46f18e7b 799 ;;
e6592fff
CM
800 arm*-*-ecos-elf)
801 tm_file=arm/ecos-elf.h
802 tmake_file=arm/t-elf
803 ;;
b355a481
NC
804 arm*-*-elf)
805 tm_file=arm/unknown-elf.h
806 tmake_file=arm/t-arm-elf
807 ;;
cbca921c
CM
808 arm*-*-oabi)
809 tm_file=arm/unknown-elf-oabi.h
810 tmake_file=arm/t-arm-elf
811 ;;
cb805c2d
NC
812 arm-*-pe*)
813 tm_file=arm/pe.h
814 tmake_file=arm/t-pe
815 extra_objs=pe.o
816 ;;
46f18e7b
RK
817 c1-convex-*) # Convex C1
818 target_cpu_default=1
819 use_collect2=yes
46f18e7b
RK
820 ;;
821 c2-convex-*) # Convex C2
822 target_cpu_default=2
823 use_collect2=yes
46f18e7b
RK
824 ;;
825 c32-convex-*)
826 target_cpu_default=4
827 use_collect2=yes
46f18e7b
RK
828 ;;
829 c34-convex-*)
830 target_cpu_default=8
831 use_collect2=yes
46f18e7b
RK
832 ;;
833 c38-convex-*)
834 target_cpu_default=16
835 use_collect2=yes
46f18e7b 836 ;;
62616695
MH
837 c4x-*)
838 cpu_type=c4x
839 tmake_file=c4x/t-c4x
840 ;;
46f18e7b
RK
841 clipper-intergraph-clix*)
842 tm_file="${tm_file} svr3.h clipper/clix.h"
843 xm_file=clipper/xm-clix.h
844 xmake_file=clipper/x-clix
845 extra_headers=va-clipper.h
846 extra_parts="crtbegin.o crtend.o"
847 install_headers_dir=install-headers-cpio
46f18e7b
RK
848 ;;
849 dsp16xx-*)
850 ;;
851 elxsi-elxsi-*)
852 use_collect2=yes
853 ;;
854# This hasn't been upgraded to GCC 2.
855# fx80-alliant-*) # Alliant FX/80
856# ;;
857 h8300-*-*)
858 float_format=i32
859 ;;
30f08b39
JL
860 hppa*-*-linux*)
861 target_cpu_default="(MASK_PA_11 | MASK_GAS | MASK_JUMP_IN_DELAY)"
862 tm_file="${tm_file} pa/elf.h linux.h pa/pa-linux.h"
863 tmake_file="t-linux pa/t-linux"
864 extra_parts="crtbegin.o crtend.o"
865 xmake_file=none
866 gas=yes gnu_ld=yes
867 if test x$enable_threads = xyes; then
868 thread_file='posix'
869 fi
870 ;;
1b4a979b 871 hppa*-*-openbsd*)
13ee407e 872 target_cpu_default="MASK_PA_11"
8f8d3278 873 tmake_file=pa/t-openbsd
1b4a979b 874 ;;
46f18e7b 875 hppa1.1-*-pro*)
0d381b47
JL
876 target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)"
877 tm_file="${tm_file} elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h"
46f18e7b
RK
878 xm_file=pa/xm-papro.h
879 tmake_file=pa/t-pro
880 ;;
881 hppa1.1-*-osf*)
13ee407e 882 target_cpu_default="MASK_PA_11"
0d381b47 883 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
46f18e7b 884 use_collect2=yes
46f18e7b 885 ;;
dec3e070 886 hppa1.1-*-rtems*)
0d381b47
JL
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 pa/rtems.h"
dec3e070
JW
889 xm_file=pa/xm-papro.h
890 tmake_file=pa/t-pro
891 ;;
46f18e7b 892 hppa1.0-*-osf*)
0d381b47 893 tm_file="${tm_file} pa/som.h pa/pa-osf.h"
46f18e7b 894 use_collect2=yes
46f18e7b
RK
895 ;;
896 hppa1.1-*-bsd*)
0d381b47 897 tm_file="${tm_file} pa/som.h"
13ee407e 898 target_cpu_default="MASK_PA_11"
46f18e7b 899 use_collect2=yes
46f18e7b
RK
900 ;;
901 hppa1.0-*-bsd*)
0d381b47 902 tm_file="${tm_file} pa/som.h"
46f18e7b 903 use_collect2=yes
46f18e7b
RK
904 ;;
905 hppa1.0-*-hpux7*)
0d381b47 906 tm_file="pa/pa-oldas.h ${tm_file} pa/som.h pa/pa-hpux7.h"
46f18e7b
RK
907 xm_file=pa/xm-pahpux.h
908 xmake_file=pa/x-pa-hpux
75bffa71 909 if test x$gas = xyes
46f18e7b
RK
910 then
911 tm_file="${tm_file} pa/gas.h"
912 fi
46f18e7b
RK
913 install_headers_dir=install-headers-cpio
914 use_collect2=yes
915 ;;
75bffa71
ILT
916changequote(,)dnl
917 hppa1.0-*-hpux8.0[0-2]*)
918changequote([,])dnl
0d381b47 919 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
46f18e7b
RK
920 xm_file=pa/xm-pahpux.h
921 xmake_file=pa/x-pa-hpux
75bffa71 922 if test x$gas = xyes
46f18e7b
RK
923 then
924 tm_file="${tm_file} pa/pa-gas.h"
925 else
926 tm_file="pa/pa-oldas.h ${tm_file}"
927 fi
46f18e7b
RK
928 install_headers_dir=install-headers-cpio
929 use_collect2=yes
930 ;;
75bffa71
ILT
931changequote(,)dnl
932 hppa1.1-*-hpux8.0[0-2]*)
933changequote([,])dnl
13ee407e 934 target_cpu_default="MASK_PA_11"
0d381b47 935 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
46f18e7b
RK
936 xm_file=pa/xm-pahpux.h
937 xmake_file=pa/x-pa-hpux
75bffa71 938 if test x$gas = xyes
46f18e7b
RK
939 then
940 tm_file="${tm_file} pa/pa-gas.h"
941 else
942 tm_file="pa/pa-oldas.h ${tm_file}"
943 fi
46f18e7b
RK
944 install_headers_dir=install-headers-cpio
945 use_collect2=yes
946 ;;
947 hppa1.1-*-hpux8*)
13ee407e 948 target_cpu_default="MASK_PA_11"
0d381b47 949 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
46f18e7b
RK
950 xm_file=pa/xm-pahpux.h
951 xmake_file=pa/x-pa-hpux
75bffa71 952 if test x$gas = xyes
46f18e7b
RK
953 then
954 tm_file="${tm_file} pa/pa-gas.h"
955 fi
46f18e7b
RK
956 install_headers_dir=install-headers-cpio
957 use_collect2=yes
958 ;;
959 hppa1.0-*-hpux8*)
0d381b47 960 tm_file="${tm_file} pa/som.h pa/pa-hpux.h"
46f18e7b
RK
961 xm_file=pa/xm-pahpux.h
962 xmake_file=pa/x-pa-hpux
75bffa71 963 if test x$gas = xyes
46f18e7b
RK
964 then
965 tm_file="${tm_file} pa/pa-gas.h"
966 fi
46f18e7b
RK
967 install_headers_dir=install-headers-cpio
968 use_collect2=yes
969 ;;
18cae839 970 hppa1.1-*-hpux10* | hppa2*-*-hpux10*)
13ee407e 971 target_cpu_default="MASK_PA_11"
0d381b47 972 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
46f18e7b
RK
973 xm_file=pa/xm-pahpux.h
974 xmake_file=pa/x-pa-hpux
f24af81b 975 tmake_file=pa/t-pa
75bffa71 976 if test x$gas = xyes
46f18e7b
RK
977 then
978 tm_file="${tm_file} pa/pa-gas.h"
979 fi
75bffa71 980 if test x$enable_threads = x; then
f24af81b
TT
981 enable_threads=$have_pthread_h
982 fi
75bffa71 983 if test x$enable_threads = xyes; then
f24af81b
TT
984 thread_file='dce'
985 tmake_file="${tmake_file} pa/t-dce-thr"
986 fi
46f18e7b
RK
987 install_headers_dir=install-headers-cpio
988 use_collect2=yes
989 ;;
990 hppa1.0-*-hpux10*)
0d381b47 991 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux10.h"
46f18e7b
RK
992 xm_file=pa/xm-pahpux.h
993 xmake_file=pa/x-pa-hpux
661c7909 994 tmake_file=pa/t-pa
75bffa71 995 if test x$gas = xyes
46f18e7b
RK
996 then
997 tm_file="${tm_file} pa/pa-gas.h"
998 fi
75bffa71 999 if test x$enable_threads = x; then
d005a5a4
JL
1000 enable_threads=$have_pthread_h
1001 fi
75bffa71 1002 if test x$enable_threads = xyes; then
d005a5a4
JL
1003 thread_file='dce'
1004 tmake_file="${tmake_file} pa/t-dce-thr"
1005 fi
46f18e7b
RK
1006 install_headers_dir=install-headers-cpio
1007 use_collect2=yes
1008 ;;
fab7be4f 1009 hppa1.1-*-hpux11* | hppa2*-*-hpux11*)
30f08b39 1010 target_cpu_default="MASK_PA_11"
0d381b47 1011 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
fab7be4f
JL
1012 xm_file=pa/xm-pahpux.h
1013 xmake_file=pa/x-pa-hpux
1014 tmake_file=pa/t-pa
1015 if [[ x$gas = xyes ]]
1016 then
1017 tm_file="${tm_file} pa/pa-gas.h"
1018 fi
1019# if [[ x$enable_threads = x ]]; then
1020# enable_threads=$have_pthread_h
1021# fi
1022# if [[ x$enable_threads = xyes ]]; then
1023# thread_file='dce'
1024# tmake_file="${tmake_file} pa/t-dce-thr"
1025# fi
1026 install_headers_dir=install-headers-cpio
1027 use_collect2=yes
1028 ;;
1029 hppa1.0-*-hpux11*)
0d381b47 1030 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux11.h"
fab7be4f
JL
1031 xm_file=pa/xm-pahpux.h
1032 xmake_file=pa/x-pa-hpux
1033 if [[ x$gas = xyes ]]
1034 then
1035 tm_file="${tm_file} pa/pa-gas.h"
1036 fi
1037# if [[ x$enable_threads = x ]]; then
1038# enable_threads=$have_pthread_h
1039# fi
1040# if [[ x$enable_threads = xyes ]]; then
1041# thread_file='dce'
1042# tmake_file="${tmake_file} pa/t-dce-thr"
1043# fi
1044 install_headers_dir=install-headers-cpio
1045 use_collect2=yes
1046 ;;
18cae839 1047 hppa1.1-*-hpux* | hppa2*-*-hpux*)
13ee407e 1048 target_cpu_default="MASK_PA_11"
0d381b47 1049 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
46f18e7b
RK
1050 xm_file=pa/xm-pahpux.h
1051 xmake_file=pa/x-pa-hpux
75bffa71 1052 if test x$gas = xyes
46f18e7b
RK
1053 then
1054 tm_file="${tm_file} pa/pa-gas.h"
1055 fi
46f18e7b
RK
1056 install_headers_dir=install-headers-cpio
1057 use_collect2=yes
1058 ;;
1059 hppa1.0-*-hpux*)
0d381b47 1060 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hpux9.h"
46f18e7b
RK
1061 xm_file=pa/xm-pahpux.h
1062 xmake_file=pa/x-pa-hpux
75bffa71 1063 if test x$gas = xyes
46f18e7b
RK
1064 then
1065 tm_file="${tm_file} pa/pa-gas.h"
1066 fi
46f18e7b
RK
1067 install_headers_dir=install-headers-cpio
1068 use_collect2=yes
1069 ;;
18cae839 1070 hppa1.1-*-hiux* | hppa2*-*-hiux*)
13ee407e 1071 target_cpu_default="MASK_PA_11"
0d381b47 1072 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
46f18e7b
RK
1073 xm_file=pa/xm-pahpux.h
1074 xmake_file=pa/x-pa-hpux
75bffa71 1075 if test x$gas = xyes
46f18e7b
RK
1076 then
1077 tm_file="${tm_file} pa/pa-gas.h"
1078 fi
46f18e7b
RK
1079 install_headers_dir=install-headers-cpio
1080 use_collect2=yes
1081 ;;
1082 hppa1.0-*-hiux*)
0d381b47 1083 tm_file="${tm_file} pa/som.h pa/pa-hpux.h pa/pa-hiux.h"
46f18e7b
RK
1084 xm_file=pa/xm-pahpux.h
1085 xmake_file=pa/x-pa-hpux
75bffa71 1086 if test x$gas = xyes
46f18e7b
RK
1087 then
1088 tm_file="${tm_file} pa/pa-gas.h"
1089 fi
46f18e7b
RK
1090 install_headers_dir=install-headers-cpio
1091 use_collect2=yes
1092 ;;
1093 hppa*-*-lites*)
0d381b47 1094 tm_file="${tm_file} elfos.h pa/elf.h"
13ee407e 1095 target_cpu_default="MASK_PA_11"
46f18e7b 1096 use_collect2=yes
46f18e7b
RK
1097 ;;
1098 i370-*-mvs*)
1099 ;;
9b5c756a
JL
1100changequote(,)dnl
1101 i[34567]86-*-elf*)
1102changequote([,])dnl
1103 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h"
1104 tm_file=i386/i386elf.h
1105 tmake_file=i386/t-i386elf
1106 xmake_file=x-svr4
1107 ;;
75bffa71
ILT
1108changequote(,)dnl
1109 i[34567]86-ibm-aix*) # IBM PS/2 running AIX
1110changequote([,])dnl
1111 if test x$gas = xyes
46f18e7b
RK
1112 then
1113 tm_file=i386/aix386.h
1114 extra_parts="crtbegin.o crtend.o"
1115 tmake_file=i386/t-crtstuff
1116 else
1117 tm_file=i386/aix386ng.h
1118 use_collect2=yes
1119 fi
61536478
JL
1120 xm_file="xm-alloca.h i386/xm-aix.h ${xm_file}"
1121 xm_defines=USG
46f18e7b 1122 xmake_file=i386/x-aix
46f18e7b 1123 ;;
75bffa71
ILT
1124changequote(,)dnl
1125 i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4
1126changequote([,])dnl
61536478
JL
1127 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1128 xm_defines="USG POSIX SMALL_ARG_MAX"
46f18e7b 1129 xmake_file=i386/x-ncr3000
75bffa71 1130 if test x$stabs = xyes -a x$gas = xyes
46f18e7b
RK
1131 then
1132 tm_file=i386/sysv4gdb.h
1133 else
1134 tm_file=i386/sysv4.h
1135 fi
1136 extra_parts="crtbegin.o crtend.o"
1137 tmake_file=i386/t-crtpic
1138 ;;
75bffa71
ILT
1139changequote(,)dnl
1140 i[34567]86-next-*)
1141changequote([,])dnl
46f18e7b
RK
1142 tm_file=i386/next.h
1143 xm_file=i386/xm-next.h
1144 tmake_file=i386/t-next
1145 xmake_file=i386/x-next
1146 extra_objs=nextstep.o
750930c1 1147 extra_parts="crtbegin.o crtend.o"
75bffa71 1148 if test x$enable_threads = xyes; then
0bbb1697
RK
1149 thread_file='mach'
1150 fi
46f18e7b 1151 ;;
75bffa71
ILT
1152changequote(,)dnl
1153 i[34567]86-sequent-bsd*) # 80386 from Sequent
1154changequote([,])dnl
46f18e7b 1155 use_collect2=yes
75bffa71 1156 if test x$gas = xyes
46f18e7b
RK
1157 then
1158 tm_file=i386/seq-gas.h
1159 else
1160 tm_file=i386/sequent.h
1161 fi
1162 ;;
75bffa71
ILT
1163changequote(,)dnl
1164 i[34567]86-sequent-ptx1*)
1165changequote([,])dnl
61536478 1166 xm_defines="USG SVR3"
46f18e7b
RK
1167 xmake_file=i386/x-sysv3
1168 tm_file=i386/seq-sysv3.h
1169 tmake_file=i386/t-crtstuff
46f18e7b
RK
1170 extra_parts="crtbegin.o crtend.o"
1171 install_headers_dir=install-headers-cpio
46f18e7b 1172 ;;
75bffa71
ILT
1173changequote(,)dnl
1174 i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*)
1175changequote([,])dnl
61536478 1176 xm_defines="USG SVR3"
46f18e7b
RK
1177 xmake_file=i386/x-sysv3
1178 tm_file=i386/seq2-sysv3.h
1179 tmake_file=i386/t-crtstuff
1180 extra_parts="crtbegin.o crtend.o"
46f18e7b 1181 install_headers_dir=install-headers-cpio
46f18e7b 1182 ;;
75bffa71
ILT
1183changequote(,)dnl
1184 i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*)
1185changequote([,])dnl
61536478
JL
1186 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1187 xm_defines="USG POSIX SMALL_ARG_MAX"
46f18e7b
RK
1188 xmake_file=x-svr4
1189 tm_file=i386/ptx4-i.h
1190 tmake_file=t-svr4
1191 extra_parts="crtbegin.o crtend.o"
46f18e7b 1192 install_headers_dir=install-headers-cpio
46f18e7b
RK
1193 ;;
1194 i386-sun-sunos*) # Sun i386 roadrunner
61536478 1195 xm_defines=USG
46f18e7b
RK
1196 tm_file=i386/sun.h
1197 use_collect2=yes
1198 ;;
75bffa71
ILT
1199changequote(,)dnl
1200 i[34567]86-wrs-vxworks*)
1201changequote([,])dnl
9e89df50
MS
1202 tm_file=i386/vxi386.h
1203 tmake_file=i386/t-i386bare
28897609 1204 thread_file='vxworks'
9e89df50 1205 ;;
75bffa71
ILT
1206changequote(,)dnl
1207 i[34567]86-*-aout*)
1208changequote([,])dnl
46f18e7b
RK
1209 tm_file=i386/i386-aout.h
1210 tmake_file=i386/t-i386bare
1211 ;;
75bffa71
ILT
1212changequote(,)dnl
1213 i[34567]86-*-bsdi* | i[34567]86-*-bsd386*)
1214changequote([,])dnl
46f18e7b 1215 tm_file=i386/bsd386.h
46f18e7b
RK
1216# tmake_file=t-libc-ok
1217 ;;
75bffa71
ILT
1218changequote(,)dnl
1219 i[34567]86-*-bsd*)
1220changequote([,])dnl
46f18e7b 1221 tm_file=i386/386bsd.h
46f18e7b
RK
1222# tmake_file=t-libc-ok
1223# Next line turned off because both 386BSD and BSD/386 use GNU ld.
1224# use_collect2=yes
1225 ;;
75bffa71
ILT
1226changequote(,)dnl
1227 i[34567]86-*-freebsdelf*)
1228changequote([,])dnl
d0550c9b 1229 tm_file="i386/i386.h i386/att.h svr4.h i386/freebsd-elf.h i386/perform.h"
56830143 1230 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
d0550c9b 1231 tmake_file=t-freebsd
46f18e7b
RK
1232 gas=yes
1233 gnu_ld=yes
1234 stabs=yes
1235 ;;
75bffa71
ILT
1236changequote(,)dnl
1237 i[34567]86-*-freebsd*)
1238changequote([,])dnl
46f18e7b 1239 tm_file=i386/freebsd.h
d0550c9b 1240 tmake_file=t-freebsd
46f18e7b 1241 ;;
75bffa71 1242changequote(,)dnl
1b4a979b 1243 i[34567]86-*-netbsd*)
75bffa71 1244changequote([,])dnl
46f18e7b 1245 tm_file=i386/netbsd.h
e47f44f4 1246 tmake_file=t-netbsd
af0ca027 1247 use_collect2=yes
46f18e7b 1248 ;;
1b4a979b
ME
1249changequote(,)dnl
1250 i[34567]86-*-openbsd*)
1251changequote([,])dnl
1b4a979b
ME
1252 # we need collect2 until our bug is fixed...
1253 use_collect2=yes
1254 ;;
75bffa71
ILT
1255changequote(,)dnl
1256 i[34567]86-*-coff*)
1257changequote([,])dnl
46f18e7b
RK
1258 tm_file=i386/i386-coff.h
1259 tmake_file=i386/t-i386bare
1260 ;;
75bffa71
ILT
1261changequote(,)dnl
1262 i[34567]86-*-isc*) # 80386 running ISC system
1263changequote([,])dnl
61536478
JL
1264 xm_file="${xm_file} i386/xm-isc.h"
1265 xm_defines="USG SVR3"
46f18e7b 1266 case $machine in
75bffa71
ILT
1267changequote(,)dnl
1268 i[34567]86-*-isc[34]*)
1269changequote([,])dnl
46f18e7b
RK
1270 xmake_file=i386/x-isc3
1271 ;;
1272 *)
1273 xmake_file=i386/x-isc
1274 ;;
1275 esac
75bffa71 1276 if test x$gas = xyes -a x$stabs = xyes
46f18e7b
RK
1277 then
1278 tm_file=i386/iscdbx.h
1279 tmake_file=i386/t-svr3dbx
1280 extra_parts="svr3.ifile svr3z.ifile"
1281 else
1282 tm_file=i386/isccoff.h
1283 tmake_file=i386/t-crtstuff
1284 extra_parts="crtbegin.o crtend.o"
1285 fi
1286 install_headers_dir=install-headers-cpio
46f18e7b 1287 ;;
75bffa71
ILT
1288changequote(,)dnl
1289 i[34567]86-*-linux-gnuoldld*) # Intel 80386's running GNU/Linux
1290changequote([,])dnl # with a.out format using
61536478 1291 # pre BFD linkers
46f18e7b
RK
1292 xmake_file=x-linux-aout
1293 tmake_file="t-linux-aout i386/t-crtstuff"
1294 tm_file=i386/linux-oldld.h
46f18e7b 1295 gnu_ld=yes
f906a0f0 1296 float_format=i386
46f18e7b 1297 ;;
75bffa71
ILT
1298changequote(,)dnl
1299 i[34567]86-*-linux-gnuaout*) # Intel 80386's running GNU/Linux
1300changequote([,])dnl # with a.out format
46f18e7b
RK
1301 xmake_file=x-linux-aout
1302 tmake_file="t-linux-aout i386/t-crtstuff"
1303 tm_file=i386/linux-aout.h
46f18e7b 1304 gnu_ld=yes
f906a0f0 1305 float_format=i386
46f18e7b 1306 ;;
75bffa71
ILT
1307changequote(,)dnl
1308 i[34567]86-*-linux-gnulibc1) # Intel 80386's running GNU/Linux
1309changequote([,])dnl # with ELF format using the
61536478
JL
1310 # GNU/Linux C library 5
1311 xmake_file=x-linux
1312 tm_file=i386/linux.h
78b9f8df
RK
1313 tmake_file="t-linux t-linux-gnulibc1 i386/t-crtstuff"
1314 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
78b9f8df 1315 gnu_ld=yes
f906a0f0 1316 float_format=i386
75bffa71 1317 if test x$enable_threads = xyes; then
78b9f8df
RK
1318 thread_file='single'
1319 fi
1320 ;;
75bffa71
ILT
1321changequote(,)dnl
1322 i[34567]86-*-linux-gnu*) # Intel 80386's running GNU/Linux
1323changequote([,])dnl # with ELF format using glibc 2
61536478
JL
1324 # aka GNU/Linux C library 6
1325 xmake_file=x-linux
46f18e7b
RK
1326 tm_file=i386/linux.h
1327 tmake_file="t-linux i386/t-crtstuff"
1328 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
46f18e7b 1329 gnu_ld=yes
f906a0f0 1330 float_format=i386
75bffa71 1331 if test x$enable_threads = xyes; then
78b9f8df
RK
1332 thread_file='posix'
1333 fi
46f18e7b 1334 ;;
75bffa71
ILT
1335changequote(,)dnl
1336 i[34567]86-*-gnu*)
cd9e5e7c 1337 float_format=i386
75bffa71 1338changequote([,])dnl
61536478 1339 ;;
75bffa71
ILT
1340changequote(,)dnl
1341 i[34567]86-go32-msdos | i[34567]86-*-go32*)
1342changequote([,])dnl
77d787fa 1343 echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead."
866fb7cc 1344 exit 1
46f18e7b 1345 ;;
75bffa71
ILT
1346changequote(,)dnl
1347 i[34567]86-pc-msdosdjgpp*)
1348changequote([,])dnl
77d787fa
ME
1349 xm_file=i386/xm-djgpp.h
1350 tm_file=i386/djgpp.h
1351 tmake_file=i386/t-djgpp
1352 xmake_file=i386/x-djgpp
61536478
JL
1353 gnu_ld=yes
1354 gas=yes
dedcc399 1355 exeext=.exe
77d787fa 1356 case $host in *pc-msdosdjgpp*)
dedcc399
ME
1357 target_alias=djgpp
1358 ;;
1359 esac
46f18e7b 1360 ;;
75bffa71
ILT
1361changequote(,)dnl
1362 i[34567]86-moss-msdos* | i[34567]86-*-moss*)
1363changequote([,])dnl
46f18e7b
RK
1364 tm_file=i386/moss.h
1365 tmake_file=t-libc-ok
46f18e7b
RK
1366 gnu_ld=yes
1367 gas=yes
1368 ;;
75bffa71
ILT
1369changequote(,)dnl
1370 i[34567]86-*-lynxos*)
1371changequote([,])dnl
1372 if test x$gas = xyes
46f18e7b
RK
1373 then
1374 tm_file=i386/lynx.h
1375 else
1376 tm_file=i386/lynx-ng.h
1377 fi
1378 xm_file=i386/xm-lynx.h
1379 tmake_file=i386/t-i386bare
1380 xmake_file=x-lynx
1381 ;;
75bffa71
ILT
1382changequote(,)dnl
1383 i[34567]86-*-mach*)
1384changequote([,])dnl
46f18e7b
RK
1385 tm_file=i386/mach.h
1386# tmake_file=t-libc-ok
1387 use_collect2=yes
1388 ;;
75bffa71
ILT
1389changequote(,)dnl
1390 i[34567]86-*-osfrose*) # 386 using OSF/rose
1391changequote([,])dnl
1392 if test x$elf = xyes
46f18e7b
RK
1393 then
1394 tm_file=i386/osfelf.h
1395 use_collect2=
1396 else
1397 tm_file=i386/osfrose.h
1398 use_collect2=yes
1399 fi
61536478 1400 xm_file="i386/xm-osf.h ${xm_file}"
46f18e7b
RK
1401 xmake_file=i386/x-osfrose
1402 tmake_file=i386/t-osf
1403 extra_objs=halfpic.o
1404 ;;
75bffa71
ILT
1405changequote(,)dnl
1406 i[34567]86-go32-rtems*)
1407changequote([,])dnl
46f18e7b
RK
1408 cpu_type=i386
1409 xm_file=i386/xm-go32.h
1410 tm_file=i386/go32-rtems.h
1411 tmake_file="i386/t-go32 t-rtems"
1412 ;;
75bffa71
ILT
1413changequote(,)dnl
1414 i[34567]86-*-rtemself*)
1415changequote([,])dnl
f5963e61
JL
1416 cpu_type=i386
1417 tm_file=i386/rtemself.h
1418 tmake_file="i386/t-i386bare t-rtems"
1419 ;;
75bffa71
ILT
1420changequote(,)dnl
1421 i[34567]86-*-rtems*)
1422changequote([,])dnl
46f18e7b
RK
1423 cpu_type=i386
1424 tm_file=i386/rtems.h
1425 tmake_file="i386/t-i386bare t-rtems"
1426 ;;
75bffa71
ILT
1427changequote(,)dnl
1428 i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5
1429changequote([,])dnl
61536478
JL
1430 xm_file="xm-siglist.h xm-alloca.h ${xm_file} i386/xm-sco5.h"
1431 xm_defines="USG SVR3"
46f18e7b 1432 xmake_file=i386/x-sco5
f6857708 1433 install_headers_dir=install-headers-cpio
46f18e7b 1434 tm_file=i386/sco5.h
75bffa71 1435 if test x$gas = xyes
f7c9c2bb
RL
1436 then
1437 tm_file="i386/sco5gas.h ${tm_file}"
1438 tmake_file=i386/t-sco5gas
1439 else
1440 tmake_file=i386/t-sco5
1441 fi
42902a72 1442 extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
46f18e7b 1443 ;;
75bffa71
ILT
1444changequote(,)dnl
1445 i[34567]86-*-sco3.2v4*) # 80386 running SCO 3.2v4 system
1446changequote([,])dnl
61536478
JL
1447 xm_file="${xm_file} i386/xm-sco.h"
1448 xm_defines="USG SVR3 BROKEN_LDEXP SMALL_ARG_MAX NO_SYS_SIGLIST"
46f18e7b 1449 xmake_file=i386/x-sco4
46f18e7b 1450 install_headers_dir=install-headers-cpio
75bffa71 1451 if test x$stabs = xyes
46f18e7b
RK
1452 then
1453 tm_file=i386/sco4dbx.h
1454 tmake_file=i386/t-svr3dbx
1455 extra_parts="svr3.ifile svr3z.rfile"
1456 else
1457 tm_file=i386/sco4.h
1458 tmake_file=i386/t-crtstuff
1459 extra_parts="crtbegin.o crtend.o"
1460 fi
1461 truncate_target=yes
1462 ;;
75bffa71
ILT
1463changequote(,)dnl
1464 i[34567]86-*-sco*) # 80386 running SCO system
1465changequote([,])dnl
46f18e7b
RK
1466 xm_file=i386/xm-sco.h
1467 xmake_file=i386/x-sco
46f18e7b 1468 install_headers_dir=install-headers-cpio
75bffa71 1469 if test x$stabs = xyes
46f18e7b
RK
1470 then
1471 tm_file=i386/scodbx.h
1472 tmake_file=i386/t-svr3dbx
1473 extra_parts="svr3.ifile svr3z.rfile"
1474 else
1475 tm_file=i386/sco.h
1476 extra_parts="crtbegin.o crtend.o"
1477 tmake_file=i386/t-crtstuff
1478 fi
1479 truncate_target=yes
1480 ;;
75bffa71
ILT
1481changequote(,)dnl
1482 i[34567]86-*-solaris2*)
1483changequote([,])dnl
61536478
JL
1484 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1485 xm_defines="USG POSIX SMALL_ARG_MAX"
75bffa71 1486 if test x$stabs = xyes
46f18e7b 1487 then
dec3e070 1488 tm_file=i386/sol2dbg.h
46f18e7b
RK
1489 else
1490 tm_file=i386/sol2.h
1491 fi
1492 tmake_file=i386/t-sol2
61536478 1493 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
46f18e7b 1494 xmake_file=x-svr4
75bffa71 1495 if test x$enable_threads = xyes; then
0bbb1697
RK
1496 thread_file='solaris'
1497 fi
46f18e7b 1498 ;;
75bffa71
ILT
1499changequote(,)dnl
1500 i[34567]86-*-sysv5*) # Intel x86 on System V Release 5
1501changequote([,])dnl
a4cbe801
RL
1502 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1503 xm_defines="USG POSIX"
87e11b70 1504 tm_file=i386/sysv5.h
75bffa71 1505 if test x$stabs = xyes
fe07d4c1
RL
1506 then
1507 tm_file="${tm_file} dbx.h"
1508 fi
1509 tmake_file=i386/t-crtpic
1510 xmake_file=x-svr4
1511 extra_parts="crtbegin.o crtend.o"
01e39005
RL
1512 if test x$enable_threads = xyes; then
1513 thread_file='posix'
1514 fi
fe07d4c1 1515 ;;
75bffa71
ILT
1516changequote(,)dnl
1517 i[34567]86-*-sysv4*) # Intel 80386's running system V.4
1518changequote([,])dnl
61536478
JL
1519 xm_file="xm-siglist.h xm-alloca.h ${xm_file}"
1520 xm_defines="USG POSIX SMALL_ARG_MAX"
46f18e7b 1521 tm_file=i386/sysv4.h
75bffa71 1522 if test x$stabs = xyes
46f18e7b
RK
1523 then
1524 tm_file="${tm_file} dbx.h"
1525 fi
1526 tmake_file=i386/t-crtpic
1527 xmake_file=x-svr4
1528 extra_parts="crtbegin.o crtend.o"
1529 ;;
5aaf0123
RL
1530changequote(,)dnl
1531 i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit
1532changequote([,])dnl
1533 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1534 xm_defines="USG POSIX"
1535 tm_file=i386/udk.h
1536 tmake_file="i386/t-crtpic i386/t-udk"
1537 xmake_file=x-svr4
1538 extra_parts="crtbegin.o crtend.o"
fd9c643f 1539 install_headers_dir=install-headers-cpio
5aaf0123 1540 ;;
75bffa71
ILT
1541changequote(,)dnl
1542 i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+
1543changequote([,])dnl
f5963e61
JL
1544 cpu_type=i386
1545 xm_file="${xm_file} xm-svr4.h i386/xm-sysv4.h i386/xm-osf1elf.h"
1546 xm_defines="USE_C_ALLOCA SMALL_ARG_MAX"
75bffa71 1547 if test x$stabs = xyes
f5963e61
JL
1548 then
1549 tm_file=i386/osf1elfgdb.h
1550 else
1551 tm_file=i386/osf1elf.h
1552 fi
1553 tmake_file=i386/t-osf1elf
1554 xmake_file=i386/x-osf1elf
1555 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
1556 ;;
75bffa71
ILT
1557changequote(,)dnl
1558 i[34567]86-*-sysv*) # Intel 80386's running system V
1559changequote([,])dnl
61536478 1560 xm_defines="USG SVR3"
46f18e7b 1561 xmake_file=i386/x-sysv3
75bffa71 1562 if test x$gas = xyes
46f18e7b 1563 then
75bffa71 1564 if test x$stabs = xyes
46f18e7b
RK
1565 then
1566 tm_file=i386/svr3dbx.h
1567 tmake_file=i386/t-svr3dbx
1568 extra_parts="svr3.ifile svr3z.rfile"
1569 else
1570 tm_file=i386/svr3gas.h
1571 extra_parts="crtbegin.o crtend.o"
1572 tmake_file=i386/t-crtstuff
1573 fi
1574 else
1575 tm_file=i386/sysv3.h
1576 extra_parts="crtbegin.o crtend.o"
1577 tmake_file=i386/t-crtstuff
1578 fi
1579 ;;
1580 i386-*-vsta) # Intel 80386's running VSTa kernel
f5963e61 1581 xm_file="${xm_file} i386/xm-vsta.h"
46f18e7b
RK
1582 tm_file=i386/vsta.h
1583 tmake_file=i386/t-vsta
1584 xmake_file=i386/x-vsta
1585 ;;
75bffa71
ILT
1586changequote(,)dnl
1587 i[34567]86-*-win32)
1588changequote([,])dnl
cae21ae8
GN
1589 xm_file="${xm_file} i386/xm-cygwin.h"
1590 tmake_file=i386/t-cygwin
84530511 1591 tm_file=i386/win32.h
cae21ae8 1592 xmake_file=i386/x-cygwin
84530511 1593 extra_objs=winnt.o
75bffa71 1594 if test x$enable_threads = xyes; then
84530511
SC
1595 thread_file='win32'
1596 fi
1597 exeext=.exe
1598 ;;
75bffa71 1599changequote(,)dnl
cae21ae8 1600 i[34567]86-*-pe | i[34567]86-*-cygwin*)
75bffa71 1601changequote([,])dnl
cae21ae8
GN
1602 xm_file="${xm_file} i386/xm-cygwin.h"
1603 tmake_file=i386/t-cygwin
1604 tm_file=i386/cygwin.h
1605 xmake_file=i386/x-cygwin
46f18e7b 1606 extra_objs=winnt.o
75bffa71 1607 if test x$enable_threads = xyes; then
0bbb1697
RK
1608 thread_file='win32'
1609 fi
46f18e7b
RK
1610 exeext=.exe
1611 ;;
75bffa71
ILT
1612changequote(,)dnl
1613 i[34567]86-*-mingw32*)
1614changequote([,])dnl
5dfe8508
RK
1615 tm_file=i386/mingw32.h
1616 xm_file="${xm_file} i386/xm-mingw32.h"
cae21ae8 1617 tmake_file="i386/t-cygwin i386/t-mingw32"
5dfe8508 1618 extra_objs=winnt.o
cae21ae8 1619 xmake_file=i386/x-cygwin
75bffa71 1620 if test x$enable_threads = xyes; then
0bbb1697
RK
1621 thread_file='win32'
1622 fi
5dfe8508 1623 exeext=.exe
61536478
JL
1624 case $machine in
1625 *mingw32msv*)
1626 ;;
1627 *minwg32crt* | *mingw32*)
1628 tm_file="${tm_file} i386/crtdll.h"
1629 ;;
1630 esac
5dfe8508 1631 ;;
b27d2bd5
MK
1632changequote(,)dnl
1633 i[34567]86-*-uwin*)
1634changequote([,])dnl
1635 tm_file=i386/uwin.h
1636 xm_file="${xm_file} i386/xm-uwin.h"
1637 xm_defines="USG NO_STAB_H NO_SYS_SIGLIST"
1638 tmake_file="i386/t-cygwin i386/t-uwin"
1639 extra_objs=winnt.o
1640 xmake_file=i386/x-cygwin
b27d2bd5
MK
1641 if test x$enable_threads = xyes; then
1642 thread_file='win32'
1643 fi
1644 exeext=.exe
1645 ;;
052dbd9e
MK
1646changequote(,)dnl
1647 i[34567]86-*-interix*)
1648changequote([,])dnl
615c8231 1649 tm_file="i386/i386-interix.h interix.h"
97ad1d43 1650 xm_file="i386/xm-i386-interix.h xm-interix.h"
052dbd9e
MK
1651 xm_defines="USG NO_SYS_SIGLIST"
1652 tmake_file="i386/t-interix"
1653 extra_objs=interix.o
1654 xmake_file=x-interix
615c8231 1655 if test x$enable_threads = xyes ; then
052dbd9e
MK
1656 thread_file='posix'
1657 fi
615c8231 1658 if test x$stabs = xyes ; then
052dbd9e
MK
1659 tm_file="${tm_file} dbxcoff.h"
1660 fi
1661 ;;
75bffa71
ILT
1662changequote(,)dnl
1663 i[34567]86-*-winnt3*)
1664changequote([,])dnl
46f18e7b
RK
1665 tm_file=i386/win-nt.h
1666 out_file=i386/i386.c
61536478 1667 xm_file="xm-winnt.h ${xm_file}"
46f18e7b
RK
1668 xmake_file=winnt/x-winnt
1669 tmake_file=i386/t-winnt
1670 extra_host_objs="winnt.o oldnames.o"
1671 extra_gcc_objs="spawnv.o oldnames.o"
75bffa71 1672 if test x$gnu_ld != xyes
46f18e7b
RK
1673 then
1674 extra_programs=ld.exe
1675 fi
75bffa71 1676 if test x$enable_threads = xyes; then
0bbb1697
RK
1677 thread_file='win32'
1678 fi
46f18e7b 1679 ;;
75bffa71
ILT
1680changequote(,)dnl
1681 i[34567]86-dg-dgux*)
1682changequote([,])dnl
61536478
JL
1683 xm_file="xm-alloca.h xm-siglist.h ${xm_file}"
1684 xm_defines="USG POSIX"
46f18e7b
RK
1685 out_file=i386/dgux.c
1686 tm_file=i386/dgux.h
1687 tmake_file=i386/t-dgux
1688 xmake_file=i386/x-dgux
46f18e7b
RK
1689 install_headers_dir=install-headers-cpio
1690 ;;
1691 i860-alliant-*) # Alliant FX/2800
1692 tm_file="${tm_file} svr4.h i860/sysv4.h i860/fx2800.h"
956d6950 1693 xm_file="${xm_file}"
46f18e7b
RK
1694 xmake_file=i860/x-fx2800
1695 tmake_file=i860/t-fx2800
1696 extra_parts="crtbegin.o crtend.o"
1697 ;;
1698 i860-*-bsd*)
1699 tm_file="${tm_file} i860/bsd.h"
75bffa71 1700 if test x$gas = xyes
46f18e7b
RK
1701 then
1702 tm_file="${tm_file} i860/bsd-gas.h"
1703 fi
1704 use_collect2=yes
1705 ;;
1706 i860-*-mach*)
1707 tm_file="${tm_file} i860/mach.h"
1708 tmake_file=t-libc-ok
1709 ;;
1710 i860-*-osf*) # Intel Paragon XP/S, OSF/1AD
1711 tm_file="${tm_file} svr3.h i860/paragon.h"
61536478 1712 xm_defines="USG SVR3"
46f18e7b 1713 tmake_file=t-osf
46f18e7b
RK
1714 ;;
1715 i860-*-sysv3*)
1716 tm_file="${tm_file} svr3.h i860/sysv3.h"
61536478 1717 xm_defines="USG SVR3"
46f18e7b
RK
1718 xmake_file=i860/x-sysv3
1719 extra_parts="crtbegin.o crtend.o"
1720 ;;
1721 i860-*-sysv4*)
1722 tm_file="${tm_file} svr4.h i860/sysv4.h"
61536478 1723 xm_defines="USG SVR3"
46f18e7b
RK
1724 xmake_file=i860/x-sysv4
1725 tmake_file=t-svr4
1726 extra_parts="crtbegin.o crtend.o"
1727 ;;
1728 i960-wrs-vxworks5 | i960-wrs-vxworks5.0*)
1729 tm_file="${tm_file} i960/vx960.h"
1730 tmake_file=i960/t-vxworks960
1731 use_collect2=yes
7cc34889 1732 thread_file='vxworks'
46f18e7b 1733 ;;
a0372c94 1734 i960-wrs-vxworks5* | i960-wrs-vxworks)
46f18e7b
RK
1735 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h"
1736 tmake_file=i960/t-vxworks960
1737 use_collect2=yes
7cc34889 1738 thread_file='vxworks'
46f18e7b
RK
1739 ;;
1740 i960-wrs-vxworks*)
1741 tm_file="${tm_file} i960/vx960.h"
1742 tmake_file=i960/t-vxworks960
1743 use_collect2=yes
7cc34889 1744 thread_file='vxworks'
46f18e7b
RK
1745 ;;
1746 i960-*-coff*)
1747 tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h"
1748 tmake_file=i960/t-960bare
1749 use_collect2=yes
1750 ;;
1751 i960-*-rtems)
1752 tmake_file="i960/t-960bare t-rtems"
1753 tm_file="${tm_file} dbxcoff.h i960/rtems.h"
1754 use_collect2=yes
1755 ;;
1756 i960-*-*) # Default i960 environment.
1757 use_collect2=yes
1758 ;;
dec3e070
JW
1759 m32r-*-elf*)
1760 extra_parts="crtinit.o crtfini.o"
1761 ;;
46f18e7b
RK
1762 m68000-convergent-sysv*)
1763 tm_file=m68k/ctix.h
61536478
JL
1764 xm_file="m68k/xm-3b1.h ${xm_file}"
1765 xm_defines=USG
46f18e7b
RK
1766 use_collect2=yes
1767 extra_headers=math-68881.h
1768 ;;
1769 m68000-hp-bsd*) # HP 9000/200 running BSD
1770 tm_file=m68k/hp2bsd.h
1771 xmake_file=m68k/x-hp2bsd
1772 use_collect2=yes
1773 extra_headers=math-68881.h
1774 ;;
1775 m68000-hp-hpux*) # HP 9000 series 300
61536478
JL
1776 xm_file="xm_alloca.h ${xm_file}"
1777 xm_defines="USG NO_SYS_SIGLIST"
75bffa71 1778 if test x$gas = xyes
46f18e7b
RK
1779 then
1780 xmake_file=m68k/x-hp320g
1781 tm_file=m68k/hp310g.h
1782 else
1783 xmake_file=m68k/x-hp320
1784 tm_file=m68k/hp310.h
1785 fi
46f18e7b
RK
1786 install_headers_dir=install-headers-cpio
1787 use_collect2=yes
1788 extra_headers=math-68881.h
1789 ;;
1790 m68000-sun-sunos3*)
1791 tm_file=m68k/sun2.h
1792 use_collect2=yes
1793 extra_headers=math-68881.h
1794 ;;
1795 m68000-sun-sunos4*)
1796 tm_file=m68k/sun2o4.h
1797 use_collect2=yes
1798 extra_headers=math-68881.h
1799 ;;
1800 m68000-att-sysv*)
61536478
JL
1801 xm_file="m68k/xm-3b1.h ${xm_file}"
1802 xm_defines=USG
75bffa71 1803 if test x$gas = xyes
46f18e7b
RK
1804 then
1805 tm_file=m68k/3b1g.h
1806 else
1807 tm_file=m68k/3b1.h
1808 fi
1809 use_collect2=yes
1810 extra_headers=math-68881.h
1811 ;;
1812 m68k-apple-aux*) # Apple Macintosh running A/UX
61536478 1813 xm_defines="USG AUX"
46f18e7b 1814 tmake_file=m68k/t-aux
46f18e7b
RK
1815 install_headers_dir=install-headers-cpio
1816 extra_headers=math-68881.h
1817 extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o"
1818 tm_file=
75bffa71 1819 if test "$gnu_ld" = yes
46f18e7b
RK
1820 then
1821 tm_file="${tm_file} m68k/auxgld.h"
1822 else
1823 tm_file="${tm_file} m68k/auxld.h"
1824 fi
75bffa71 1825 if test "$gas" = yes
46f18e7b
RK
1826 then
1827 tm_file="${tm_file} m68k/auxgas.h"
1828 else
1829 tm_file="${tm_file} m68k/auxas.h"
1830 fi
1831 tm_file="${tm_file} m68k/a-ux.h"
c8db55b0 1832 float_format=m68k
46f18e7b
RK
1833 ;;
1834 m68k-apollo-*)
1835 tm_file=m68k/apollo68.h
1836 xmake_file=m68k/x-apollo68
1837 use_collect2=yes
1838 extra_headers=math-68881.h
c8db55b0 1839 float_format=m68k
46f18e7b
RK
1840 ;;
1841 m68k-altos-sysv*) # Altos 3068
75bffa71 1842 if test x$gas = xyes
46f18e7b
RK
1843 then
1844 tm_file=m68k/altos3068.h
61536478 1845 xm_defines=USG
46f18e7b
RK
1846 else
1847 echo "The Altos is supported only with the GNU assembler" 1>&2
1848 exit 1
1849 fi
1850 extra_headers=math-68881.h
1851 ;;
1852 m68k-bull-sysv*) # Bull DPX/2
75bffa71 1853 if test x$gas = xyes
46f18e7b 1854 then
75bffa71 1855 if test x$stabs = xyes
46f18e7b
RK
1856 then
1857 tm_file=m68k/dpx2cdbx.h
1858 else
1859 tm_file=m68k/dpx2g.h
1860 fi
1861 else
1862 tm_file=m68k/dpx2.h
1863 fi
61536478
JL
1864 xm_file="xm-alloca.h ${xm_file}"
1865 xm_defines=USG
46f18e7b
RK
1866 xmake_file=m68k/x-dpx2
1867 use_collect2=yes
1868 extra_headers=math-68881.h
1869 ;;
1870 m68k-atari-sysv4*) # Atari variant of V.4.
1871 tm_file=m68k/atari.h
61536478
JL
1872 xm_file="xm-alloca.h ${xm_file}"
1873 xm_defines="USG FULL_PROTOTYPES"
46f18e7b
RK
1874 tmake_file=t-svr4
1875 extra_parts="crtbegin.o crtend.o"
1876 extra_headers=math-68881.h
c8db55b0 1877 float_format=m68k
46f18e7b
RK
1878 ;;
1879 m68k-motorola-sysv*)
1880 tm_file=m68k/mot3300.h
61536478
JL
1881 xm_file="xm-alloca.h m68k/xm-mot3300.h ${xm_file}"
1882 xm_defines=NO_SYS_SIGLIST
75bffa71 1883 if test x$gas = xyes
46f18e7b
RK
1884 then
1885 xmake_file=m68k/x-mot3300-gas
75bffa71 1886 if test x$gnu_ld = xyes
46f18e7b
RK
1887 then
1888 tmake_file=m68k/t-mot3300-gald
1889 else
1890 tmake_file=m68k/t-mot3300-gas
1891 use_collect2=yes
1892 fi
1893 else
1894 xmake_file=m68k/x-mot3300
75bffa71 1895 if test x$gnu_ld = xyes
46f18e7b
RK
1896 then
1897 tmake_file=m68k/t-mot3300-gld
1898 else
1899 tmake_file=m68k/t-mot3300
1900 use_collect2=yes
1901 fi
1902 fi
1903 gdb_needs_out_file_path=yes
1904 extra_parts="crt0.o mcrt0.o"
1905 extra_headers=math-68881.h
c8db55b0 1906 float_format=m68k
46f18e7b
RK
1907 ;;
1908 m68k-ncr-sysv*) # NCR Tower 32 SVR3
1909 tm_file=m68k/tower-as.h
61536478 1910 xm_defines="USG SVR3"
46f18e7b
RK
1911 xmake_file=m68k/x-tower
1912 extra_parts="crtbegin.o crtend.o"
1913 extra_headers=math-68881.h
1914 ;;
1915 m68k-plexus-sysv*)
1916 tm_file=m68k/plexus.h
61536478
JL
1917 xm_file="xm-alloca.h m68k/xm-plexus.h ${xm_file}"
1918 xm_defines=USG
46f18e7b
RK
1919 use_collect2=yes
1920 extra_headers=math-68881.h
1921 ;;
1922 m68k-tti-*)
1923 tm_file=m68k/pbb.h
61536478
JL
1924 xm_file="xm-alloca.h ${xm_file}"
1925 xm_defines=USG
46f18e7b
RK
1926 extra_headers=math-68881.h
1927 ;;
1928 m68k-crds-unos*)
61536478
JL
1929 xm_file="xm-alloca.h m68k/xm-crds.h ${xm_file}"
1930 xm_defines="USG unos"
46f18e7b
RK
1931 xmake_file=m68k/x-crds
1932 tm_file=m68k/crds.h
46f18e7b
RK
1933 use_collect2=yes
1934 extra_headers=math-68881.h
1935 ;;
1936 m68k-cbm-sysv4*) # Commodore variant of V.4.
1937 tm_file=m68k/amix.h
61536478
JL
1938 xm_file="xm-alloca.h ${xm_file}"
1939 xm_defines="USG FULL_PROTOTYPES"
46f18e7b
RK
1940 xmake_file=m68k/x-amix
1941 tmake_file=t-svr4
1942 extra_parts="crtbegin.o crtend.o"
1943 extra_headers=math-68881.h
c8db55b0 1944 float_format=m68k
46f18e7b
RK
1945 ;;
1946 m68k-ccur-rtu)
1947 tm_file=m68k/ccur-GAS.h
1948 xmake_file=m68k/x-ccur
1949 extra_headers=math-68881.h
1950 use_collect2=yes
c8db55b0 1951 float_format=m68k
46f18e7b
RK
1952 ;;
1953 m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd
1954 tm_file=m68k/hp3bsd44.h
c83fe036 1955 xmake_file=m68k/x-hp3bsd44
46f18e7b
RK
1956 use_collect2=yes
1957 extra_headers=math-68881.h
c8db55b0 1958 float_format=m68k
46f18e7b
RK
1959 ;;
1960 m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix
1961 tm_file=m68k/hp3bsd.h
1962 use_collect2=yes
1963 extra_headers=math-68881.h
c8db55b0 1964 float_format=m68k
46f18e7b
RK
1965 ;;
1966 m68k-isi-bsd*)
75bffa71 1967 if test x$with_fp = xno
46f18e7b
RK
1968 then
1969 tm_file=m68k/isi-nfp.h
1970 else
1971 tm_file=m68k/isi.h
c8db55b0 1972 float_format=m68k
46f18e7b
RK
1973 fi
1974 use_collect2=yes
1975 extra_headers=math-68881.h
1976 ;;
1977 m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7.
61536478
JL
1978 xm_file="xm_alloca.h ${xm_file}"
1979 xm_defines="USG NO_SYS_SIGLIST"
75bffa71 1980 if test x$gas = xyes
46f18e7b
RK
1981 then
1982 xmake_file=m68k/x-hp320g
1983 tm_file=m68k/hp320g.h
1984 else
1985 xmake_file=m68k/x-hp320
1986 tm_file=m68k/hpux7.h
1987 fi
46f18e7b
RK
1988 install_headers_dir=install-headers-cpio
1989 use_collect2=yes
1990 extra_headers=math-68881.h
c8db55b0 1991 float_format=m68k
46f18e7b
RK
1992 ;;
1993 m68k-hp-hpux*) # HP 9000 series 300
61536478
JL
1994 xm_file="xm_alloca.h ${xm_file}"
1995 xm_defines="USG NO_SYS_SIGLIST"
75bffa71 1996 if test x$gas = xyes
46f18e7b
RK
1997 then
1998 xmake_file=m68k/x-hp320g
1999 tm_file=m68k/hp320g.h
2000 else
2001 xmake_file=m68k/x-hp320
2002 tm_file=m68k/hp320.h
2003 fi
46f18e7b
RK
2004 install_headers_dir=install-headers-cpio
2005 use_collect2=yes
2006 extra_headers=math-68881.h
c8db55b0 2007 float_format=m68k
46f18e7b
RK
2008 ;;
2009 m68k-sun-mach*)
2010 tm_file=m68k/sun3mach.h
2011 use_collect2=yes
2012 extra_headers=math-68881.h
c8db55b0 2013 float_format=m68k
46f18e7b
RK
2014 ;;
2015 m68k-sony-newsos3*)
75bffa71 2016 if test x$gas = xyes
46f18e7b
RK
2017 then
2018 tm_file=m68k/news3gas.h
2019 else
2020 tm_file=m68k/news3.h
2021 fi
2022 use_collect2=yes
2023 extra_headers=math-68881.h
c8db55b0 2024 float_format=m68k
46f18e7b
RK
2025 ;;
2026 m68k-sony-bsd* | m68k-sony-newsos*)
75bffa71 2027 if test x$gas = xyes
46f18e7b
RK
2028 then
2029 tm_file=m68k/newsgas.h
2030 else
2031 tm_file=m68k/news.h
2032 fi
2033 use_collect2=yes
2034 extra_headers=math-68881.h
c8db55b0 2035 float_format=m68k
46f18e7b
RK
2036 ;;
2037 m68k-next-nextstep2*)
2038 tm_file=m68k/next21.h
61536478 2039 xm_file="m68k/xm-next.h ${xm_file}"
46f18e7b
RK
2040 tmake_file=m68k/t-next
2041 xmake_file=m68k/x-next
2042 extra_objs=nextstep.o
2043 extra_headers=math-68881.h
2044 use_collect2=yes
c8db55b0 2045 float_format=m68k
46f18e7b
RK
2046 ;;
2047 m68k-next-nextstep3*)
2048 tm_file=m68k/next.h
61536478 2049 xm_file="m68k/xm-next.h ${xm_file}"
46f18e7b
RK
2050 tmake_file=m68k/t-next
2051 xmake_file=m68k/x-next
2052 extra_objs=nextstep.o
750930c1 2053 extra_parts="crtbegin.o crtend.o"
46f18e7b 2054 extra_headers=math-68881.h
c8db55b0 2055 float_format=m68k
75bffa71 2056 if test x$enable_threads = xyes; then
0bbb1697
RK
2057 thread_file='mach'
2058 fi
46f18e7b
RK
2059 ;;
2060 m68k-sun-sunos3*)
75bffa71 2061 if test x$with_fp = xno
46f18e7b
RK
2062 then
2063 tm_file=m68k/sun3n3.h
2064 else
2065 tm_file=m68k/sun3o3.h
c8db55b0 2066 float_format=m68k
46f18e7b
RK
2067 fi
2068 use_collect2=yes
2069 extra_headers=math-68881.h
2070 ;;
2071 m68k-sun-sunos*) # For SunOS 4 (the default).
75bffa71 2072 if test x$with_fp = xno
46f18e7b
RK
2073 then
2074 tm_file=m68k/sun3n.h
2075 else
2076 tm_file=m68k/sun3.h
c8db55b0 2077 float_format=m68k
46f18e7b 2078 fi
46f18e7b
RK
2079 use_collect2=yes
2080 extra_headers=math-68881.h
2081 ;;
2082 m68k-wrs-vxworks*)
2083 tm_file=m68k/vxm68k.h
2084 tmake_file=m68k/t-vxworks68
2085 extra_headers=math-68881.h
7cc34889 2086 thread_file='vxworks'
c8db55b0 2087 float_format=m68k
46f18e7b
RK
2088 ;;
2089 m68k-*-aout*)
2090 tmake_file=m68k/t-m68kbare
2091 tm_file="m68k/m68k-aout.h libgloss.h"
2092 extra_headers=math-68881.h
c8db55b0 2093 float_format=m68k
46f18e7b
RK
2094 ;;
2095 m68k-*-coff*)
2096 tmake_file=m68k/t-m68kbare
2097 tm_file="m68k/m68k-coff.h dbx.h libgloss.h"
2098 extra_headers=math-68881.h
c8db55b0 2099 float_format=m68k
46f18e7b 2100 ;;
d1be3be3 2101 m68020-*-elf* | m68k-*-elf*)
7aae67a2 2102 tm_file="m68k/m68020-elf.h"
d1be3be3
JW
2103 xm_file=m68k/xm-m68kv.h
2104 tmake_file=m68k/t-m68kelf
2105 header_files=math-68881.h
2106 ;;
46f18e7b 2107 m68k-*-lynxos*)
75bffa71 2108 if test x$gas = xyes
46f18e7b
RK
2109 then
2110 tm_file=m68k/lynx.h
2111 else
2112 tm_file=m68k/lynx-ng.h
2113 fi
2114 xm_file=m68k/xm-lynx.h
2115 xmake_file=x-lynx
2116 tmake_file=m68k/t-lynx
2117 extra_headers=math-68881.h
c8db55b0 2118 float_format=m68k
46f18e7b 2119 ;;
58600d24 2120 m68k*-*-netbsd*)
46f18e7b 2121 tm_file=m68k/netbsd.h
e47f44f4 2122 tmake_file=t-netbsd
c8db55b0 2123 float_format=m68k
af0ca027 2124 use_collect2=yes
46f18e7b 2125 ;;
1b4a979b
ME
2126 m68k*-*-openbsd*)
2127 float_format=m68k
2128 # we need collect2 until our bug is fixed...
2129 use_collect2=yes
2130 ;;
46f18e7b 2131 m68k-*-sysv3*) # Motorola m68k's running system V.3
61536478
JL
2132 xm_file="xm-alloca.h ${xm_file}"
2133 xm_defines=USG
46f18e7b
RK
2134 xmake_file=m68k/x-m68kv
2135 extra_parts="crtbegin.o crtend.o"
2136 extra_headers=math-68881.h
c8db55b0 2137 float_format=m68k
46f18e7b
RK
2138 ;;
2139 m68k-*-sysv4*) # Motorola m68k's running system V.4
2140 tm_file=m68k/m68kv4.h
61536478
JL
2141 xm_file="xm-alloca.h ${xm_file}"
2142 xm_defines=USG
46f18e7b
RK
2143 tmake_file=t-svr4
2144 extra_parts="crtbegin.o crtend.o"
2145 extra_headers=math-68881.h
c8db55b0 2146 float_format=m68k
46f18e7b 2147 ;;
956d6950 2148 m68k-*-linux-gnuaout*) # Motorola m68k's running GNU/Linux
61536478 2149 # with a.out format
46f18e7b
RK
2150 xmake_file=x-linux
2151 tm_file=m68k/linux-aout.h
2152 tmake_file="t-linux-aout m68k/t-linux-aout"
46f18e7b 2153 extra_headers=math-68881.h
c8db55b0 2154 float_format=m68k
46f18e7b 2155 gnu_ld=yes
46f18e7b 2156 ;;
956d6950 2157 m68k-*-linux-gnulibc1) # Motorola m68k's running GNU/Linux
61536478
JL
2158 # with ELF format using the
2159 # GNU/Linux C library 5
2160 xmake_file=x-linux
95fd3981
RK
2161 tm_file=m68k/linux.h
2162 tmake_file="t-linux t-linux-gnulibc1 m68k/t-linux"
2163 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
95fd3981 2164 extra_headers=math-68881.h
c8db55b0 2165 float_format=m68k
95fd3981
RK
2166 gnu_ld=yes
2167 ;;
956d6950 2168 m68k-*-linux-gnu*) # Motorola m68k's running GNU/Linux
61536478
JL
2169 # with ELF format using glibc 2
2170 # aka the GNU/Linux C library 6.
2171 xmake_file=x-linux
46f18e7b
RK
2172 tm_file=m68k/linux.h
2173 tmake_file="t-linux m68k/t-linux"
2174 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
46f18e7b 2175 extra_headers=math-68881.h
c8db55b0 2176 float_format=m68k
46f18e7b 2177 gnu_ld=yes
75bffa71 2178 if test x$enable_threads = xyes; then
95fd3981
RK
2179 thread_file='posix'
2180 fi
46f18e7b
RK
2181 ;;
2182 m68k-*-psos*)
2183 tmake_file=m68k/t-m68kbare
2184 tm_file=m68k/m68k-psos.h
2185 extra_headers=math-68881.h
c8db55b0 2186 float_format=m68k
46f18e7b
RK
2187 ;;
2188 m68k-*-rtems*)
2189 tmake_file="m68k/t-m68kbare t-rtems"
2190 tm_file=m68k/rtems.h
2191 extra_headers=math-68881.h
c8db55b0 2192 float_format=m68k
46f18e7b
RK
2193 ;;
2194
2195 m88k-dg-dgux*)
2196 case $machine in
2197 m88k-dg-dguxbcs*)
2198 tm_file=m88k/dguxbcs.h
2199 tmake_file=m88k/t-dguxbcs
2200 ;;
2201 *)
2202 tm_file=m88k/dgux.h
2203 tmake_file=m88k/t-dgux
2204 ;;
2205 esac
2206 extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld"
46f18e7b 2207 xmake_file=m88k/x-dgux
75bffa71 2208 if test x$gas = xyes
46f18e7b
RK
2209 then
2210 tmake_file=m88k/t-dgux-gas
2211 fi
46f18e7b
RK
2212 ;;
2213 m88k-dolphin-sysv3*)
2214 tm_file=m88k/dolph.h
2215 extra_parts="crtbegin.o crtend.o"
61536478 2216 xm_file="m88k/xm-sysv3.h ${xm_file}"
46f18e7b 2217 xmake_file=m88k/x-dolph
75bffa71 2218 if test x$gas = xyes
46f18e7b
RK
2219 then
2220 tmake_file=m88k/t-m88k-gas
2221 fi
2222 ;;
2223 m88k-tektronix-sysv3)
2224 tm_file=m88k/tekXD88.h
2225 extra_parts="crtbegin.o crtend.o"
61536478 2226 xm_file="m88k/xm-sysv3.h ${xm_file}"
46f18e7b 2227 xmake_file=m88k/x-tekXD88
75bffa71 2228 if test x$gas = xyes
46f18e7b
RK
2229 then
2230 tmake_file=m88k/t-m88k-gas
2231 fi
2232 ;;
2233 m88k-*-aout*)
2234 tm_file=m88k/m88k-aout.h
2235 ;;
2236 m88k-*-coff*)
2237 tm_file=m88k/m88k-coff.h
2238 tmake_file=m88k/t-bug
2239 ;;
2240 m88k-*-luna*)
2241 tm_file=m88k/luna.h
2242 extra_parts="crtbegin.o crtend.o"
75bffa71 2243 if test x$gas = xyes
46f18e7b
RK
2244 then
2245 tmake_file=m88k/t-luna-gas
2246 else
2247 tmake_file=m88k/t-luna
2248 fi
2249 ;;
1b4a979b
ME
2250 m88k-*-openbsd*)
2251 tmake_file="${tmake_file} m88k/t-luna-gas"
2252 ;;
46f18e7b
RK
2253 m88k-*-sysv3*)
2254 tm_file=m88k/sysv3.h
2255 extra_parts="crtbegin.o crtend.o"
61536478 2256 xm_file="m88k/xm-sysv3.h ${xm_file}"
46f18e7b 2257 xmake_file=m88k/x-sysv3
75bffa71 2258 if test x$gas = xyes
46f18e7b
RK
2259 then
2260 tmake_file=m88k/t-m88k-gas
2261 fi
2262 ;;
2263 m88k-*-sysv4*)
2264 tm_file=m88k/sysv4.h
2265 extra_parts="crtbegin.o crtend.o"
2266 xmake_file=m88k/x-sysv4
2267 tmake_file=m88k/t-sysv4
2268 ;;
2269 mips-sgi-irix6*) # SGI System V.4., IRIX 6
05476613
MM
2270 if test "x$gnu_ld" = xyes
2271 then
2272 tm_file="mips/iris6.h mips/iris6gld.h"
05476613
MM
2273 else
2274 tm_file=mips/iris6.h
05476613 2275 fi
e3f5cc86 2276 tmake_file=mips/t-iris6
46f18e7b 2277 xm_file=mips/xm-iris6.h
46f18e7b 2278 xmake_file=mips/x-iris6
04069e5c 2279# if test x$enable_threads = xyes; then
6e148807 2280# thread_file='irix'
04069e5c 2281# fi
46f18e7b 2282 ;;
98bd9f0f 2283 mips-wrs-vxworks)
7aae67a2 2284 tm_file="mips/elf.h mips/vxworks.h"
98bd9f0f
DB
2285 tmake_file=mips/t-ecoff
2286 gas=yes
2287 gnu_ld=yes
2288 extra_parts="crtbegin.o crtend.o"
e9c0315e 2289 thread_file='vxworks'
98bd9f0f 2290 ;;
46f18e7b 2291 mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64
61536478 2292 tm_file="mips/iris6.h mips/cross64.h"
74c55ab0
JW
2293 xm_defines=USG
2294 xm_file="mips/xm-iris5.h"
46f18e7b
RK
2295 xmake_file=mips/x-iris
2296 tmake_file=mips/t-cross64
2297 # See comment in mips/iris[56].h files.
2298 use_collect2=yes
04069e5c 2299# if test x$enable_threads = xyes; then
6e148807 2300# thread_file='irix'
04069e5c 2301# fi
46f18e7b
RK
2302 ;;
2303 mips-sni-sysv4)
75bffa71 2304 if test x$gas = xyes
46f18e7b 2305 then
75bffa71 2306 if test x$stabs = xyes
46f18e7b
RK
2307 then
2308 tm_file=mips/iris5gdb.h
2309 else
61536478 2310 tm_file="mips/sni-svr4.h mips/sni-gas.h"
46f18e7b
RK
2311 fi
2312 else
2313 tm_file=mips/sni-svr4.h
2314 fi
61536478 2315 xm_defines=USG
46f18e7b
RK
2316 xmake_file=mips/x-sni-svr4
2317 tmake_file=mips/t-mips-gas
75bffa71 2318 if test x$gnu_ld != xyes
46f18e7b
RK
2319 then
2320 use_collect2=yes
2321 fi
46f18e7b
RK
2322 ;;
2323 mips-sgi-irix5*) # SGI System V.4., IRIX 5
75bffa71 2324 if test x$gas = xyes
46f18e7b 2325 then
61536478 2326 tm_file="mips/iris5.h mips/iris5gas.h"
75bffa71 2327 if test x$stabs = xyes
46f18e7b
RK
2328 then
2329 tm_file="${tm_file} dbx.h"
2330 fi
2331 else
2332 tm_file=mips/iris5.h
2333 fi
74c55ab0
JW
2334 xm_defines=USG
2335 xm_file="mips/xm-iris5.h"
46f18e7b
RK
2336 xmake_file=mips/x-iris
2337 # mips-tfile doesn't work yet
2338 tmake_file=mips/t-mips-gas
2339 # See comment in mips/iris5.h file.
2340 use_collect2=yes
04069e5c 2341# if test x$enable_threads = xyes; then
6e148807 2342# thread_file='irix'
04069e5c 2343# fi
46f18e7b
RK
2344 ;;
2345 mips-sgi-irix4loser*) # Mostly like a MIPS.
61536478 2346 tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h"
75bffa71 2347 if test x$stabs = xyes; then
46f18e7b
RK
2348 tm_file="${tm_file} dbx.h"
2349 fi
61536478 2350 xm_defines=USG
46f18e7b 2351 xmake_file=mips/x-iris
75bffa71 2352 if test x$gas = xyes
46f18e7b
RK
2353 then
2354 tmake_file=mips/t-mips-gas
2355 else
2356 extra_passes="mips-tfile mips-tdump"
2357 fi
75bffa71 2358 if test x$gnu_ld != xyes
46f18e7b
RK
2359 then
2360 use_collect2=yes
2361 fi
04069e5c 2362# if test x$enable_threads = xyes; then
6e148807 2363# thread_file='irix'
04069e5c 2364# fi
46f18e7b
RK
2365 ;;
2366 mips-sgi-irix4*) # Mostly like a MIPS.
61536478 2367 tm_file="mips/iris3.h ${tm_file} mips/iris4.h"
75bffa71 2368 if test x$stabs = xyes; then
46f18e7b
RK
2369 tm_file="${tm_file} dbx.h"
2370 fi
61536478 2371 xm_defines=USG
46f18e7b 2372 xmake_file=mips/x-iris
75bffa71 2373 if test x$gas = xyes
46f18e7b
RK
2374 then
2375 tmake_file=mips/t-mips-gas
2376 else
2377 extra_passes="mips-tfile mips-tdump"
2378 fi
75bffa71 2379 if test x$gnu_ld != xyes
46f18e7b
RK
2380 then
2381 use_collect2=yes
2382 fi
04069e5c 2383# if test x$enable_threads = xyes; then
6e148807 2384# thread_file='irix'
04069e5c 2385# fi
46f18e7b
RK
2386 ;;
2387 mips-sgi-*) # Mostly like a MIPS.
61536478 2388 tm_file="mips/iris3.h ${tm_file}"
75bffa71 2389 if test x$stabs = xyes; then
46f18e7b
RK
2390 tm_file="${tm_file} dbx.h"
2391 fi
61536478 2392 xm_defines=USG
46f18e7b 2393 xmake_file=mips/x-iris3
75bffa71 2394 if test x$gas = xyes
46f18e7b
RK
2395 then
2396 tmake_file=mips/t-mips-gas
2397 else
2398 extra_passes="mips-tfile mips-tdump"
2399 fi
75bffa71 2400 if test x$gnu_ld != xyes
46f18e7b
RK
2401 then
2402 use_collect2=yes
2403 fi
2404 ;;
2405 mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose.
61536478 2406 tm_file="mips/osfrose.h ${tm_file}"
46f18e7b
RK
2407 xmake_file=mips/x-osfrose
2408 tmake_file=mips/t-osfrose
2409 extra_objs=halfpic.o
2410 use_collect2=yes
2411 ;;
2412 mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL
2413 tm_file=mips/dec-osf1.h
75bffa71 2414 if test x$stabs = xyes; then
46f18e7b
RK
2415 tm_file="${tm_file} dbx.h"
2416 fi
2417 xmake_file=mips/x-dec-osf1
75bffa71 2418 if test x$gas = xyes
46f18e7b
RK
2419 then
2420 tmake_file=mips/t-mips-gas
2421 else
2422 tmake_file=mips/t-ultrix
2423 extra_passes="mips-tfile mips-tdump"
2424 fi
75bffa71 2425 if test x$gnu_ld != xyes
46f18e7b
RK
2426 then
2427 use_collect2=yes
2428 fi
2429 ;;
2430 mips-dec-bsd*) # Decstation running 4.4 BSD
2431 tm_file=mips/dec-bsd.h
75bffa71 2432 if test x$gas = xyes
46f18e7b
RK
2433 then
2434 tmake_file=mips/t-mips-gas
2435 else
2436 tmake_file=mips/t-ultrix
2437 extra_passes="mips-tfile mips-tdump"
2438 fi
75bffa71 2439 if test x$gnu_ld != xyes
46f18e7b
RK
2440 then
2441 use_collect2=yes
2442 fi
2443 ;;
58600d24 2444 mipsel-*-netbsd* | mips-dec-netbsd*) # Decstation running NetBSD
46f18e7b 2445 tm_file=mips/netbsd.h
be1ed94f 2446 # On NetBSD, the headers are already okay, except for math.h.
e47f44f4 2447 tmake_file=t-netbsd
46f18e7b 2448 ;;
11fa8909 2449 mips*-*-linux*) # Linux MIPS, either endian.
18cae839
RL
2450 xmake_file=x-linux
2451 xm_file="xm-siglist.h ${xm_file}"
11fa8909
RL
2452 case $machine in
2453 mipsel-*) tm_file="mips/elfl.h mips/linux.h" ;;
2454 *) tm_file="mips/elf.h mips/linux.h" ;;
2455 esac
18cae839
RL
2456 extra_parts="crtbegin.o crtend.o"
2457 gnu_ld=yes
2458 gas=yes
18cae839 2459 ;;
1b4a979b
ME
2460 mips*el-*-openbsd*) # mips little endian
2461 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2462 tm_file=mips/openbsd.h
1b4a979b
ME
2463 ;;
2464 mips*-*-openbsd*) # mips big endian
2465 target_cpu_default="MASK_GAS|MASK_ABICALLS"
2466 tm_file=mips/openbsd-be.h
1b4a979b 2467 ;;
46f18e7b 2468 mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news.
61536478 2469 tm_file="mips/news4.h ${tm_file}"
75bffa71 2470 if test x$stabs = xyes; then
46f18e7b
RK
2471 tm_file="${tm_file} dbx.h"
2472 fi
75bffa71 2473 if test x$gas = xyes
46f18e7b
RK
2474 then
2475 tmake_file=mips/t-mips-gas
2476 else
2477 extra_passes="mips-tfile mips-tdump"
2478 fi
75bffa71 2479 if test x$gnu_ld != xyes
46f18e7b
RK
2480 then
2481 use_collect2=yes
2482 fi
2483 xmake_file=mips/x-sony
2484 ;;
2485 mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0.
2486 # That is based on svr4.
2487 # t-svr4 is not right because this system doesn't use ELF.
61536478 2488 tm_file="mips/news5.h ${tm_file}"
75bffa71 2489 if test x$stabs = xyes; then
46f18e7b
RK
2490 tm_file="${tm_file} dbx.h"
2491 fi
61536478
JL
2492 xm_file="xm-siglist.h ${xm_file}"
2493 xm_defines=USG
75bffa71 2494 if test x$gas = xyes
46f18e7b
RK
2495 then
2496 tmake_file=mips/t-mips-gas
2497 else
2498 extra_passes="mips-tfile mips-tdump"
2499 fi
75bffa71 2500 if test x$gnu_ld != xyes
46f18e7b
RK
2501 then
2502 use_collect2=yes
2503 fi
2504 ;;
2505 mips-tandem-sysv4*) # Tandem S2 running NonStop UX
61536478 2506 tm_file="mips/svr4-5.h mips/svr4-t.h"
75bffa71 2507 if test x$stabs = xyes; then
46f18e7b
RK
2508 tm_file="${tm_file} dbx.h"
2509 fi
61536478
JL
2510 xm_file="xm-siglist.h ${xm_file}"
2511 xm_defines=USG
46f18e7b 2512 xmake_file=mips/x-sysv
75bffa71 2513 if test x$gas = xyes
46f18e7b
RK
2514 then
2515 tmake_file=mips/t-mips-gas
2516 extra_parts="crtbegin.o crtend.o"
2517 else
2518 tmake_file=mips/t-mips
2519 extra_passes="mips-tfile mips-tdump"
2520 fi
75bffa71 2521 if test x$gnu_ld != xyes
46f18e7b
RK
2522 then
2523 use_collect2=yes
2524 fi
46f18e7b
RK
2525 ;;
2526 mips-*-ultrix* | mips-dec-mach3) # Decstation.
61536478 2527 tm_file="mips/ultrix.h ${tm_file}"
75bffa71 2528 if test x$stabs = xyes; then
46f18e7b
RK
2529 tm_file="${tm_file} dbx.h"
2530 fi
2531 xmake_file=mips/x-ultrix
75bffa71 2532 if test x$gas = xyes
46f18e7b
RK
2533 then
2534 tmake_file=mips/t-mips-gas
2535 else
2536 tmake_file=mips/t-ultrix
2537 extra_passes="mips-tfile mips-tdump"
2538 fi
75bffa71 2539 if test x$gnu_ld != xyes
46f18e7b
RK
2540 then
2541 use_collect2=yes
2542 fi
2543 ;;
75bffa71
ILT
2544changequote(,)dnl
2545 mips-*-riscos[56789]bsd*)
2546changequote([,])dnl
46f18e7b 2547 tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0
75bffa71 2548 if test x$stabs = xyes; then
46f18e7b
RK
2549 tm_file="${tm_file} dbx.h"
2550 fi
75bffa71 2551 if test x$gas = xyes
46f18e7b
RK
2552 then
2553 tmake_file=mips/t-bsd-gas
2554 else
2555 tmake_file=mips/t-bsd
2556 extra_passes="mips-tfile mips-tdump"
2557 fi
75bffa71 2558 if test x$gnu_ld != xyes
46f18e7b
RK
2559 then
2560 use_collect2=yes
2561 fi
46f18e7b 2562 ;;
75bffa71
ILT
2563changequote(,)dnl
2564 mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*)
2565changequote([,])dnl
61536478 2566 tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0
75bffa71 2567 if test x$stabs = xyes; then
46f18e7b
RK
2568 tm_file="${tm_file} dbx.h"
2569 fi
75bffa71 2570 if test x$gas = xyes
46f18e7b
RK
2571 then
2572 tmake_file=mips/t-bsd-gas
2573 else
2574 tmake_file=mips/t-bsd
2575 extra_passes="mips-tfile mips-tdump"
2576 fi
75bffa71 2577 if test x$gnu_ld != xyes
46f18e7b
RK
2578 then
2579 use_collect2=yes
2580 fi
46f18e7b 2581 ;;
75bffa71
ILT
2582changequote(,)dnl
2583 mips-*-riscos[56789]sysv4*)
2584changequote([,])dnl
46f18e7b 2585 tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0
75bffa71 2586 if test x$stabs = xyes; then
46f18e7b
RK
2587 tm_file="${tm_file} dbx.h"
2588 fi
61536478 2589 xm_file="xm-siglist.h ${xm_file}"
46f18e7b 2590 xmake_file=mips/x-sysv
75bffa71 2591 if test x$gas = xyes
46f18e7b
RK
2592 then
2593 tmake_file=mips/t-svr4-gas
2594 else
2595 tmake_file=mips/t-svr4
2596 extra_passes="mips-tfile mips-tdump"
2597 fi
75bffa71 2598 if test x$gnu_ld != xyes
46f18e7b
RK
2599 then
2600 use_collect2=yes
2601 fi
46f18e7b 2602 ;;
75bffa71
ILT
2603changequote(,)dnl
2604 mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*)
2605changequote([,])dnl
61536478 2606 tm_file="mips/svr4-4.h ${tm_file}"
75bffa71 2607 if test x$stabs = xyes; then
46f18e7b
RK
2608 tm_file="${tm_file} dbx.h"
2609 fi
61536478 2610 xm_defines=USG
46f18e7b 2611 xmake_file=mips/x-sysv
75bffa71 2612 if test x$gas = xyes
46f18e7b
RK
2613 then
2614 tmake_file=mips/t-svr4-gas
2615 else
2616 tmake_file=mips/t-svr4
2617 extra_passes="mips-tfile mips-tdump"
2618 fi
75bffa71 2619 if test x$gnu_ld != xyes
46f18e7b
RK
2620 then
2621 use_collect2=yes
2622 fi
46f18e7b 2623 ;;
75bffa71
ILT
2624changequote(,)dnl
2625 mips-*-riscos[56789]sysv*)
2626changequote([,])dnl
46f18e7b 2627 tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0
75bffa71 2628 if test x$stabs = xyes; then
46f18e7b
RK
2629 tm_file="${tm_file} dbx.h"
2630 fi
61536478 2631 xm_defines=USG
46f18e7b 2632 xmake_file=mips/x-sysv
75bffa71 2633 if test x$gas = xyes
46f18e7b
RK
2634 then
2635 tmake_file=mips/t-svr3-gas
2636 else
2637 tmake_file=mips/t-svr3
2638 extra_passes="mips-tfile mips-tdump"
2639 fi
75bffa71 2640 if test x$gnu_ld != xyes
46f18e7b
RK
2641 then
2642 use_collect2=yes
2643 fi
46f18e7b
RK
2644 ;;
2645 mips-*-sysv* | mips-*-riscos*sysv*)
61536478 2646 tm_file="mips/svr3-4.h ${tm_file}"
75bffa71 2647 if test x$stabs = xyes; then
46f18e7b
RK
2648 tm_file="${tm_file} dbx.h"
2649 fi
61536478 2650 xm_defines=USG
46f18e7b 2651 xmake_file=mips/x-sysv
75bffa71 2652 if test x$gas = xyes
46f18e7b
RK
2653 then
2654 tmake_file=mips/t-svr3-gas
2655 else
2656 tmake_file=mips/t-svr3
2657 extra_passes="mips-tfile mips-tdump"
2658 fi
75bffa71 2659 if test x$gnu_ld != xyes
46f18e7b
RK
2660 then
2661 use_collect2=yes
2662 fi
46f18e7b 2663 ;;
75bffa71
ILT
2664changequote(,)dnl
2665 mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0.
2666changequote([,])dnl
46f18e7b 2667 tm_file=mips/mips-5.h
75bffa71 2668 if test x$stabs = xyes; then
46f18e7b
RK
2669 tm_file="${tm_file} dbx.h"
2670 fi
75bffa71 2671 if test x$gas = xyes
46f18e7b
RK
2672 then
2673 tmake_file=mips/t-mips-gas
2674 else
2675 extra_passes="mips-tfile mips-tdump"
2676 fi
75bffa71 2677 if test x$gnu_ld != xyes
46f18e7b
RK
2678 then
2679 use_collect2=yes
2680 fi
46f18e7b
RK
2681 ;;
2682 mips-*-gnu*)
2683 ;;
2684 mipsel-*-ecoff*)
2685 tm_file=mips/ecoffl.h
75bffa71 2686 if test x$stabs = xyes; then
46f18e7b
RK
2687 tm_file="${tm_file} dbx.h"
2688 fi
2689 tmake_file=mips/t-ecoff
2690 ;;
2691 mips-*-ecoff*)
1be12a4a 2692 tm_file="gofast.h mips/ecoff.h"
75bffa71 2693 if test x$stabs = xyes; then
46f18e7b
RK
2694 tm_file="${tm_file} dbx.h"
2695 fi
2696 tmake_file=mips/t-ecoff
46f18e7b
RK
2697 ;;
2698 mipsel-*-elf*)
7aae67a2 2699 tm_file="mips/elfl.h"
d8265d29 2700 tmake_file=mips/t-elf
46f18e7b
RK
2701 ;;
2702 mips-*-elf*)
d8265d29
CM
2703 tm_file="mips/elf.h"
2704 tmake_file=mips/t-elf
46f18e7b
RK
2705 ;;
2706 mips64el-*-elf*)
d8265d29
CM
2707 tm_file="mips/elfl64.h"
2708 tmake_file=mips/t-elf
46f18e7b
RK
2709 ;;
2710 mips64orionel-*-elf*)
7aae67a2 2711 tm_file="mips/elforion.h mips/elfl64.h"
d8265d29 2712 tmake_file=mips/t-elf
46f18e7b
RK
2713 ;;
2714 mips64-*-elf*)
d8265d29
CM
2715 tm_file="mips/elf64.h"
2716 tmake_file=mips/t-elf
46f18e7b
RK
2717 ;;
2718 mips64orion-*-elf*)
7aae67a2 2719 tm_file="mips/elforion.h mips/elf64.h"
d8265d29 2720 tmake_file=mips/t-elf
46f18e7b
RK
2721 ;;
2722 mips64orion-*-rtems*)
6e9856ba 2723 tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h"
46f18e7b
RK
2724 tmake_file="mips/t-ecoff t-rtems"
2725 ;;
e9a25f70 2726 mipstx39el-*-elf*)
d8265d29 2727 tm_file="mips/r3900.h mips/elfl.h mips/abi64.h"
09e4daf5 2728 tmake_file=mips/t-r3900
e9a25f70
JL
2729 ;;
2730 mipstx39-*-elf*)
d8265d29 2731 tm_file="mips/r3900.h mips/elf.h mips/abi64.h"
09e4daf5 2732 tmake_file=mips/t-r3900
e9a25f70 2733 ;;
46f18e7b 2734 mips-*-*) # Default MIPS RISC-OS 4.0.
75bffa71 2735 if test x$stabs = xyes; then
46f18e7b
RK
2736 tm_file="${tm_file} dbx.h"
2737 fi
75bffa71 2738 if test x$gas = xyes
46f18e7b
RK
2739 then
2740 tmake_file=mips/t-mips-gas
2741 else
2742 extra_passes="mips-tfile mips-tdump"
2743 fi
75bffa71 2744 if test x$gnu_ld != xyes
46f18e7b
RK
2745 then
2746 use_collect2=yes
2747 fi
2748 ;;
cef64ec4
RK
2749 mn10200-*-*)
2750 cpu_type=mn10200
2751 tm_file="mn10200/mn10200.h"
75bffa71 2752 if test x$stabs = xyes
cef64ec4
RK
2753 then
2754 tm_file="${tm_file} dbx.h"
2755 fi
2756 use_collect2=no
2757 ;;
46f18e7b
RK
2758 mn10300-*-*)
2759 cpu_type=mn10300
2760 tm_file="mn10300/mn10300.h"
75bffa71 2761 if test x$stabs = xyes
46f18e7b
RK
2762 then
2763 tm_file="${tm_file} dbx.h"
2764 fi
2765 use_collect2=no
2766 ;;
2767 ns32k-encore-bsd*)
2768 tm_file=ns32k/encore.h
2769 use_collect2=yes
2770 ;;
2771 ns32k-sequent-bsd*)
2772 tm_file=ns32k/sequent.h
2773 use_collect2=yes
2774 ;;
2775 ns32k-tek6100-bsd*)
2776 tm_file=ns32k/tek6100.h
46f18e7b
RK
2777 use_collect2=yes
2778 ;;
2779 ns32k-tek6200-bsd*)
2780 tm_file=ns32k/tek6200.h
46f18e7b
RK
2781 use_collect2=yes
2782 ;;
2783# This has not been updated to GCC 2.
2784# ns32k-ns-genix*)
61536478 2785# xm_defines=USG
46f18e7b
RK
2786# xmake_file=ns32k/x-genix
2787# tm_file=ns32k/genix.h
46f18e7b
RK
2788# use_collect2=yes
2789# ;;
2790 ns32k-merlin-*)
2791 tm_file=ns32k/merlin.h
2792 use_collect2=yes
2793 ;;
2794 ns32k-pc532-mach*)
2795 tm_file=ns32k/pc532-mach.h
2796 use_collect2=yes
2797 ;;
2798 ns32k-pc532-minix*)
2799 tm_file=ns32k/pc532-min.h
61536478
JL
2800 xm_file="ns32k/xm-pc532-min.h ${xm-file}"
2801 xm_defines=USG
46f18e7b
RK
2802 use_collect2=yes
2803 ;;
58600d24 2804 ns32k-*-netbsd*)
46f18e7b 2805 tm_file=ns32k/netbsd.h
641d4216 2806 xm_file="ns32k/xm-netbsd.h ${xm_file}"
be1ed94f 2807 # On NetBSD, the headers are already okay, except for math.h.
e47f44f4 2808 tmake_file=t-netbsd
af0ca027 2809 use_collect2=yes
46f18e7b
RK
2810 ;;
2811 pdp11-*-bsd)
2812 tm_file="${tm_file} pdp11/2bsd.h"
2813 ;;
2814 pdp11-*-*)
2815 ;;
1b4a979b
ME
2816 ns32k-*-openbsd*)
2817 # Nothing special
2818 ;;
46f18e7b
RK
2819 pyramid-*-*)
2820 cpu_type=pyr
2821 xmake_file=pyr/x-pyr
2822 use_collect2=yes
2823 ;;
2824 romp-*-aos*)
2825 use_collect2=yes
2826 ;;
2827 romp-*-mach*)
2828 xmake_file=romp/x-mach
2829 use_collect2=yes
2830 ;;
1b4a979b
ME
2831 romp-*-openbsd*)
2832 # Nothing special
2833 ;;
2834 powerpc-*-openbsd*)
2835 tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd"
1b4a979b 2836 ;;
c55dcc7d
FF
2837 powerpc-*-beos*)
2838 cpu_type=rs6000
2839 tm_file=rs6000/beos.h
2840 xm_file=rs6000/xm-beos.h
2841 tmake_file=rs6000/t-beos
2842 xmake_file=rs6000/x-beos
2843 ;;
46f18e7b
RK
2844 powerpc-*-sysv* | powerpc-*-elf*)
2845 tm_file=rs6000/sysv4.h
61536478
JL
2846 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2847 xm_defines="USG POSIX"
46f18e7b 2848 extra_headers=ppc-asm.h
75bffa71 2849 if test x$gas = xyes
46f18e7b
RK
2850 then
2851 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2852 else
2853 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2854 fi
2855 xmake_file=rs6000/x-sysv4
2856 ;;
2857 powerpc-*-eabiaix*)
2858 tm_file=rs6000/eabiaix.h
2859 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
46f18e7b
RK
2860 extra_headers=ppc-asm.h
2861 ;;
2862 powerpc-*-eabisim*)
2863 tm_file=rs6000/eabisim.h
2864 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
46f18e7b
RK
2865 extra_headers=ppc-asm.h
2866 ;;
2867 powerpc-*-eabi*)
2868 tm_file=rs6000/eabi.h
75bffa71 2869 if test x$gas = xyes
46f18e7b
RK
2870 then
2871 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2872 else
2873 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2874 fi
46f18e7b
RK
2875 extra_headers=ppc-asm.h
2876 ;;
dec3e070
JW
2877 powerpc-*-rtems*)
2878 tm_file=rs6000/rtems.h
75bffa71 2879 if test x$gas = xyes
46f18e7b 2880 then
dec3e070 2881 tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm"
46f18e7b 2882 else
dec3e070 2883 tmake_file="rs6000/t-ppc t-rtems rs6000/t-ppccomm"
46f18e7b 2884 fi
46f18e7b
RK
2885 extra_headers=ppc-asm.h
2886 ;;
ce514f57
FS
2887 powerpc-*-linux-gnulibc1)
2888 tm_file=rs6000/linux.h
2889 xm_file=rs6000/xm-sysv4.h
2890 out_file=rs6000/rs6000.c
75bffa71 2891 if test x$gas = xyes
ce514f57
FS
2892 then
2893 tmake_file="rs6000/t-ppcos t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2894 else
2895 tmake_file="rs6000/t-ppc t-linux t-linux-gnulibc1 rs6000/t-ppccomm"
2896 fi
2897 xmake_file=x-linux
ce514f57
FS
2898 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2899 extra_headers=ppc-asm.h
75bffa71 2900 if test x$enable_threads = xyes; then
ce514f57
FS
2901 thread_file='posix'
2902 fi
2903 ;;
844dadc7 2904 powerpc-*-linux-gnu*)
dec3e070 2905 tm_file=rs6000/linux.h
61536478
JL
2906 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2907 xm_defines="USG ${xm_defines}"
dec3e070 2908 out_file=rs6000/rs6000.c
75bffa71 2909 if test x$gas = xyes
46f18e7b 2910 then
dec3e070 2911 tmake_file="rs6000/t-ppcos t-linux rs6000/t-ppccomm"
46f18e7b 2912 else
dec3e070 2913 tmake_file="rs6000/t-ppc t-linux rs6000/t-ppccomm"
46f18e7b 2914 fi
d7308c0c 2915 xmake_file=x-linux
d7308c0c 2916 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
46f18e7b 2917 extra_headers=ppc-asm.h
75bffa71 2918 if test x$enable_threads = xyes; then
d7308c0c
RK
2919 thread_file='posix'
2920 fi
46f18e7b 2921 ;;
7cc34889 2922 powerpc-wrs-vxworks*)
46f18e7b 2923 cpu_type=rs6000
61536478
JL
2924 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2925 xm_defines="USG POSIX"
46f18e7b
RK
2926 tm_file=rs6000/vxppc.h
2927 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2928 extra_headers=ppc-asm.h
7cc34889 2929 thread_file='vxworks'
46f18e7b
RK
2930 ;;
2931 powerpcle-*-sysv* | powerpcle-*-elf*)
2932 tm_file=rs6000/sysv4le.h
61536478
JL
2933 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2934 xm_defines="USG POSIX"
75bffa71 2935 if test x$gas = xyes
46f18e7b
RK
2936 then
2937 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2938 else
2939 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2940 fi
2941 xmake_file=rs6000/x-sysv4
2942 extra_headers=ppc-asm.h
2943 ;;
2944 powerpcle-*-eabisim*)
2945 tm_file=rs6000/eabilesim.h
2946 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
46f18e7b
RK
2947 extra_headers=ppc-asm.h
2948 ;;
2949 powerpcle-*-eabi*)
2950 tm_file=rs6000/eabile.h
75bffa71 2951 if test x$gas = xyes
46f18e7b
RK
2952 then
2953 tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm"
2954 else
2955 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2956 fi
46f18e7b
RK
2957 extra_headers=ppc-asm.h
2958 ;;
2959 powerpcle-*-winnt* )
2960 tm_file=rs6000/win-nt.h
2961 tmake_file=rs6000/t-winnt
2962# extra_objs=pe.o
75bffa71 2963 if test x$enable_threads = xyes; then
0bbb1697
RK
2964 thread_file='win32'
2965 fi
46f18e7b
RK
2966 extra_headers=ppc-asm.h
2967 ;;
cae21ae8
GN
2968 powerpcle-*-pe | powerpcle-*-cygwin*)
2969 tm_file=rs6000/cygwin.h
2970 xm_file="rs6000/xm-cygwin.h ${xm_file}"
46f18e7b 2971 tmake_file=rs6000/t-winnt
cae21ae8 2972 xmake_file=rs6000/x-cygwin
46f18e7b 2973# extra_objs=pe.o
75bffa71 2974 if test x$enable_threads = xyes; then
0bbb1697
RK
2975 thread_file='win32'
2976 fi
46f18e7b
RK
2977 exeext=.exe
2978 extra_headers=ppc-asm.h
2979 ;;
2980 powerpcle-*-solaris2*)
2981 tm_file=rs6000/sol2.h
61536478
JL
2982 xm_file="xm-siglist.h rs6000/xm-sysv4.h"
2983 xm_defines="USG POSIX"
75bffa71 2984 if test x$gas = xyes
46f18e7b
RK
2985 then
2986 tmake_file="rs6000/t-ppcos rs6000/t-ppccomm"
2987 else
2988 tmake_file="rs6000/t-ppc rs6000/t-ppccomm"
2989 fi
2990 xmake_file=rs6000/x-sysv4
46f18e7b
RK
2991 extra_headers=ppc-asm.h
2992 ;;
75bffa71
ILT
2993changequote(,)dnl
2994 rs6000-ibm-aix3.[01]*)
2995changequote([,])dnl
46f18e7b
RK
2996 tm_file=rs6000/aix31.h
2997 xmake_file=rs6000/x-aix31
45e24d08 2998 float_format=none
46f18e7b
RK
2999 use_collect2=yes
3000 ;;
75bffa71
ILT
3001changequote(,)dnl
3002 rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*)
3003changequote([,])dnl
46f18e7b 3004 tm_file=rs6000/aix3newas.h
75bffa71 3005 if test x$host != x$target
46f18e7b
RK
3006 then
3007 tmake_file=rs6000/t-xnewas
3008 else
3009 tmake_file=rs6000/t-newas
3010 fi
45e24d08 3011 float_format=none
46f18e7b
RK
3012 use_collect2=yes
3013 ;;
75bffa71 3014changequote(,)dnl
05cea40f 3015 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
75bffa71 3016changequote([,])dnl
590e30e7 3017 tm_file=rs6000/aix41.h
75bffa71 3018 if test x$host != x$target
46f18e7b
RK
3019 then
3020 tmake_file=rs6000/t-xnewas
3021 else
3022 tmake_file=rs6000/t-newas
3023 fi
590e30e7
JW
3024 if test "$gnu_ld" = yes
3025 then
3026 xmake_file=rs6000/x-aix41-gld
3027 else
69c9f0fb 3028 xmake_file=rs6000/x-aix41
590e30e7 3029 fi
45e24d08 3030 float_format=none
a260abc9
DE
3031 use_collect2=yes
3032 ;;
75bffa71 3033changequote(,)dnl
7747ddb3 3034 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
75bffa71 3035changequote([,])dnl
a260abc9 3036 tm_file=rs6000/aix43.h
75bffa71 3037 if test x$host != x$target
a260abc9
DE
3038 then
3039 tmake_file=rs6000/t-xaix43
3040 else
3041 tmake_file=rs6000/t-aix43
3042 fi
3043 xmake_file=rs6000/x-aix43
45e24d08 3044 float_format=none
a260abc9
DE
3045 use_collect2=yes
3046 ;;
75bffa71
ILT
3047changequote(,)dnl
3048 rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*)
3049changequote([,])dnl
a260abc9 3050 tm_file=rs6000/aix43.h
75bffa71 3051 if test x$host != x$target
a260abc9
DE
3052 then
3053 tmake_file=rs6000/t-xaix43
3054 else
3055 tmake_file=rs6000/t-aix43
3056 fi
3057 xmake_file=rs6000/x-aix43
45e24d08 3058 float_format=none
46f18e7b
RK
3059 use_collect2=yes
3060 ;;
3061 rs6000-ibm-aix*)
45e24d08 3062 float_format=none
46f18e7b
RK
3063 use_collect2=yes
3064 ;;
3065 rs6000-bull-bosx)
45e24d08 3066 float_format=none
46f18e7b
RK
3067 use_collect2=yes
3068 ;;
3069 rs6000-*-mach*)
3070 tm_file=rs6000/mach.h
61536478 3071 xm_file="${xm_file} rs6000/xm-mach.h"
46f18e7b
RK
3072 xmake_file=rs6000/x-mach
3073 use_collect2=yes
3074 ;;
3075 rs6000-*-lynxos*)
3076 tm_file=rs6000/lynx.h
3077 xm_file=rs6000/xm-lynx.h
3078 tmake_file=rs6000/t-rs6000
3079 xmake_file=rs6000/x-lynx
3080 use_collect2=yes
3081 ;;
3082 sh-*-elf*)
3083 tm_file=sh/elf.h
3084 float_format=sh
3085 ;;
b098f56d
JS
3086 sh-*-rtemself*)
3087 tmake_file="sh/t-sh t-rtems"
3088 tm_file=sh/rtemself.h
3089 float_format=sh
3090 ;;
5d84b57e
JS
3091 sh-*-rtems*)
3092 tmake_file="sh/t-sh t-rtems"
3093 tm_file=sh/rtems.h
3094 float_format=sh
3095 ;;
46f18e7b
RK
3096 sh-*-*)
3097 float_format=sh
3098 ;;
3099 sparc-tti-*)
3100 tm_file=sparc/pbd.h
61536478
JL
3101 xm_file="xm-alloca.h ${xm_file}"
3102 xm_defines=USG
46f18e7b
RK
3103 ;;
3104 sparc-wrs-vxworks* | sparclite-wrs-vxworks*)
3105 tm_file=sparc/vxsparc.h
3106 tmake_file=sparc/t-vxsparc
3107 use_collect2=yes
7cc34889 3108 thread_file='vxworks'
46f18e7b
RK
3109 ;;
3110 sparc-*-aout*)
3111 tmake_file=sparc/t-sparcbare
3112 tm_file="sparc/aout.h libgloss.h"
3113 ;;
3114 sparc-*-netbsd*)
3115 tm_file=sparc/netbsd.h
e47f44f4 3116 tmake_file=t-netbsd
af0ca027 3117 use_collect2=yes
46f18e7b 3118 ;;
1b4a979b
ME
3119 sparc-*-openbsd*)
3120 # we need collect2 until our bug is fixed...
3121 use_collect2=yes
3122 ;;
46f18e7b
RK
3123 sparc-*-bsd*)
3124 tm_file=sparc/bsd.h
3125 ;;
ac52b80b
DE
3126 sparc-*-elf*)
3127 tm_file=sparc/elf.h
3128 tmake_file=sparc/t-elf
3129 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
3130 #float_format=i128
3131 float_format=i64
3132 ;;
956d6950 3133 sparc-*-linux-gnuaout*) # Sparc's running GNU/Linux, a.out
61536478 3134 xm_file="${xm_file} sparc/xm-linux.h"
46f18e7b
RK
3135 tm_file=sparc/linux-aout.h
3136 xmake_file=x-linux
46f18e7b 3137 gnu_ld=yes
46f18e7b 3138 ;;
956d6950 3139 sparc-*-linux-gnulibc1*) # Sparc's running GNU/Linux, libc5
61536478 3140 xm_file="${xm_file} sparc/xm-linux.h"
2334126e 3141 xmake_file=x-linux
46f18e7b 3142 tm_file=sparc/linux.h
9d1ebd25 3143 tmake_file="t-linux t-linux-gnulibc1"
9ad03bc1 3144 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
9ad03bc1 3145 gnu_ld=yes
39c440fc 3146 float_format=sparc
9ad03bc1 3147 ;;
956d6950 3148 sparc-*-linux-gnu*) # Sparc's running GNU/Linux, libc6
61536478 3149 xm_file="${xm_file} sparc/xm-linux.h"
2334126e 3150 xmake_file=x-linux
9ad03bc1 3151 tm_file=sparc/linux.h
9d1ebd25 3152 tmake_file="t-linux"
9ad03bc1 3153 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
46f18e7b 3154 gnu_ld=yes
75bffa71 3155 if test x$enable_threads = xyes; then
9ad03bc1
RK
3156 thread_file='posix'
3157 fi
39c440fc 3158 float_format=sparc
46f18e7b
RK
3159 ;;
3160 sparc-*-lynxos*)
75bffa71 3161 if test x$gas = xyes
46f18e7b
RK
3162 then
3163 tm_file=sparc/lynx.h
3164 else
3165 tm_file=sparc/lynx-ng.h
3166 fi
3167 xm_file=sparc/xm-lynx.h
3168 tmake_file=sparc/t-sunos41
3169 xmake_file=x-lynx
3170 ;;
3171 sparc-*-rtems*)
3172 tmake_file="sparc/t-sparcbare t-rtems"
3173 tm_file=sparc/rtems.h
3174 ;;
d559a4db
DM
3175 sparcv9-*-solaris2*)
3176 tm_file=sparc/sol2-sld-64.h
3177 xm_file="sparc/xm-sysv4-64.h sparc/xm-sol2.h"
3178 xm_defines="USG POSIX"
345a6161 3179 tmake_file="sparc/t-sol2 sparc/t-sol2-64"
d559a4db
DM
3180 xmake_file=sparc/x-sysv4
3181 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
027ea2a7 3182 float_format=none
d7496fbb 3183 if test x${enable_threads} = x ; then
d559a4db 3184 enable_threads=$have_pthread_h
d7496fbb 3185 if test x${enable_threads} = x ; then
d559a4db
DM
3186 enable_threads=$have_thread_h
3187 fi
3188 fi
d7496fbb
DM
3189 if test x${enable_threads} = xyes ; then
3190 if test x${have_pthread_h} = xyes ; then
d559a4db
DM
3191 thread_file='posix'
3192 else
3193 thread_file='solaris'
3194 fi
3195 fi
3196 ;;
ab87f8c8
JL
3197 sparc-hal-solaris2*)
3198 xm_file=sparc/xm-sol2.h
3199 tm_file="sparc/sol2.h sparc/hal.h"
3200 tmake_file="sparc/t-halos sparc/t-sol2"
3201 xmake_file=sparc/x-sysv4
3202 extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o"
ab87f8c8
JL
3203 broken_install=yes
3204 ;;
46f18e7b 3205 sparc-*-solaris2*)
75bffa71 3206 if test x$gnu_ld = xyes
0a9bdce3
PE
3207 then
3208 tm_file=sparc/sol2.h
3209 else
3210 tm_file=sparc/sol2-sld.h
3211 fi
22ec3928
RE
3212 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3213 xm_defines="USG POSIX"
46f18e7b
RK
3214 tmake_file=sparc/t-sol2
3215 xmake_file=sparc/x-sysv4
3216 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
61536478 3217 case $machine in
75bffa71
ILT
3218changequote(,)dnl
3219 *-*-solaris2.[0-4])
3220changequote([,])dnl
027ea2a7
JW
3221 float_format=i128
3222 ;;
61536478 3223 *)
027ea2a7
JW
3224 float_format=none
3225 ;;
61536478 3226 esac
75bffa71 3227 if test x${enable_threads} = x; then
f24af81b 3228 enable_threads=$have_pthread_h
75bffa71 3229 if test x${enable_threads} = x; then
f24af81b
TT
3230 enable_threads=$have_thread_h
3231 fi
3232 fi
75bffa71
ILT
3233 if test x${enable_threads} = xyes; then
3234 if test x${have_pthread_h} = xyes; then
f24af81b
TT
3235 thread_file='posix'
3236 else
0bbb1697 3237 thread_file='solaris'
f24af81b 3238 fi
0bbb1697 3239 fi
46f18e7b
RK
3240 ;;
3241 sparc-*-sunos4.0*)
3242 tm_file=sparc/sunos4.h
3243 tmake_file=sparc/t-sunos40
3244 use_collect2=yes
3245 ;;
3246 sparc-*-sunos4*)
3247 tm_file=sparc/sunos4.h
3248 tmake_file=sparc/t-sunos41
3249 use_collect2=yes
75bffa71 3250 if test x$gas = xyes; then
ca55abae
JM
3251 tm_file="${tm_file} sparc/sun4gas.h"
3252 fi
46f18e7b
RK
3253 ;;
3254 sparc-*-sunos3*)
3255 tm_file=sparc/sun4o3.h
3256 use_collect2=yes
3257 ;;
3258 sparc-*-sysv4*)
3259 tm_file=sparc/sysv4.h
61536478
JL
3260 xm_file="xm-siglist.h sparc/xm-sysv4.h"
3261 xm_defines="USG POSIX"
46f18e7b
RK
3262 tmake_file=t-svr4
3263 xmake_file=sparc/x-sysv4
3264 extra_parts="crtbegin.o crtend.o"
3265 ;;
3266 sparc-*-vxsim*)
f5963e61
JL
3267 xm_file="xm-siglist.h sparc/xm-sysv4.h sparc/xm-sol2.h"
3268 xm_defines="USG POSIX"
46f18e7b
RK
3269 tm_file=sparc/vxsim.h
3270 tmake_file=sparc/t-vxsparc
3271 xmake_file=sparc/x-sysv4
3272 ;;
3273 sparclet-*-aout*)
3274 tm_file="sparc/splet.h libgloss.h"
3275 tmake_file=sparc/t-splet
3276 ;;
3277 sparclite-*-coff*)
3278 tm_file="sparc/litecoff.h libgloss.h"
3279 tmake_file=sparc/t-sparclite
3280 ;;
3281 sparclite-*-aout*)
3282 tm_file="sparc/lite.h aoutos.h libgloss.h"
3283 tmake_file=sparc/t-sparclite
3284 ;;
28df4168
JL
3285 sparclite-*-elf*)
3286 tm_file="sparc/liteelf.h libgloss.h"
3287 tmake_file=sparc/t-sparclite
3288 extra_parts="crtbegin.o crtend.o"
3289 ;;
3290 sparc86x-*-aout*)
3291 tm_file="sparc/sp86x-aout.h aoutos.h libgloss.h"
3292 tmake_file=sparc/t-sp86x
3293 ;;
3294 sparc86x-*-elf*)
3295 tm_file="sparc/sp86x-elf.h libgloss.h"
3296 tmake_file=sparc/t-sp86x
3297 extra_parts="crtbegin.o crtend.o"
3298 ;;
46f18e7b
RK
3299 sparc64-*-aout*)
3300 tmake_file=sparc/t-sp64
3301 tm_file=sparc/sp64-aout.h
3302 ;;
3303 sparc64-*-elf*)
3304 tmake_file=sparc/t-sp64
3305 tm_file=sparc/sp64-elf.h
3306 extra_parts="crtbegin.o crtend.o"
3307 ;;
956d6950 3308 sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux
345a6161 3309 tmake_file="t-linux sparc/t-linux64"
2334126e
DE
3310 xm_file="sparc/xm-sp64.h sparc/xm-linux.h"
3311 tm_file=sparc/linux64.h
3312 xmake_file=x-linux
345a6161 3313 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
2334126e 3314 gnu_ld=yes
39c440fc 3315 float_format=sparc
2334126e 3316 ;;
46f18e7b
RK
3317# This hasn't been upgraded to GCC 2.
3318# tahoe-harris-*) # Harris tahoe, using COFF.
3319# tm_file=tahoe/harris.h
3320# ;;
3321# tahoe-*-bsd*) # tahoe running BSD
3322# ;;
e98e406f
NC
3323 thumb-*-coff* | thumbel-*-coff*)
3324 tm_file=arm/tcoff.h
3325 out_file=arm/thumb.c
3326 xm_file=arm/xm-thumb.h
3327 md_file=arm/thumb.md
3328 tmake_file=arm/t-thumb
3329 ;;
c83fe036
NC
3330 thumb-*-elf* | thumbel-*-elf*)
3331 tm_file=arm/telf.h
3332 out_file=arm/thumb.c
3333 xm_file=arm/xm-thumb.h
3334 md_file=arm/thumb.md
3335 tmake_file=arm/t-thumb-elf
3336 ;;
483f6332
PB
3337 thumb-*-linux-gnu*)
3338 tm_file=arm/linux-telf.h
3339 out_file=arm/thumb.c
3340 xm_file=arm/xm-thumb.h
3341 md_file=arm/thumb.md
3342 tmake_file=arm/t-thumb-linux
3343 ;;
3344 thumb-*-uclinux*)
3345 tm_file=arm/uclinux-telf.h
3346 out_file=arm/thumb.c
3347 md_file=arm/thumb.md
3348 tmake_file=arm/t-thumb-linux
3349 xm_file=arm/xm-thumb.h
3350 ;;
28897609
MS
3351 thumb-wrs-vxworks)
3352 tm_file=arm/tcoff.h
3353 out_file=arm/thumb.c
3354 xm_file=arm/xm-thumb.h
3355 md_file=arm/thumb.md
3356 tmake_file=arm/t-thumb
3357 thread_file='vxworks'
3358 ;;
cb805c2d
NC
3359 thumb-*-pe)
3360 tm_file=arm/tpe.h
3361 out_file=arm/thumb.c
3362 xm_file=arm/xm-thumb.h
3363 md_file=arm/thumb.md
3364 tmake_file=arm/t-pe-thumb
3365 extra_objs=pe.o
3366 ;;
46f18e7b
RK
3367# This hasn't been upgraded to GCC 2.
3368# tron-*-*)
3369# cpu_type=gmicro
3370# use_collect2=yes
3371# ;;
f84271d9
JL
3372 v850-*-*)
3373 cpu_type=v850
3374 tm_file="v850/v850.h"
3375 xm_file="v850/xm-v850.h"
62db76ee 3376 tmake_file=v850/t-v850
75bffa71 3377 if test x$stabs = xyes
f84271d9
JL
3378 then
3379 tm_file="${tm_file} dbx.h"
3380 fi
3381 use_collect2=no
3382 ;;
46f18e7b
RK
3383 vax-*-bsd*) # vaxen running BSD
3384 use_collect2=yes
3385 float_format=vax
3386 ;;
3387 vax-*-sysv*) # vaxen running system V
3388 tm_file="${tm_file} vax/vaxv.h"
61536478 3389 xm_defines=USG
46f18e7b
RK
3390 float_format=vax
3391 ;;
3392 vax-*-netbsd*)
3393 tm_file="${tm_file} netbsd.h vax/netbsd.h"
e47f44f4 3394 tmake_file=t-netbsd
46f18e7b 3395 float_format=vax
af0ca027 3396 use_collect2=yes
46f18e7b 3397 ;;
1b4a979b 3398 vax-*-openbsd*)
766518a0 3399 tmake_file="${tmake_file} vax/t-openbsd"
1b4a979b 3400 ;;
46f18e7b
RK
3401 vax-*-ultrix*) # vaxen running ultrix
3402 tm_file="${tm_file} vax/ultrix.h"
3403 use_collect2=yes
3404 float_format=vax
3405 ;;
3406 vax-*-vms*) # vaxen running VMS
3407 xm_file=vax/xm-vms.h
3408 tm_file=vax/vms.h
3409 float_format=vax
3410 ;;
3411 vax-*-*) # vax default entry
3412 float_format=vax
3413 ;;
3414 we32k-att-sysv*)
3415 xm_file="${xm_file} xm-svr3"
3416 use_collect2=yes
3417 ;;
3418 *)
3419 echo "Configuration $machine not supported" 1>&2
3420 exit 1
3421 ;;
3422 esac
3423
3424 case $machine in
3425 *-*-linux-gnu*)
61536478 3426 ;; # Existing GNU/Linux systems do not use the GNU setup.
46f18e7b
RK
3427 *-*-gnu*)
3428 # On the GNU system, the setup is just about the same on
3429 # each different CPU. The specific machines that GNU
3430 # supports are matched above and just set $cpu_type.
61536478 3431 xm_file="xm-gnu.h ${xm_file}"
46f18e7b 3432 tm_file=${cpu_type}/gnu.h
6b403743 3433 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
46f18e7b
RK
3434 # GNU always uses ELF.
3435 elf=yes
3436 # GNU tools are the only tools.
3437 gnu_ld=yes
3438 gas=yes
46f18e7b
RK
3439 xmake_file=x-linux # These details are the same as Linux.
3440 tmake_file=t-gnu # These are not.
3441 ;;
3442 *-*-sysv4*)
46f18e7b 3443 xmake_try_sysv=x-sysv
46f18e7b
RK
3444 install_headers_dir=install-headers-cpio
3445 ;;
3446 *-*-sysv*)
46f18e7b
RK
3447 install_headers_dir=install-headers-cpio
3448 ;;
3449 esac
3450
61536478 3451 # Distinguish i[34567]86
46f18e7b
RK
3452 # Also, do not run mips-tfile on MIPS if using gas.
3453 # Process --with-cpu= for PowerPC/rs6000
3454 target_cpu_default2=
3455 case $machine in
3456 i486-*-*)
3457 target_cpu_default2=1
3458 ;;
3459 i586-*-*)
83f4345f
PT
3460 case $target_alias in
3461 k6-*)
3462 target_cpu_default2=4
3463 ;;
3464 *)
3465 target_cpu_default2=2
3466 ;;
3467 esac
46f18e7b 3468 ;;
61536478 3469 i686-*-* | i786-*-*)
46f18e7b
RK
3470 target_cpu_default2=3
3471 ;;
08fc0184
RK
3472 alpha*-*-*)
3473 case $machine in
e9a25f70 3474 alphaev6*)
de4abb91 3475 target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX"
e9a25f70
JL
3476 ;;
3477 alphapca56*)
fbb5ed67 3478 target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX"
e9a25f70 3479 ;;
08fc0184 3480 alphaev56*)
e9a25f70 3481 target_cpu_default2="MASK_CPU_EV5|MASK_BWX"
08fc0184
RK
3482 ;;
3483 alphaev5*)
3484 target_cpu_default2="MASK_CPU_EV5"
3485 ;;
3486 esac
3487
75bffa71 3488 if test x$gas = xyes
46f18e7b 3489 then
75bffa71 3490 if test "$target_cpu_default2" = ""
08fc0184 3491 then
e71c3bb0 3492 target_cpu_default2="MASK_GAS"
08fc0184 3493 else
e71c3bb0 3494 target_cpu_default2="${target_cpu_default2}|MASK_GAS"
08fc0184 3495 fi
46f18e7b
RK
3496 fi
3497 ;;
956d6950
JL
3498 arm*-*-*)
3499 case "x$with_cpu" in
3500 x)
3501 # The most generic
3502 target_cpu_default2="TARGET_CPU_generic"
3503 ;;
3504
3505 # Distinguish cores, and major variants
3506 # arm7m doesn't exist, but D & I don't affect code
3507 xarm[23678] | xarm250 | xarm[67][01]0 \
3508 | xarm7m | xarm7dm | xarm7dmi | xarm7tdmi \
3509 | xarm7100 | xarm7500 | xarm7500fe | xarm810 \
8f8d3278 3510 | xstrongarm | xstrongarm110 | xstrongarm1100)
956d6950
JL
3511 target_cpu_default2="TARGET_CPU_$with_cpu"
3512 ;;
3513
3514 xyes | xno)
3515 echo "--with-cpu must be passed a value" 1>&2
3516 exit 1
3517 ;;
3518
3519 *)
75bffa71 3520 if test x$pass2done = xyes
956d6950
JL
3521 then
3522 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3523 exit 1
3524 fi
3525 ;;
3526 esac
3527 ;;
3528
46f18e7b 3529 mips*-*-ecoff* | mips*-*-elf*)
75bffa71 3530 if test x$gas = xyes
46f18e7b 3531 then
75bffa71 3532 if test x$gnu_ld = xyes
46f18e7b
RK
3533 then
3534 target_cpu_default2=20
3535 else
3536 target_cpu_default2=16
3537 fi
3538 fi
3539 ;;
3540 mips*-*-*)
75bffa71 3541 if test x$gas = xyes
46f18e7b
RK
3542 then
3543 target_cpu_default2=16
3544 fi
3545 ;;
3546 powerpc*-*-* | rs6000-*-*)
3547 case "x$with_cpu" in
3548 x)
3549 ;;
3550
3551 xcommon | xpower | xpower2 | xpowerpc | xrios \
52cddadb
MM
3552 | xrios1 | xrios2 | xrsc | xrsc1 \
3553 | x601 | x602 | x603 | x603e | x604 | x604e | x620 \
507ba956 3554 | xec603e | x740 | x750 | x401 \
52cddadb 3555 | x403 | x505 | x801 | x821 | x823 | x860)
f24b370a 3556 target_cpu_default2="\"$with_cpu\""
46f18e7b
RK
3557 ;;
3558
3559 xyes | xno)
3560 echo "--with-cpu must be passed a value" 1>&2
3561 exit 1
3562 ;;
3563
3564 *)
75bffa71 3565 if test x$pass2done = xyes
956d6950
JL
3566 then
3567 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3568 exit 1
3569 fi
46f18e7b
RK
3570 ;;
3571 esac
3572 ;;
3573 sparc*-*-*)
3574 case ".$with_cpu" in
3575 .)
3576 target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`"
3577 ;;
8947065c 3578 .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9)
46f18e7b
RK
3579 target_cpu_default2="TARGET_CPU_$with_cpu"
3580 ;;
3581 *)
75bffa71 3582 if test x$pass2done = xyes
956d6950
JL
3583 then
3584 echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2
3585 exit 1
3586 fi
46f18e7b
RK
3587 ;;
3588 esac
3589 ;;
3590 esac
3591
75bffa71 3592 if test "$target_cpu_default2" != ""
46f18e7b 3593 then
75bffa71 3594 if test "$target_cpu_default" != ""
46f18e7b
RK
3595 then
3596 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
3597 else
3598 target_cpu_default=$target_cpu_default2
3599 fi
3600 fi
3601
3602 # No need for collect2 if we have the GNU linker.
d460fb3c
JM
3603 # Actually, there is now; GNU ld doesn't handle the EH info or
3604 # collecting for shared libraries.
ca8c3b37
JM
3605 #case x$gnu_ld in
3606 #xyes)
3607 # use_collect2=
3608 # ;;
3609 #esac
46f18e7b
RK
3610
3611# Save data on machine being used to compile GCC in build_xm_file.
3612# Save data on host machine in vars host_xm_file and host_xmake_file.
75bffa71 3613 if test x$pass1done = x
46f18e7b 3614 then
75bffa71 3615 if test x"$xm_file" = x
46f18e7b
RK
3616 then build_xm_file=$cpu_type/xm-$cpu_type.h
3617 else build_xm_file=$xm_file
3618 fi
61536478 3619 build_xm_defines=$xm_defines
46f18e7b
RK
3620 build_install_headers_dir=$install_headers_dir
3621 build_exeext=$exeext
3622 pass1done=yes
3623 else
75bffa71 3624 if test x$pass2done = x
46f18e7b 3625 then
75bffa71 3626 if test x"$xm_file" = x
46f18e7b
RK
3627 then host_xm_file=$cpu_type/xm-$cpu_type.h
3628 else host_xm_file=$xm_file
3629 fi
61536478 3630 host_xm_defines=$xm_defines
75bffa71 3631 if test x"$xmake_file" = x
46f18e7b
RK
3632 then xmake_file=$cpu_type/x-$cpu_type
3633 fi
3634 host_xmake_file="$xmake_file"
3635 host_truncate_target=$truncate_target
3636 host_extra_gcc_objs=$extra_gcc_objs
3637 host_extra_objs=$extra_host_objs
6e26218f 3638 host_exeext=$exeext
46f18e7b
RK
3639 pass2done=yes
3640 fi
3641 fi
3642done
3643
3644extra_objs="${host_extra_objs} ${extra_objs}"
3645
3646# Default the target-machine variables that were not explicitly set.
75bffa71 3647if test x"$tm_file" = x
46f18e7b
RK
3648then tm_file=$cpu_type/$cpu_type.h; fi
3649
75bffa71 3650if test x$extra_headers = x
46f18e7b
RK
3651then extra_headers=; fi
3652
75bffa71 3653if test x"$xm_file" = x
46f18e7b
RK
3654then xm_file=$cpu_type/xm-$cpu_type.h; fi
3655
75bffa71 3656if test x$md_file = x
e98e406f 3657then md_file=$cpu_type/$cpu_type.md; fi
46f18e7b 3658
75bffa71 3659if test x$out_file = x
46f18e7b
RK
3660then out_file=$cpu_type/$cpu_type.c; fi
3661
75bffa71 3662if test x"$tmake_file" = x
46f18e7b
RK
3663then tmake_file=$cpu_type/t-$cpu_type
3664fi
3665
90e6a802
RL
3666if test x"$dwarf2" = xyes
3667then tm_file="tm-dwarf2.h $tm_file"
3668fi
3669
75bffa71 3670if test x$float_format = x
46f18e7b
RK
3671then float_format=i64
3672fi
3673
027ea2a7
JW
3674if test $float_format = none
3675then float_h_file=Makefile.in
3676else float_h_file=float-$float_format.h
3677fi
3678
9fc9b82a 3679# Handle cpp installation.
3ecc3258 3680if test x$enable_cpp != xno
9fc9b82a
L
3681then
3682 tmake_file="$tmake_file t-install-cpp"
3683fi
3684
46f18e7b
RK
3685# Say what files are being used for the output code and MD file.
3686echo "Using \`$srcdir/config/$out_file' to output insns."
3687echo "Using \`$srcdir/config/$md_file' as machine description file."
3688
3689count=a
3690for f in $tm_file; do
3691 count=${count}x
3692done
75bffa71 3693if test $count = ax; then
46f18e7b
RK
3694 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
3695else
3696 echo "Using the following target machine macro files:"
3697 for f in $tm_file; do
3698 echo " $srcdir/config/$f"
3699 done
3700fi
3701
3702count=a
3703for f in $host_xm_file; do
3704 count=${count}x
3705done
75bffa71 3706if test $count = ax; then
46f18e7b
RK
3707 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
3708else
3709 echo "Using the following host machine macro files:"
3710 for f in $host_xm_file; do
3711 echo " $srcdir/config/$f"
3712 done
3713fi
3714
75bffa71 3715if test "$host_xm_file" != "$build_xm_file"; then
46f18e7b
RK
3716 count=a
3717 for f in $build_xm_file; do
3718 count=${count}x
3719 done
75bffa71 3720 if test $count = ax; then
46f18e7b
RK
3721 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
3722 else
3723 echo "Using the following build machine macro files:"
3724 for f in $build_xm_file; do
3725 echo " $srcdir/config/$f"
3726 done
3727 fi
3728fi
3729
75bffa71
ILT
3730if test x$thread_file = x; then
3731 if test x$target_thread_file != x; then
a851212a
JW
3732 thread_file=$target_thread_file
3733 else
3734 thread_file='single'
3735 fi
46f18e7b 3736fi
46f18e7b
RK
3737
3738# Set up the header files.
3739# $links is the list of header files to create.
3740# $vars is the list of shell variables with file names to include.
b7cb92ad 3741# auto-host.h is the file containing items generated by autoconf and is
e9a25f70 3742# the first file included by config.h.
61536478 3743null_defines=
64ccbc99 3744host_xm_file="auto-host.h gansidecl.h ${host_xm_file} hwint.h"
db81d74a 3745
b7cb92ad 3746# If host=build, it is correct to have hconfig include auto-host.h
db81d74a
RH
3747# as well. If host!=build, we are in error and need to do more
3748# work to find out the build config parameters.
75bffa71 3749if test x$host = x$build
db81d74a 3750then
64ccbc99 3751 build_xm_file="auto-host.h gansidecl.h ${build_xm_file} hwint.h"
b7cb92ad
JL
3752else
3753 # We create a subdir, then run autoconf in the subdir.
3754 # To prevent recursion we set host and build for the new
3755 # invocation of configure to the build for this invocation
3756 # of configure.
3757 tempdir=build.$$
3758 rm -rf $tempdir
3759 mkdir $tempdir
3760 cd $tempdir
3761 case ${srcdir} in
3762 /*) realsrcdir=${srcdir};;
3763 *) realsrcdir=../${srcdir};;
3764 esac
fe81dd69 3765 CC=${CC_FOR_BUILD} ${realsrcdir}/configure \
b7cb92ad
JL
3766 --target=$target --host=$build --build=$build
3767
3768 # We just finished tests for the build machine, so rename
3769 # the file auto-build.h in the gcc directory.
3770 mv auto-host.h ../auto-build.h
3771 cd ..
3772 rm -rf $tempdir
64ccbc99 3773 build_xm_file="auto-build.h gansidecl.h ${build_xm_file} hwint.h"
db81d74a
RH
3774fi
3775
0056a9b5
KG
3776xm_file="gansidecl.h ${xm_file}"
3777tm_file="gansidecl.h ${tm_file}"
3778
46f18e7b 3779vars="host_xm_file tm_file xm_file build_xm_file"
e9a25f70 3780links="config.h tm.h tconfig.h hconfig.h"
61536478 3781defines="host_xm_defines null_defines xm_defines build_xm_defines"
46f18e7b
RK
3782
3783rm -f config.bak
75bffa71 3784if test -f config.status; then mv -f config.status config.bak; fi
46f18e7b
RK
3785
3786# Make the links.
75bffa71 3787while test -n "$vars"
46f18e7b 3788do
46f18e7b
RK
3789 set $vars; var=$1; shift; vars=$*
3790 set $links; link=$1; shift; links=$*
61536478 3791 set $defines; define=$1; shift; defines=$*
46f18e7b
RK
3792
3793 rm -f $link
3794
3795 # Define TARGET_CPU_DEFAULT if the system wants one.
3796 # This substitutes for lots of *.h files.
75bffa71 3797 if test "$target_cpu_default" != "" -a $link = tm.h
46f18e7b 3798 then
8fbf199e 3799 echo "#define TARGET_CPU_DEFAULT ($target_cpu_default)" >>$link
46f18e7b
RK
3800 fi
3801
3802 for file in `eval echo '$'$var`; do
ab87f8c8
JL
3803 case $file in
3804 auto-config.h)
3805 ;;
3806 *)
3807 echo '#ifdef IN_GCC' >>$link
3808 ;;
3809 esac
46f18e7b 3810 echo "#include \"$file\"" >>$link
ab87f8c8
JL
3811 case $file in
3812 auto-config.h)
3813 ;;
3814 *)
3815 echo '#endif' >>$link
3816 ;;
3817 esac
46f18e7b 3818 done
61536478
JL
3819
3820 for def in `eval echo '$'$define`; do
3821 echo "#ifndef $def" >>$link
3822 echo "#define $def" >>$link
3823 echo "#endif" >>$link
3824 done
46f18e7b
RK
3825done
3826
3827# Truncate the target if necessary
75bffa71 3828if test x$host_truncate_target != x; then
46f18e7b
RK
3829 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
3830fi
3831
f1943b77 3832# Get the version trigger filename from the toplevel
75bffa71 3833if test "${with_gcc_version_trigger+set}" = set; then
f1943b77
MH
3834 gcc_version_trigger=$with_gcc_version_trigger
3835else
3836 gcc_version_trigger=${srcdir}/version.c
3837fi
75bffa71
ILT
3838changequote(,)dnl
3839gcc_version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < ${gcc_version_trigger}`
3840changequote([,])dnl
46f18e7b 3841
ab87f8c8
JL
3842# Internationalization
3843PACKAGE=gcc
3844VERSION="$gcc_version"
3845AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE")
3846AC_DEFINE_UNQUOTED(VERSION, "$VERSION")
3847AC_SUBST(PACKAGE)
3848AC_SUBST(VERSION)
3849
3850ALL_LINGUAS="en_UK"
3851
3852# NLS support is still experimental, so disable it by default for now.
3853AC_ARG_ENABLE(nls,
3854 [ --enable-nls use Native Language Support (disabled by default)],
3855 , enable_nls=no)
3856
3857AM_GNU_GETTEXT
3858XGETTEXT="AWK='$AWK' \$(SHELL) \$(top_srcdir)/exgettext $XGETTEXT"
3859
f4ab28e3
MK
3860# Windows32 Registry support for specifying GCC installation paths.
3861AC_ARG_ENABLE(win32-registry,
3862[ --disable-win32-registry
3863 Disable lookup of installation paths in the
3864 Registry on Windows hosts.
3865 --enable-win32-registry Enable registry lookup (default).
3866 --enable-win32-registry=KEY
3867 Use KEY instead of GCC version as the last portion
3868 of the registry key.],,)
3869
3870AC_MSG_CHECKING(whether windows registry support is requested)
3871if test x$enable_win32_registry != xno; then
3872 AC_DEFINE(ENABLE_WIN32_REGISTRY)
3873 AC_MSG_RESULT(yes)
3874else
3875 AC_MSG_RESULT(no)
3876fi
3877
3878# Check if user specified a different registry key.
3879case x${enable_win32_registry} in
3880x | xyes)
3881 # default.
3882 gcc_cv_win32_registry_key="$VERSION"
3883 ;;
3884xno)
3885 # no registry lookup.
3886 gcc_cv_win32_registry_key=''
3887 ;;
3888*)
3889 # user-specified key.
3890 gcc_cv_win32_registry_key="$enable_win32_registry"
3891 ;;
3892esac
3893
3894if test x$enable_win32_registry != xno; then
3895 AC_MSG_CHECKING(registry key on windows hosts)
3896 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key")
3897 AC_MSG_RESULT($gcc_cv_win32_registry_key)
3898fi
3899
7fa10b25
RK
3900# Get an absolute path to the GCC top-level source directory
3901holddir=`pwd`
3902cd $srcdir
3903topdir=`pwd`
3904cd $holddir
3905
af5e4ada 3906# Conditionalize the makefile for this host machine.
94f42018
DE
3907# Make-host contains the concatenation of all host makefile fragments
3908# [there can be more than one]. This file is built by configure.frag.
3909host_overrides=Make-host
af5e4ada 3910dep_host_xmake_file=
94f42018
DE
3911for f in .. ${host_xmake_file}
3912do
75bffa71 3913 if test -f ${srcdir}/config/$f
94f42018
DE
3914 then
3915 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
3916 fi
3917done
46f18e7b 3918
af5e4ada 3919# Conditionalize the makefile for this target machine.
94f42018
DE
3920# Make-target contains the concatenation of all host makefile fragments
3921# [there can be more than one]. This file is built by configure.frag.
3922target_overrides=Make-target
af5e4ada 3923dep_tmake_file=
94f42018
DE
3924for f in .. ${tmake_file}
3925do
75bffa71 3926 if test -f ${srcdir}/config/$f
94f42018
DE
3927 then
3928 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
3929 fi
3930done
5891b37d 3931
af5e4ada
DE
3932# If the host doesn't support symlinks, modify CC in
3933# FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
3934# Otherwise, we can use "CC=$(CC)".
3935rm -f symtest.tem
61536478 3936if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
af5e4ada
DE
3937then
3938 cc_set_by_configure="\$(CC)"
5aa82ace 3939 quoted_cc_set_by_configure="\$(CC)"
af5e4ada
DE
3940 stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
3941else
61536478
JL
3942 rm -f symtest.tem
3943 if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
3944 then
3945 symbolic_link="cp -p"
3946 else
3947 symbolic_link="cp"
3948 fi
af5e4ada 3949 cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
5aa82ace 3950 quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
af5e4ada
DE
3951 stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
3952fi
3953rm -f symtest.tem
5891b37d 3954
af5e4ada 3955out_object_file=`basename $out_file .c`.o
5891b37d 3956
af5e4ada
DE
3957tm_file_list=
3958for f in $tm_file; do
64ccbc99
KG
3959 case $f in
3960 gansidecl.h )
3961 tm_file_list="${tm_file_list} $f" ;;
3962 *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
3963 esac
af5e4ada 3964done
46f18e7b 3965
af5e4ada
DE
3966host_xm_file_list=
3967for f in $host_xm_file; do
64ccbc99
KG
3968 case $f in
3969 auto-host.h | gansidecl.h | hwint.h )
3970 host_xm_file_list="${host_xm_file_list} $f" ;;
3971 *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
3972 esac
af5e4ada
DE
3973done
3974
3975build_xm_file_list=
3976for f in $build_xm_file; do
64ccbc99
KG
3977 case $f in
3978 auto-build.h | auto-host.h | gansidecl.h | hwint.h )
3979 build_xm_file_list="${build_xm_file_list} $f" ;;
3980 *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
3981 esac
af5e4ada 3982done
46f18e7b 3983
af5e4ada
DE
3984# Define macro CROSS_COMPILE in compilation
3985# if this is a cross-compiler.
3986# Also use all.cross instead of all.internal
3987# and add cross-make to Makefile.
571a8de5 3988cross_overrides="/dev/null"
75bffa71 3989if test x$host != x$target
af5e4ada
DE
3990then
3991 cross_defines="CROSS=-DCROSS_COMPILE"
3992 cross_overrides="${topdir}/cross-make"
3993fi
46f18e7b 3994
af5e4ada
DE
3995# When building gcc with a cross-compiler, we need to fix a few things.
3996# This must come after cross-make as we want all.build to override
3997# all.cross.
571a8de5 3998build_overrides="/dev/null"
75bffa71 3999if test x$build != x$host
af5e4ada
DE
4000then
4001 build_overrides="${topdir}/build-make"
4002fi
46f18e7b 4003
ae3a15bb
DE
4004# Expand extra_headers to include complete path.
4005# This substitutes for lots of t-* files.
4006extra_headers_list=
75bffa71 4007if test "x$extra_headers" = x
ae3a15bb
DE
4008then true
4009else
4010 # Prepend ${srcdir}/ginclude/ to every entry in extra_headers.
4011 for file in $extra_headers;
4012 do
4013 extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/${file}"
4014 done
4015fi
4016
75bffa71 4017if test x$use_collect2 = xno; then
2ce3c6c6
JM
4018 use_collect2=
4019fi
4020
af5e4ada
DE
4021# Add a definition of USE_COLLECT2 if system wants one.
4022# Also tell toplev.c what to do.
4023# This substitutes for lots of t-* files.
75bffa71 4024if test x$use_collect2 = x
af5e4ada
DE
4025then
4026 will_use_collect2=
4027 maybe_use_collect2=
4028else
10da1131 4029 will_use_collect2="collect2"
af5e4ada
DE
4030 maybe_use_collect2="-DUSE_COLLECT2"
4031fi
4032
4033# NEED TO CONVERT
4034# Set MD_DEPS if the real md file is in md.pre-cpp.
4035# Set MD_CPP to the cpp to pass the md file through. Md files use ';'
4036# for line oriented comments, so we must always use a GNU cpp. If
4037# building gcc with a cross compiler, use the cross compiler just
4038# built. Otherwise, we can use the cpp just built.
4039md_file_sub=
75bffa71 4040if test "x$md_cppflags" = x
af5e4ada
DE
4041then
4042 md_file_sub=$srcdir/config/$md_file
4043else
4044 md_file=md
4045fi
4046
4047# If we have gas in the build tree, make a link to it.
75bffa71 4048if test -f ../gas/Makefile; then
6e26218f 4049 rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
af5e4ada
DE
4050fi
4051
4b95eb49 4052# If we have nm in the build tree, make a link to it.
75bffa71 4053if test -f ../binutils/Makefile; then
4b95eb49
JL
4054 rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
4055fi
4056
af5e4ada 4057# If we have ld in the build tree, make a link to it.
75bffa71
ILT
4058if test -f ../ld/Makefile; then
4059# if test x$use_collect2 = x; then
6e26218f 4060# rm -f ld; $symbolic_link ../ld/ld-new$host_exeext ld$host_exeext 2>/dev/null
aa32d841 4061# else
6e26218f 4062 rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
aa32d841 4063# fi
af5e4ada
DE
4064fi
4065
9e423e6d
JW
4066# Figure out what assembler alignment features are present.
4067AC_MSG_CHECKING(assembler alignment features)
4068gcc_cv_as=
4069gcc_cv_as_alignment_features=
a2f319ea 4070gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
3ccc3a56
AO
4071if test -x "$DEFAULT_ASSEMBLER"; then
4072 gcc_cv_as="$DEFAULT_ASSEMBLER"
4073elif test -x "$AS"; then
4074 gcc_cv_as="$AS"
ab339d62 4075elif test -x as$host_exeext; then
9e423e6d
JW
4076 # Build using assembler in the current directory.
4077 gcc_cv_as=./as$host_exeext
5585c1bc 4078elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
9e423e6d 4079 # Single tree build which includes gas.
a2c9d57c 4080 for f in $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
9e423e6d 4081 do
75bffa71
ILT
4082changequote(,)dnl
4083 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
4084changequote([,])dnl
4085 if test x$gcc_cv_gas_version != x; then
9e423e6d
JW
4086 break
4087 fi
4088 done
75bffa71
ILT
4089changequote(,)dnl
4090 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
4091 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
4092changequote([,])dnl
4093 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
0b9d02c6
JL
4094 # Gas version 2.6 and later support for .balign and .p2align.
4095 # bytes to skip when using .p2align.
75bffa71 4096 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
0b9d02c6
JL
4097 gcc_cv_as_alignment_features=".balign and .p2align"
4098 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4099 fi
4100 # Gas version 2.8 and later support specifying the maximum
4101 # bytes to skip when using .p2align.
75bffa71 4102 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
0b9d02c6
JL
4103 gcc_cv_as_alignment_features=".p2align including maximum skip"
4104 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4105 fi
9e423e6d 4106 fi
75bffa71 4107elif test x$host = x$target; then
9e423e6d 4108 # Native build.
779243f7
JL
4109 # Search the same directories that the installed compiler will
4110 # search. Else we may find the wrong assembler and lose. If we
4111 # do not find a suitable assembler binary, then try the user's
4112 # path.
4113 #
4114 # Also note we have to check MD_EXEC_PREFIX before checking the
4115 # user's path. Unfortunately, there is no good way to get at the
4116 # value of MD_EXEC_PREFIX here. So we do a brute force search
4117 # through all the known MD_EXEC_PREFIX values. Ugh. This needs
4118 # to be fixed as part of the make/configure rewrite too.
4119
4120 if test "x$exec_prefix" = xNONE; then
4121 if test "x$prefix" = xNONE; then
4122 test_prefix=/usr/local
4123 else
4124 test_prefix=$prefix
4125 fi
4126 else
4127 test_prefix=$exec_prefix
4128 fi
4129
4130 # If the loop below does not find an assembler, then use whatever
4131 # one we can find in the users's path.
4132 # user's path.
4133 as=as$host_exeext
4134
4135 test_dirs="$test_prefix/lib/gcc-lib/$target/$gcc_version \
4136 $test_prefix/lib/gcc-lib/$target \
4137 /usr/lib/gcc/$target/$gcc_version \
4138 /usr/lib/gcc/$target \
4139 $test_prefix/$target/bin/$target/$gcc_version \
4140 $test_prefix/$target/bin \
4141 /usr/libexec \
4142 /usr/ccs/gcc \
4143 /usr/ccs/bin \
4144 /udk/usr/ccs/bin \
4145 /bsd43/usr/lib/cmplrs/cc \
4146 /usr/cross64/usr/bin \
4147 /usr/lib/cmplrs/cc \
4148 /sysv/usr/lib/cmplrs/cc \
4149 /svr4/usr/lib/cmplrs/cc \
4150 /usr/bin"
4151
4152 for dir in $test_dirs; do
4153 if test -f $dir/as$host_exeext; then
4154 gcc_cv_as=$dir/as$host_exeext
4155 break;
4156 fi
4157 done
9e423e6d 4158fi
75bffa71 4159if test x$gcc_cv_as != x; then
00ccc16d
JL
4160 # Check if we have .balign and .p2align
4161 echo ".balign 4" > conftest.s
4162 echo ".p2align 2" >> conftest.s
4163 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4164 gcc_cv_as_alignment_features=".balign and .p2align"
4165 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
4166 fi
4167 rm -f conftest.s conftest.o
9e423e6d
JW
4168 # Check if specifying the maximum bytes to skip when
4169 # using .p2align is supported.
4170 echo ".p2align 4,,7" > conftest.s
4171 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4172 gcc_cv_as_alignment_features=".p2align including maximum skip"
4173 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
4174 fi
4175 rm -f conftest.s conftest.o
4176fi
4177AC_MSG_RESULT($gcc_cv_as_alignment_features)
4178
d1accaa3
JJ
4179AC_MSG_CHECKING(assembler subsection support)
4180gcc_cv_as_subsections=
4181if test x$gcc_cv_as != x; then
4182 # Check if we have .subsection
4183 echo ".subsection 1" > conftest.s
4184 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4185 gcc_cv_as_subsections=".subsection"
4186 if test -x nm$host_exeext; then
4187 gcc_cv_nm=./nm$host_exeext
4188 elif test x$host = x$target; then
4189 # Native build.
4190 gcc_cv_nm=nm$host_exeext
4191 fi
4192 if test x$gcc_cv_nm != x; then
4193 cat > conftest.s <<EOF
4194conftest_label1: .word 0
4195.subsection -1
4196conftest_label2: .word 0
4197.previous
4198EOF
4199 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4200 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
4201 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1b015bec
AO
4202 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
4203 :
4204 else
d1accaa3
JJ
4205 gcc_cv_as_subsections="working .subsection -1"
4206 AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING)
4207 fi
4208 fi
4209 fi
4210 fi
4211 rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
4212fi
4213AC_MSG_RESULT($gcc_cv_as_subsections)
4214
1cb36a98
RH
4215case "$target" in
4216 sparc*-*-*)
4217 AC_MSG_CHECKING(assembler .register pseudo-op support)
4218 gcc_cv_as_register_pseudo_op=
4219 if test x$gcc_cv_as != x; then
4220 # Check if we have .register
4221 echo ".register %g2, #scratch" > conftest.s
4222 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4223 gcc_cv_as_register_pseudo_op=yes
4224 AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP)
4225 fi
4226 rm -f conftest.s conftest.o
4227 fi
4228 AC_MSG_RESULT($gcc_cv_as_register_pseudo_op)
4229
4230 AC_MSG_CHECKING([assembler offsetable %lo() support])
4231 gcc_cv_as_offsetable_lo10=
4232 if test x$gcc_cv_as != x; then
4233 # Check if assembler has offsetable %lo()
4234 echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
4235 echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
4236 gcc_cv_as_flags64="-xarch=v9"
4237 if ! $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4238 gcc_cv_as_flags64="-64"
4239 if ! $gcc_cv_as $gcc_cv_as_flags64 -o conftest.o conftest.s > /dev/null 2>&1; then
4240 gcc_cv_as_flags64=""
4241 fi
4242 fi
4243 if test -n "$gcc_cv_as_flags64" ; then
4244 if $gcc_cv_as $gcc_cv_as_flags64 -o conftest1.o conftest1.s > /dev/null 2>&1; then
4245 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
4246 :
4247 else
4248 gcc_cv_as_offsetable_lo10=yes
4249 AC_DEFINE(HAVE_AS_OFFSETABLE_LO10)
4250 fi
4251 fi
4252 fi
4253 rm -f conftest.s conftest.o conftest1.s conftest1.o
4254 fi
4255 AC_MSG_RESULT($gcc_cv_as_offsetable_lo10)
4256 ;;
4257
4258changequote(,)dnl
4259 i[34567]86-*-*)
4260changequote([,])dnl
4261 AC_MSG_CHECKING(assembler instructions)
4262 gcc_cv_as_instructions=
4263 if test x$gcc_cv_as != x; then
53b5ce19
JW
4264 set "filds fists" "filds mem; fists mem"
4265 while test $# -gt 0
4266 do
4267 echo "$2" > conftest.s
4268 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
4269 gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
4270 AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$1" | tr '[a-z ]' '[A-Z_]'`)
4271 fi
4272 shift 2
4273 done
4274 rm -f conftest.s conftest.o
1cb36a98
RH
4275 fi
4276 AC_MSG_RESULT($gcc_cv_as_instructions)
4277 ;;
4278esac
53b5ce19 4279
571a8de5 4280# Figure out what language subdirectories are present.
71205e0b
MH
4281# Look if the user specified --enable-languages="..."; if not, use
4282# the environment variable $LANGUAGES if defined. $LANGUAGES might
4283# go away some day.
4284if test x"${enable_languages+set}" != xset; then
4285 if test x"${LANGUAGES+set}" = xset; then
4286 enable_languages="`echo ${LANGUAGES} | tr ' ' ','`"
4287 else
4288 enable_languages=all
4289 fi
4290fi
571a8de5
DE
4291subdirs=
4292for lang in ${srcdir}/*/config-lang.in ..
4293do
4294 case $lang in
4295 ..) ;;
4296 # The odd quoting in the next line works around
4297 # an apparent bug in bash 1.12 on linux.
75bffa71
ILT
4298changequote(,)dnl
4299 ${srcdir}/[*]/config-lang.in) ;;
71205e0b
MH
4300 *)
4301 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
4302 if test "x$lang_alias" = x
4303 then
4304 echo "$lang doesn't set \$language." 1>&2
4305 exit 1
4306 fi
4307 if test x"${enable_languages}" = xall; then
4308 add_this_lang=yes
4309 else
4310 case "${enable_languages}" in
4311 ${lang_alias} | "${lang_alias},"* | *",${lang_alias},"* | *",${lang_alias}" )
4312 add_this_lang=yes
4313 ;;
4314 * )
4315 add_this_lang=no
4316 ;;
4317 esac
4318 fi
4319 if test x"${add_this_lang}" = xyes; then
4320 case $lang in
4321 ${srcdir}/ada/config-lang.in)
4322 if test x$gnat = xyes ; then
4323 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4324 fi
4325 ;;
4326 *)
4327 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
4328 ;;
4329 esac
4330 fi
4331 ;;
75bffa71 4332changequote([,])dnl
571a8de5
DE
4333 esac
4334done
4335
f24af81b
TT
4336# Make gthr-default.h if we have a thread file.
4337gthread_flags=
75bffa71 4338if test $thread_file != single; then
f24af81b 4339 rm -f gthr-default.h
db0d1ed9 4340 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
f24af81b
TT
4341 gthread_flags=-DHAVE_GTHR_DEFAULT
4342fi
4343AC_SUBST(gthread_flags)
4344
571a8de5
DE
4345# Make empty files to contain the specs and options for each language.
4346# Then add #include lines to for a compiler that has specs and/or options.
4347
4348lang_specs_files=
4349lang_options_files=
3103b7db
ML
4350lang_tree_files=
4351rm -f specs.h options.h gencheck.h
4352touch specs.h options.h gencheck.h
571a8de5
DE
4353for subdir in . $subdirs
4354do
75bffa71 4355 if test -f $srcdir/$subdir/lang-specs.h; then
571a8de5
DE
4356 echo "#include \"$subdir/lang-specs.h\"" >>specs.h
4357 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
4358 fi
75bffa71 4359 if test -f $srcdir/$subdir/lang-options.h; then
571a8de5
DE
4360 echo "#include \"$subdir/lang-options.h\"" >>options.h
4361 lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
4362 fi
3103b7db
ML
4363 if test -f $srcdir/$subdir/$subdir-tree.def; then
4364 echo "#include \"$subdir/$subdir-tree.def\"" >>gencheck.h
4365 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
4366 fi
571a8de5
DE
4367done
4368
4369# These (without "all_") are set in each config-lang.in.
4370# `language' must be a single word so is spelled singularly.
4371all_languages=
4372all_boot_languages=
4373all_compilers=
4374all_stagestuff=
4375all_diff_excludes=
9f3d1bc2 4376all_outputs='Makefile intl/Makefile po/Makefile.in fixinc/Makefile'
571a8de5
DE
4377# List of language makefile fragments.
4378all_lang_makefiles=
4379all_headers=
4380all_lib2funcs=
4381
4382# Add the language fragments.
4383# Languages are added via two mechanisms. Some information must be
4384# recorded in makefile variables, these are defined in config-lang.in.
4385# We accumulate them and plug them into the main Makefile.
4386# The other mechanism is a set of hooks for each of the main targets
4387# like `clean', `install', etc.
4388
4389language_fragments="Make-lang"
4390language_hooks="Make-hooks"
0280cf84 4391oldstyle_subdirs=
571a8de5
DE
4392
4393for s in .. $subdirs
4394do
75bffa71 4395 if test $s != ".."
571a8de5
DE
4396 then
4397 language=
4398 boot_language=
4399 compilers=
4400 stagestuff=
4401 diff_excludes=
4402 headers=
0280cf84 4403 outputs=
571a8de5
DE
4404 lib2funcs=
4405 . ${srcdir}/$s/config-lang.in
75bffa71 4406 if test "x$language" = x
571a8de5
DE
4407 then
4408 echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
4409 exit 1
4410 fi
4411 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in ${srcdir}/$s/Makefile.in"
4412 all_languages="$all_languages $language"
75bffa71 4413 if test "x$boot_language" = xyes
571a8de5
DE
4414 then
4415 all_boot_languages="$all_boot_languages $language"
4416 fi
4417 all_compilers="$all_compilers $compilers"
4418 all_stagestuff="$all_stagestuff $stagestuff"
4419 all_diff_excludes="$all_diff_excludes $diff_excludes"
4420 all_headers="$all_headers $headers"
0280cf84 4421 all_outputs="$all_outputs $outputs"
75bffa71 4422 if test x$outputs = x
0280cf84
PB
4423 then
4424 oldstyle_subdirs="$oldstyle_subdirs $s"
4425 fi
571a8de5
DE
4426 all_lib2funcs="$all_lib2funcs $lib2funcs"
4427 fi
4428done
4429
4430# Since we can't use `::' targets, we link each language in
4431# with a set of hooks, reached indirectly via lang.${target}.
4432
4433rm -f Make-hooks
4434touch Make-hooks
4435target_list="all.build all.cross start.encap rest.encap \
4436 info dvi \
4437 install-normal install-common install-info install-man \
4438 uninstall distdir \
4439 mostlyclean clean distclean extraclean maintainer-clean \
4440 stage1 stage2 stage3 stage4"
4441for t in $target_list
4442do
4443 x=
ab87f8c8 4444 for lang in .. $all_languages
571a8de5 4445 do
ab87f8c8
JL
4446 if test $lang != ".."; then
4447 x="$x $lang.$t"
571a8de5
DE
4448 fi
4449 done
4450 echo "lang.$t: $x" >> Make-hooks
4451done
4452
296e46bd
DE
4453# If we're not building in srcdir, create .gdbinit.
4454
75bffa71 4455if test ! -f Makefile.in; then
296e46bd
DE
4456 echo "dir ." > .gdbinit
4457 echo "dir ${srcdir}" >> .gdbinit
75bffa71 4458 if test x$gdb_needs_out_file_path = xyes
296e46bd
DE
4459 then
4460 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
4461 fi
75bffa71 4462 if test "x$subdirs" != x; then
296e46bd
DE
4463 for s in $subdirs
4464 do
4465 echo "dir ${srcdir}/$s" >> .gdbinit
4466 done
4467 fi
4468 echo "source ${srcdir}/.gdbinit" >> .gdbinit
4469fi
4470
88111b26
JL
4471# Define variables host_canonical and build_canonical
4472# because some Cygnus local changes in the Makefile depend on them.
4473build_canonical=${build}
4474host_canonical=${host}
4475target_subdir=
75bffa71 4476if test "${host}" != "${target}" ; then
88111b26
JL
4477 target_subdir=${target}/
4478fi
4479AC_SUBST(build_canonical)
4480AC_SUBST(host_canonical)
4481AC_SUBST(target_subdir)
4482
dec88383
DE
4483# If this is using newlib, then define inhibit_libc in
4484# LIBGCC2_CFLAGS. This will cause __eprintf to be left out of
4485# libgcc.a, but that's OK because newib should have its own version of
4486# assert.h.
4487inhibit_libc=
75bffa71 4488if test x$with_newlib = xyes; then
dec88383
DE
4489 inhibit_libc=-Dinhibit_libc
4490fi
4491AC_SUBST(inhibit_libc)
4492
8f8d3278
NC
4493# If $(exec_prefix) exists and is not the same as $(prefix), then compute an
4494# absolute path for gcc_tooldir based on inserting the number of up-directory
4495# movements required to get from $(exec_prefix) to $(prefix) into the basic
4496# $(libsubdir)/@(unlibsubdir) based path.
82cbf8f7
JL
4497# Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
4498# make and thus we'd get different behavior depending on where we built the
4499# sources.
5949a9fc 4500if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
d062c304
JL
4501 gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
4502else
8f8d3278
NC
4503changequote(<<, >>)dnl
4504# An explanation of the sed strings:
4505# -e 's|^\$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
4506# -e 's|/$||' match a trailing forward slash and eliminates it
4507# -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
4508# -e 's|/[^/]*|../|g' replaces each occurance of /<directory> with ../
4509#
4510# (*) Note this pattern overwrites the first character of the string
4511# with a forward slash if one is not already present. This is not a
4512# problem because the exact names of the sub-directories concerned is
4513# unimportant, just the number of them matters.
4514#
4515# The practical upshot of these patterns is like this:
4516#
4517# prefix exec_prefix result
4518# ------ ----------- ------
4519# /foo /foo/bar ../
4520# /foo/ /foo/bar ../
4521# /foo /foo/bar/ ../
4522# /foo/ /foo/bar/ ../
4523# /foo /foo/bar/ugg ../../
4524#
4c112cda
NC
4525 dollar='$$'
4526 gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
8f8d3278 4527changequote([, ])dnl
d062c304
JL
4528fi
4529AC_SUBST(gcc_tooldir)
4c112cda 4530AC_SUBST(dollar)
d062c304 4531
7e717196
JL
4532# Nothing to do for FLOAT_H, float_format already handled.
4533objdir=`pwd`
4534AC_SUBST(objdir)
4535
94f42018
DE
4536# Process the language and host/target makefile fragments.
4537${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
47866ac0 4538
46f18e7b
RK
4539# Substitute configuration variables
4540AC_SUBST(subdirs)
46f18e7b
RK
4541AC_SUBST(all_boot_languages)
4542AC_SUBST(all_compilers)
46f18e7b 4543AC_SUBST(all_diff_excludes)
46f18e7b 4544AC_SUBST(all_headers)
9f3d1bc2
BK
4545AC_SUBST(all_lang_makefiles)
4546AC_SUBST(all_languages)
4547AC_SUBST(all_lib2funcs)
4548AC_SUBST(all_stagestuff)
4549AC_SUBST(build_exeext)
4550AC_SUBST(build_install_headers_dir)
4551AC_SUBST(build_xm_file_list)
4552AC_SUBST(cc_set_by_configure)
5aa82ace 4553AC_SUBST(quoted_cc_set_by_configure)
9f3d1bc2 4554AC_SUBST(cpp_install_dir)
e061d1ce 4555AC_SUBST(cpp_main)
9f3d1bc2
BK
4556AC_SUBST(dep_host_xmake_file)
4557AC_SUBST(dep_tmake_file)
4558AC_SUBST(extra_c_flags)
b4294351 4559AC_SUBST(extra_c_objs)
56f48ce9 4560AC_SUBST(extra_cpp_objs)
9f3d1bc2
BK
4561AC_SUBST(extra_cxx_objs)
4562AC_SUBST(extra_headers_list)
46f18e7b 4563AC_SUBST(extra_objs)
9f3d1bc2
BK
4564AC_SUBST(extra_parts)
4565AC_SUBST(extra_passes)
4566AC_SUBST(extra_programs)
4567AC_SUBST(fixinc_defs)
4568AC_SUBST(float_h_file)
4569AC_SUBST(gcc_gxx_include_dir)
4570AC_SUBST(gcc_version)
4571AC_SUBST(gcc_version_trigger)
4572AC_SUBST(host_exeext)
46f18e7b 4573AC_SUBST(host_extra_gcc_objs)
46f18e7b 4574AC_SUBST(host_xm_file_list)
9f3d1bc2 4575AC_SUBST(install)
46f18e7b 4576AC_SUBST(lang_options_files)
9f3d1bc2 4577AC_SUBST(lang_specs_files)
3103b7db 4578AC_SUBST(lang_tree_files)
46f18e7b 4579AC_SUBST(local_prefix)
46f18e7b 4580AC_SUBST(maybe_use_collect2)
9f3d1bc2
BK
4581AC_SUBST(md_file)
4582AC_SUBST(objc_boehm_gc)
4583AC_SUBST(out_file)
4584AC_SUBST(out_object_file)
46f18e7b 4585AC_SUBST(stage_prefix_set_by_configure)
e9a25f70 4586AC_SUBST(symbolic_link)
9f3d1bc2
BK
4587AC_SUBST(thread_file)
4588AC_SUBST(tm_file_list)
4589AC_SUBST(will_use_collect2)
9fc9b82a 4590
46f18e7b
RK
4591
4592AC_SUBST_FILE(target_overrides)
4593AC_SUBST_FILE(host_overrides)
4594AC_SUBST(cross_defines)
4595AC_SUBST_FILE(cross_overrides)
4596AC_SUBST_FILE(build_overrides)
4597AC_SUBST_FILE(language_fragments)
4598AC_SUBST_FILE(language_hooks)
4599
4600# Echo that links are built
75bffa71 4601if test x$host = x$target
46f18e7b
RK
4602then
4603 str1="native "
4604else
4605 str1="cross-"
4606 str2=" from $host"
4607fi
4608
75bffa71 4609if test x$host != x$build
46f18e7b
RK
4610then
4611 str3=" on a $build system"
4612fi
4613
75bffa71 4614if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
4615then
4616 str4=
4617fi
4618
4619echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
4620
75bffa71 4621if test "x$str2" != x || test "x$str3" != x
46f18e7b
RK
4622then
4623 echo " ${str2}${str3}." 1>&2
4624fi
4625
61536478 4626# Truncate the target if necessary
75bffa71 4627if test x$host_truncate_target != x; then
61536478
JL
4628 target=`echo $target | sed -e 's/\(..............\).*/\1/'`
4629fi
4630
46f18e7b
RK
4631# Configure the subdirectories
4632# AC_CONFIG_SUBDIRS($subdirs)
4633
4634# Create the Makefile
5891b37d 4635# and configure language subdirectories
0280cf84 4636AC_OUTPUT($all_outputs,
cdcc6a01
DE
4637[
4638. $srcdir/configure.lang
4639case x$CONFIG_HEADERS in
b7cb92ad 4640xauto-host.h:config.in)
818b66cc 4641echo > cstamp-h ;;
cdcc6a01 4642esac
93cf819d
BK
4643# If the host supports symlinks, point stage[1234] at ../stage[1234] so
4644# bootstrapping and the installation procedure can still use
4645# CC="stage1/xgcc -Bstage1/". If the host doesn't support symlinks,
4646# FLAGS_TO_PASS has been modified to solve the problem there.
4647# This is virtually a duplicate of what happens in configure.lang; we do
4648# an extra check to make sure this only happens if ln -s can be used.
75bffa71 4649if test "$symbolic_link" = "ln -s"; then
93cf819d 4650 for d in .. ${subdirs} ; do
75bffa71 4651 if test $d != ..; then
4e8a434e
BK
4652 STARTDIR=`pwd`
4653 cd $d
4654 for t in stage1 stage2 stage3 stage4 include
4655 do
4656 rm -f $t
4657 $symbolic_link ../$t $t 2>/dev/null
4658 done
4659 cd $STARTDIR
93cf819d
BK
4660 fi
4661 done
4662else true ; fi
ab87f8c8
JL
4663# Avoid having to add intl to our include paths.
4664if test -f intl/libintl.h; then
4665 echo creating libintl.h
4666 echo '#include "intl/libintl.h"' >libintl.h
4667fi
cdcc6a01
DE
4668],
4669[
5891b37d
RK
4670host='${host}'
4671build='${build}'
4672target='${target}'
52060267 4673target_alias='${target_alias}'
5891b37d
RK
4674srcdir='${srcdir}'
4675subdirs='${subdirs}'
296e46bd 4676oldstyle_subdirs='${oldstyle_subdirs}'
5891b37d
RK
4677symbolic_link='${symbolic_link}'
4678program_transform_set='${program_transform_set}'
4679program_transform_name='${program_transform_name}'
5891b37d
RK
4680dep_host_xmake_file='${dep_host_xmake_file}'
4681host_xmake_file='${host_xmake_file}'
4682dep_tmake_file='${dep_tmake_file}'
4683tmake_file='${tmake_file}'
0bbb1697 4684thread_file='${thread_file}'
f1943b77
MH
4685gcc_version='${gcc_version}'
4686gcc_version_trigger='${gcc_version_trigger}'
5891b37d 4687local_prefix='${local_prefix}'
5891b37d 4688build_install_headers_dir='${build_install_headers_dir}'
a204adc6 4689build_exeext='${build_exeext}'
6e26218f 4690host_exeext='${host_exeext}'
7ed46111 4691out_file='${out_file}'
5891b37d
RK
4692gdb_needs_out_file_path='${gdb_needs_out_file_path}'
4693SET_MAKE='${SET_MAKE}'
5891b37d 4694target_list='${target_list}'
5891b37d
RK
4695target_overrides='${target_overrides}'
4696host_overrides='${host_overrides}'
4697cross_defines='${cross_defines}'
4698cross_overrides='${cross_overrides}'
4699build_overrides='${build_overrides}'
9fc9b82a 4700cpp_install_dir='${cpp_install_dir}'
cdcc6a01 4701])