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