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