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