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