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