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