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