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