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