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