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