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