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