]>
Commit | Line | Data |
---|---|---|
61ed06c3 | 1 | # GCC build-, host- and target-specific configuration file. |
817e13c4 | 2 | # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc. |
61ed06c3 | 3 | |
1322177d | 4 | #This file is part of GCC. |
61ed06c3 | 5 | |
1322177d LB |
6 | #GCC is free software; you can redistribute it and/or modify it under |
7 | #the terms of the GNU General Public License as published by the Free | |
8 | #Software Foundation; either version 2, or (at your option) any later | |
9 | #version. | |
61ed06c3 | 10 | |
1322177d LB |
11 | #GCC is distributed in the hope that it will be useful, but WITHOUT |
12 | #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
13 | #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
14 | #for more details. | |
61ed06c3 HPN |
15 | |
16 | #You should have received a copy of the GNU General Public License | |
1322177d LB |
17 | #along with GCC; see the file COPYING. If not, write to the Free |
18 | #Software Foundation, 59 Temple Place - Suite 330, Boston, MA | |
19 | #02111-1307, USA. | |
61ed06c3 HPN |
20 | |
21 | # This is the GCC build-, host- and target-specific configuration file | |
22 | # where a configuration type, as recognized and generated by config.bfd, | |
23 | # is mapped to different system-specific definitions and files. This is | |
24 | # invoked by the autoconf-generated configure script, called for build, | |
25 | # host and target in that order, setting ${machine} to each. Putting it | |
26 | # in a separate shell file lets us skip running autoconf when modifying | |
27 | # build-, host- and target-specific information. | |
28 | ||
29 | # This file switches on the shell variable ${machine}, and also uses the | |
30 | # following shell variables: | |
31 | # | |
32 | # with_* Various variables as set by configure. | |
33 | # | |
34 | # enable_threads_flag Either the name, yes or no depending on whether | |
35 | # threads support was requested. | |
36 | # | |
37 | # gas_flag Either yes or no depending on whether GNU as was | |
38 | # requested. | |
39 | # | |
40 | # gnu_ld_flag Either yes or no depending on whether GNU ld was | |
41 | # requested. | |
42 | ||
43 | # This file sets the following shell variables for use by the | |
44 | # autoconf-generated configure script: | |
45 | # | |
46 | # cpu_type The name of the cpu, if different from machine. | |
47 | # | |
48 | # tm_file A list of target macro files, if different from | |
32fb7c9d FS |
49 | # "$cpu_type/$cpu_type.h". Usually it's constructed |
50 | # per target in a way like this: | |
c40409ce | 51 | # tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h" |
32fb7c9d FS |
52 | # Note that the preferred order is: |
53 | # - specific target header "${cpu_type}/${cpu_type.h}" | |
c40409ce | 54 | # - generic headers like dbxelf.h elfos.h, netware.h, etc. |
32fb7c9d FS |
55 | # - specializing target headers like ${cpu_type.h}/elf.h |
56 | # This helps to keep OS specific stuff out of the CPU | |
57 | # defining header ${cpu_type}/${cpu_type.h}. | |
61ed06c3 HPN |
58 | # |
59 | # tm_p_file Location of file with declarations for functions | |
60 | # in $out_file. | |
61 | # | |
62 | # out_file The name of the machine description C support | |
63 | # file, if different from "$cpu_type/$cpu_type.c". | |
64 | # | |
65 | # md_file The name of the machine-description file, if | |
66 | # different from "$cpu_type/$cpu_type.md". | |
67 | # | |
68 | # tmake_file A list of machine-description-specific | |
69 | # makefile-fragments, if different from | |
70 | # "$cpu_type/t-$cpu_type". | |
71 | # | |
72 | # float_format Set to the symbolic name for the floating-point | |
73 | # formats used for this machine, if different from | |
74 | # "i64". Used to derive a header file name to | |
75 | # include, like "vax" for "float-vax.h". If no such | |
76 | # file is wanted, set to "none". | |
77 | # | |
78 | # extra_objs List of extra objects that should be linked into | |
79 | # the compiler proper (cc1, cc1obj, cc1plus) | |
80 | # depending on target. | |
81 | # | |
82 | # extra_headers List of used header files from the directory | |
817e13c4 | 83 | # config/${cpu_type}. |
61ed06c3 HPN |
84 | # |
85 | # host_xmake_file List of host-specific makefile-fragments. | |
86 | # | |
87 | # extra_passes List of extra executables compiled for this target | |
88 | # machine, used for compiling from source to object. | |
89 | # | |
90 | # extra_parts List of extra object files that should be compiled | |
91 | # for this target machine. | |
92 | # | |
93 | # extra_programs Like extra_passes, but these are used when linking. | |
94 | # | |
ff7cc307 | 95 | # host_extra_objs List of extra host-dependent objects that should |
61ed06c3 HPN |
96 | # be linked into the compiler proper. |
97 | # | |
ff7cc307 | 98 | # host_extra_gcc_objs List of extra host-dependent objects that should |
61ed06c3 HPN |
99 | # be linked into the gcc driver. |
100 | # | |
ff7cc307 | 101 | # c_target_objs List of extra target-dependent objects that be |
aac69a49 | 102 | # linked into the C compiler only. |
0e5a4ad8 | 103 | # |
ff7cc307 | 104 | # cxx_target_objs List of extra target-dependent objects that be |
aac69a49 | 105 | # linked into the C++ compiler only. |
0e5a4ad8 | 106 | # |
61ed06c3 HPN |
107 | # build_xm_defines List of macros to define when compiling for the |
108 | # build machine. | |
109 | # | |
110 | # build_xm_file List of files to include when compiling for the | |
111 | # build machine. | |
112 | # | |
113 | # host_xm_defines List of macros to define when compiling for the | |
114 | # host machine. | |
115 | # | |
116 | # host_xm_file List of files to include when compiling for the | |
117 | # host machine. | |
118 | # | |
119 | # xm_defines List of macros to define when compiling for the | |
120 | # target machine. | |
121 | # | |
122 | # xm_file List of files to include when compiling for the | |
123 | # target machine. | |
124 | # | |
125 | # use_collect2 Set to yes or no, depending on whether collect2 | |
126 | # will be used. | |
127 | # | |
128 | # target_cpu_default Set to override the default target model. | |
129 | # | |
130 | # build_install_headers_dir | |
131 | # Target to use when installing header files. | |
132 | # | |
61ed06c3 HPN |
133 | # host_truncate_target |
134 | # Non-empty if the target name should be truncated | |
135 | # on this host, due to filename length issues. | |
136 | # | |
137 | # gdb_needs_out_file_path | |
138 | # Set to yes if gdb needs a dir command with | |
139 | # `dirname $out_file`. | |
140 | # | |
141 | # build_exeext Set to the suffix, if the build machine requires | |
142 | # executables to have a file name suffix. | |
143 | # | |
144 | # host_exeext Set to the suffix, if the host machine requires | |
145 | # executables to have a file name suffix. | |
146 | # | |
147 | # thread_file Set to control which thread package to use. | |
148 | # | |
149 | # gas Set to yes or no depending on whether the target | |
150 | # system normally uses GNU as. | |
151 | ||
152 | # The following variables are used in each case-construct to build up the | |
153 | # outgoing variables: | |
154 | # | |
155 | # xmake_file Makefile-fragment when this system is as a host, | |
156 | # for host_xmake_file. | |
157 | # | |
158 | # extra_host_objs List of extra objects that should be linked into | |
159 | # the compiler proper when this system is a host, | |
160 | # for host_extra_objs. | |
161 | # | |
162 | # install_headers_dir Makefile-target for how the header file directory | |
163 | # is installed, when this system is a build system, | |
164 | # for build_install_headers_dir. | |
165 | # | |
166 | # truncate_target Non-empty if the target name should be truncated | |
167 | # when this system is a host, due to filename length | |
168 | # issues. For host_truncate_target. | |
169 | # | |
170 | # exeext The suffix for executables on this system. | |
171 | # | |
172 | # gnu_ld Set to yes or no depending on whether the target | |
173 | # system normally uses GNU ld. | |
174 | ||
175 | out_file= | |
176 | xmake_file= | |
177 | tmake_file= | |
178 | extra_headers= | |
179 | extra_passes= | |
180 | extra_parts= | |
181 | extra_programs= | |
182 | extra_objs= | |
183 | extra_host_objs= | |
184 | extra_gcc_objs= | |
aac69a49 NC |
185 | c_target_objs= |
186 | cxx_target_objs= | |
61ed06c3 HPN |
187 | xm_defines= |
188 | float_format= | |
189 | # Set this to force installation and use of collect2. | |
190 | use_collect2= | |
191 | # Set this to override the default target model. | |
192 | target_cpu_default= | |
193 | # Set this to control how the header file directory is installed. | |
194 | install_headers_dir=install-headers-tar | |
61ed06c3 HPN |
195 | # Set this if directory names should be truncated to 14 characters. |
196 | truncate_target= | |
197 | # Set this if gdb needs a dir command with `dirname $out_file` | |
198 | gdb_needs_out_file_path= | |
199 | # Set this if the build machine requires executables to have a | |
200 | # file name suffix. | |
201 | exeext= | |
202 | # Set this to control which thread package will be used. | |
203 | thread_file= | |
204 | # Reinitialize these from the flag values every loop pass, since some | |
205 | # configure entries modify them. | |
206 | gas="$gas_flag" | |
207 | gnu_ld="$gnu_ld_flag" | |
208 | enable_threads=$enable_threads_flag | |
209 | ||
210 | # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be | |
ba1e6c0b JM |
211 | # updated in each machine entry. Also set default extra_headers for some |
212 | # machines. | |
61ed06c3 HPN |
213 | tm_p_file= |
214 | cpu_type=`echo $machine | sed 's/-.*$//'` | |
215 | case $machine in | |
216 | alpha*-*-*) | |
217 | cpu_type=alpha | |
218 | ;; | |
219 | strongarm*-*-*) | |
220 | cpu_type=arm | |
221 | ;; | |
222 | arm*-*-*) | |
223 | cpu_type=arm | |
224 | ;; | |
d19fb8e3 NC |
225 | xscale-*-*) |
226 | cpu_type=arm | |
227 | ;; | |
61ed06c3 HPN |
228 | c*-convex-*) |
229 | cpu_type=convex | |
b31bbca2 | 230 | extra_headers=proto.h |
61ed06c3 HPN |
231 | ;; |
232 | i[34567]86-*-*) | |
233 | cpu_type=i386 | |
6f1a6c5b | 234 | extra_headers="mmintrin.h xmmintrin.h" |
61ed06c3 | 235 | ;; |
14f73b5a JH |
236 | x86_64-*-*) |
237 | cpu_type=i386 | |
8559c8c0 | 238 | extra_headers="mmintrin.h xmmintrin.h" |
14f73b5a | 239 | ;; |
817e13c4 JM |
240 | ia64-*-*) |
241 | extra_headers=ia64intrin.h | |
242 | ;; | |
c21a2372 | 243 | hppa*-*-* | parisc*-*-*) |
61ed06c3 HPN |
244 | cpu_type=pa |
245 | ;; | |
2fd95d71 | 246 | m680[012]0-*-*) |
61ed06c3 | 247 | cpu_type=m68k |
ba1e6c0b JM |
248 | extra_headers=math-68881.h |
249 | ;; | |
250 | m68k-*-*) | |
251 | extra_headers=math-68881.h | |
61ed06c3 HPN |
252 | ;; |
253 | mips*-*-*) | |
254 | cpu_type=mips | |
255 | ;; | |
256 | pj*-*-*) | |
257 | cpu_type=pj | |
258 | ;; | |
259 | powerpc*-*-*) | |
260 | cpu_type=rs6000 | |
5fb4cf24 | 261 | extra_headers="ppc-asm.h altivec.h" |
61ed06c3 | 262 | ;; |
61ed06c3 HPN |
263 | sparc*-*-*) |
264 | cpu_type=sparc | |
265 | ;; | |
fa5322fa AO |
266 | sh64-*-*) |
267 | cpu_type=sh | |
268 | ;; | |
61ed06c3 HPN |
269 | esac |
270 | ||
271 | tm_file=${cpu_type}/${cpu_type}.h | |
b6d7afec | 272 | if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h |
61ed06c3 | 273 | then |
b6d7afec ZW |
274 | tm_p_file=${cpu_type}/${cpu_type}-protos.h |
275 | fi | |
e564e618 DB |
276 | |
277 | case $machine in | |
278 | x86_64-*-*) | |
279 | tm_file="i386/biarch64.h ${tm_file}" | |
280 | ;; | |
281 | esac | |
282 | ||
61ed06c3 HPN |
283 | # On a.out targets, we need to use collect2. |
284 | case $machine in | |
285 | *-*-*aout*) | |
286 | use_collect2=yes | |
287 | ;; | |
0e5a4ad8 | 288 | esac |
61ed06c3 | 289 | |
f982f805 | 290 | # Common parts for GNU/Linux, GNU/Hurd, OpenBSD, NetBSD, and FreeBSD systems. |
61ed06c3 HPN |
291 | case $machine in |
292 | *-*-linux*) | |
34f4f3a5 | 293 | xm_defines=POSIX |
61ed06c3 | 294 | ;; |
5eeab2e3 MK |
295 | *-*-gnu*) |
296 | # On the Hurd, the setup is just about the same on | |
297 | # each different CPU. The specific machines that we | |
298 | # support are matched above and just set $cpu_type. | |
b19a539e | 299 | xm_defines=POSIX |
f6e0c56c | 300 | tm_file="${cpu_type}/gnu.h" |
275b60d6 | 301 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" |
5eeab2e3 MK |
302 | # GNU always uses ELF. |
303 | elf=yes | |
304 | # GNU tools are the only tools. | |
305 | gnu_ld=yes | |
306 | gas=yes | |
307 | # These details are the same as for Linux. | |
5eeab2e3 | 308 | # But here we need a little extra magic. |
7b3a4df5 | 309 | tmake_file="t-slibgcc-elf-ver t-linux t-gnu" |
f6e0c56c DB |
310 | case $machine in |
311 | i[34567]86-*-*) | |
39ed301b | 312 | tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h gnu.h ${tm_file}" |
f6e0c56c | 313 | ;; |
f6e0c56c | 314 | esac |
5eeab2e3 | 315 | ;; |
61ed06c3 HPN |
316 | *-*-openbsd*) |
317 | tm_file=${cpu_type}/openbsd.h | |
f1cf4606 | 318 | tmake_file="t-libc-ok t-openbsd t-libgcc-pic" |
b19a539e | 319 | xm_defines=POSIX |
61ed06c3 HPN |
320 | if test x$enable_threads = xyes; then |
321 | thread_file='posix' | |
322 | tmake_file="${tmake_file} t-openbsd-thread" | |
323 | fi | |
324 | ;; | |
f982f805 | 325 | *-*-netbsd*) |
12345543 | 326 | tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd" |
f982f805 JT |
327 | xm_defines=POSIX |
328 | gas=yes | |
329 | gnu_ld=yes | |
330 | ;; | |
9e405fe5 LR |
331 | *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*) |
332 | # This is the place-holder for the generic a.out configuration | |
333 | # of FreeBSD. No actual configuration resides here since | |
334 | # there was only ever a bare-bones ix86 configuration for | |
335 | # a.out and it exists solely in the machine-specific section. | |
336 | # This place-holder must exist to avoid dropping into | |
337 | # the generic ELF configuration of FreeBSD (i.e. it must be | |
338 | # ordered before that section). | |
339 | ;; | |
340 | *-*-freebsd*) | |
341 | # This is the generic ELF configuration of FreeBSD. Later | |
342 | # machine-specific sections may refine and add to this | |
343 | # configuration. | |
344 | # | |
345 | # Due to tm_file entry ordering issues that vary between cpu | |
346 | # architectures, we only define fbsd_tm_file to allow the | |
347 | # machine-specific section to dictate the final order of all | |
348 | # entries of tm_file with the minor exception that components | |
349 | # of the tm_file set here will always be of the form: | |
350 | # | |
b91da81f | 351 | # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h |
9e405fe5 LR |
352 | # |
353 | # The machine-specific section should not tamper with this | |
354 | # ordering but may order all other entries of tm_file as it | |
355 | # pleases around the provided core setting. | |
356 | gas=yes | |
357 | gnu_ld=yes | |
358 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o" | |
359 | case $machine in | |
360 | *-*-freebsd3 | *-*-freebsd[3].*) fbsd_tm_file="freebsd3.h";; | |
361 | *-*-freebsd4 | *-*-freebsd[4].*) fbsd_tm_file="freebsd4.h";; | |
362 | *-*-freebsd5 | *-*-freebsd[5].*) fbsd_tm_file="freebsd5.h";; | |
363 | *-*-freebsd6 | *-*-freebsd[6].*) fbsd_tm_file="freebsd6.h";; | |
364 | *) echo 'Please update *-*-freebsd* in gcc/config.gcc'; exit 1;; | |
365 | esac | |
bc3a44db | 366 | tmake_file="t-slibgcc-elf-ver t-freebsd" |
243a7070 | 367 | xmake_file=none |
9e405fe5 LR |
368 | xm_defines=POSIX |
369 | case x${enable_threads} in | |
370 | xno) fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h";; | |
371 | x | xyes | xpthreads | xposix) | |
372 | thread_file='posix' | |
373 | tmake_file="${tmake_file} t-freebsd-thread" | |
bc3a44db LR |
374 | # Before 5.0, FreeBSD can't bind shared libraries to -lc |
375 | # when "optionally" threaded via weak pthread_* checks. | |
376 | case $machine in | |
377 | *-*-freebsd[34] | *-*-freebsd[34].*) | |
378 | tmake_file="${tmake_file} t-slibgcc-nolc-override";; | |
379 | esac | |
9e405fe5 LR |
380 | ;; |
381 | *) echo 'Unknown thread configuration for FreeBSD'; exit 1;; | |
382 | esac | |
b7e0196a | 383 | fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h" |
9e405fe5 | 384 | ;; |
61ed06c3 HPN |
385 | esac |
386 | ||
387 | case $machine in | |
388 | # Support site-specific machine types. | |
389 | *local*) | |
61ed06c3 | 390 | rest=`echo $machine | sed -e "s/$cpu_type-//"` |
61ed06c3 | 391 | tm_file=${cpu_type}/$rest.h |
4dc0535b ZW |
392 | if test -f $srcdir/config/${cpu_type}/xm-$rest.h |
393 | then xm_file=${cpu_type}/xm-$rest.h | |
61ed06c3 | 394 | fi |
4dc0535b ZW |
395 | if test -f $srcdir/config/${cpu_type}/x-$rest |
396 | then xmake_file=${cpu_type}/x-$rest | |
397 | fi | |
398 | if test -f $srcdir/config/${cpu_type}/t-$rest | |
399 | then tmake_file=${cpu_type}/t-$rest | |
61ed06c3 HPN |
400 | fi |
401 | ;; | |
402 | 1750a-*-*) | |
db009825 ZW |
403 | # 1750a is only supported as a target. |
404 | case "$build,$host" in 1750a*,* | *,1750a* ) | |
405 | echo "*** $machine is only supported as a target" >&2 | |
406 | exit 1 | |
407 | esac | |
61ed06c3 HPN |
408 | ;; |
409 | a29k-*-bsd* | a29k-*-sym1*) | |
410 | tm_file="${tm_file} a29k/unix.h" | |
34f4f3a5 | 411 | xm_defines=POSIX |
61ed06c3 HPN |
412 | use_collect2=yes |
413 | ;; | |
414 | a29k-*-udi | a29k-*-coff) | |
2cc07db4 | 415 | tm_file="${tm_file} dbxcoff.h" |
61ed06c3 HPN |
416 | tmake_file=a29k/t-a29kbare |
417 | ;; | |
bc98ef7f | 418 | a29k*-*-rtems*) |
f22b4bc4 JS |
419 | xm_defines=POSIX |
420 | tm_file="a29k/a29k.h a29k/rtems.h rtems.h" | |
bc98ef7f JS |
421 | tmake_file="a29k/t-a29kbare t-rtems" |
422 | if test x$enable_threads = xyes; then | |
423 | thread_file='rtems' | |
424 | fi | |
425 | ;; | |
61ed06c3 | 426 | a29k-wrs-vxworks*) |
2cc07db4 | 427 | tm_file="${tm_file} dbxcoff.h a29k/vx29k.h" |
61ed06c3 HPN |
428 | tmake_file=a29k/t-vx29k |
429 | extra_parts="crtbegin.o crtend.o" | |
430 | thread_file='vxworks' | |
431 | ;; | |
432 | a29k-*-*) # Default a29k environment. | |
433 | use_collect2=yes | |
434 | ;; | |
30102605 RH |
435 | alpha*-*-unicosmk*) |
436 | use_collect2=yes | |
437 | tm_file="${tm_file} alpha/unicosmk.h" | |
0e5a4ad8 | 438 | |
30102605 RH |
439 | # Don't include t-ieee for now because we don't support that yet |
440 | # tmake_file="alpha/t-ieee" | |
441 | tmake_file="alpha/t-unicosmk" | |
442 | ;; | |
61ed06c3 HPN |
443 | alpha-*-interix) |
444 | tm_file="${tm_file} alpha/alpha32.h interix.h alpha/alpha-interix.h" | |
445 | ||
446 | # GAS + IEEE_CONFORMANT+IEEE (no inexact); | |
447 | #target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT|MASK_IEEE" | |
448 | ||
449 | # GAS + IEEE_CONFORMANT | |
450 | target_cpu_default="MASK_GAS|MASK_IEEE_CONFORMANT" | |
451 | ||
34f4f3a5 | 452 | xm_defines=POSIX |
5dd8a9b1 | 453 | xm_file="alpha/xm-alpha-interix.h" |
14455c64 | 454 | tmake_file="alpha/t-alpha t-interix alpha/t-interix alpha/t-ieee" |
61ed06c3 HPN |
455 | if test x$enable_threads = xyes ; then |
456 | thread_file='posix' | |
457 | fi | |
458 | if test x$stabs = xyes ; then | |
459 | tm_file="${tm_file} dbxcoff.h" | |
460 | fi | |
461 | #prefix='$$INTERIX_ROOT'/usr/contrib | |
462 | #local_prefix='$$INTERIX_ROOT'/usr/contrib | |
463 | ;; | |
464 | alpha*-*-linux*ecoff*) | |
465 | tm_file="${tm_file} alpha/linux-ecoff.h alpha/linux.h" | |
466 | target_cpu_default="MASK_GAS" | |
467 | tmake_file="alpha/t-alpha alpha/t-ieee" | |
468 | gas=no | |
61ed06c3 HPN |
469 | gas=yes gnu_ld=yes |
470 | ;; | |
471 | alpha*-*-linux*libc1*) | |
472 | tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h" | |
473 | target_cpu_default="MASK_GAS" | |
cea3bd3e RH |
474 | tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 alpha/t-alpha alpha/t-crtfm alpha/t-ieee" |
475 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" | |
61ed06c3 HPN |
476 | gas=yes gnu_ld=yes |
477 | if test x$enable_threads = xyes; then | |
478 | thread_file='posix' | |
479 | fi | |
480 | ;; | |
481 | alpha*-*-linux*) | |
482 | tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h" | |
483 | target_cpu_default="MASK_GAS" | |
cea3bd3e RH |
484 | tmake_file="t-slibgcc-elf-ver t-linux alpha/t-crtfm alpha/t-alpha alpha/t-ieee" |
485 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" | |
61ed06c3 HPN |
486 | gas=yes gnu_ld=yes |
487 | if test x$enable_threads = xyes; then | |
488 | thread_file='posix' | |
489 | fi | |
490 | ;; | |
491 | alpha*-*-freebsd*) | |
9e405fe5 | 492 | tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h" |
61ed06c3 | 493 | target_cpu_default="MASK_GAS" |
cea3bd3e RH |
494 | tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee" |
495 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" | |
61ed06c3 HPN |
496 | ;; |
497 | alpha*-*-netbsd*) | |
f982f805 | 498 | tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h" |
61ed06c3 | 499 | target_cpu_default="MASK_GAS" |
cea3bd3e RH |
500 | tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee" |
501 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" | |
61ed06c3 HPN |
502 | ;; |
503 | ||
504 | alpha*-*-openbsd*) | |
505 | # default x-alpha is only appropriate for dec-osf. | |
506 | target_cpu_default="MASK_GAS" | |
507 | tmake_file="alpha/t-alpha alpha/t-ieee" | |
508 | ;; | |
0e5a4ad8 | 509 | |
61ed06c3 | 510 | alpha*-dec-osf*) |
b19a539e | 511 | xm_defines=POSIX |
61ed06c3 HPN |
512 | if test x$stabs = xyes |
513 | then | |
514 | tm_file="${tm_file} dbx.h" | |
515 | fi | |
516 | if test x$gas != xyes | |
517 | then | |
518 | extra_passes="mips-tfile mips-tdump" | |
519 | fi | |
520 | use_collect2=yes | |
817e13c4 JM |
521 | tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm" |
522 | extra_headers=va_list.h | |
61ed06c3 HPN |
523 | case $machine in |
524 | *-*-osf1*) | |
525 | tm_file="${tm_file} alpha/osf.h alpha/osf12.h alpha/osf2or3.h" | |
526 | ;; | |
527 | *-*-osf[23]*) | |
528 | tm_file="${tm_file} alpha/osf.h alpha/osf2or3.h" | |
529 | ;; | |
530 | *-*-osf4*) | |
531 | tm_file="${tm_file} alpha/osf.h" | |
532 | tmake_file="$tmake_file alpha/t-osf4" | |
533 | # Some versions of OSF4 (specifically X4.0-9 296.7) have | |
534 | # a broken tar, so we use cpio instead. | |
535 | install_headers_dir=install-headers-cpio | |
536 | ;; | |
537 | *-*-osf5*) | |
538 | tm_file="${tm_file} alpha/osf.h alpha/osf5.h" | |
539 | tmake_file="$tmake_file alpha/t-osf4" | |
c3e5f9fa | 540 | float_format=i128 |
61ed06c3 HPN |
541 | ;; |
542 | esac | |
543 | case $machine in | |
544 | *-*-osf4.0[b-z] | *-*-osf4.[1-9]* | *-*-osf5*) | |
545 | target_cpu_default=MASK_SUPPORT_ARCH | |
546 | ;; | |
547 | esac | |
548 | ;; | |
549 | alpha*-*-vxworks*) | |
b19a539e | 550 | xm_defines=POSIX |
61ed06c3 HPN |
551 | tm_file="${tm_file} dbx.h alpha/vxworks.h" |
552 | tmake_file="alpha/t-alpha alpha/t-ieee" | |
553 | if [ x$gas != xyes ] | |
554 | then | |
555 | extra_passes="mips-tfile mips-tdump" | |
556 | fi | |
557 | use_collect2=yes | |
558 | thread_file='vxworks' | |
559 | ;; | |
b6bfa876 DR |
560 | alpha64-dec-*vms*) |
561 | xm_defines=POSIX | |
562 | tm_file="alpha/vms.h alpha/vms64.h" | |
563 | xm_file="alpha/xm-vms.h alpha/xm-vms64.h" | |
564 | tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee" | |
565 | xmake_file=alpha/x-vms | |
566 | exeext=.exe | |
567 | # This removes the cpu type and manufacturer components and | |
568 | # replaces "." with "_" in the operating system version. | |
569 | case $host in *-*-*vms*) | |
570 | target_alias=`echo $host \ | |
571 | | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` | |
572 | ;; | |
573 | esac | |
ff3aaf17 | 574 | install_headers_dir=install-headers-cp |
b6bfa876 DR |
575 | prefix=/gnu |
576 | local_prefix=/gnu | |
577 | ;; | |
ef057c45 | 578 | alpha*-dec-*vms*) |
b19a539e | 579 | xm_defines=POSIX |
61ed06c3 | 580 | tm_file=alpha/vms.h |
4dc0535b | 581 | xm_file=alpha/xm-vms.h |
61ed06c3 | 582 | tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee" |
d133777f | 583 | xmake_file=alpha/x-vms |
ef057c45 DR |
584 | exeext=.exe |
585 | # This removes the cpu type and manufacturer components and | |
586 | # replaces "." with "_" in the operating system version. | |
587 | case $host in *-*-*vms*) | |
588 | target_alias=`echo $host \ | |
589 | | sed 's/.*-.*-\(.*\)$/\1/' | sed 's/\./_/g'` | |
590 | ;; | |
591 | esac | |
ff3aaf17 | 592 | install_headers_dir=install-headers-cp |
ef057c45 DR |
593 | prefix=/gnu |
594 | local_prefix=/gnu | |
61ed06c3 | 595 | ;; |
2cc07db4 | 596 | arc-*-elf*) |
c40409ce | 597 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
2cc07db4 RH |
598 | extra_parts="crtinit.o crtfini.o" |
599 | ;; | |
61ed06c3 | 600 | arm-*-coff* | armel-*-coff*) |
5059254f | 601 | tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h" |
61ed06c3 HPN |
602 | tmake_file=arm/t-arm-coff |
603 | ;; | |
604 | arm-*-vxworks*) | |
5059254f | 605 | tm_file="arm/semi.h arm/aout.h arm/coff.h arm/vxarm.h arm/arm.h" |
61ed06c3 HPN |
606 | tmake_file=arm/t-arm-coff |
607 | thread_file='vxworks' | |
608 | ;; | |
609 | arm-*-riscix1.[01]*) # Acorn RISC machine (early versions) | |
5059254f | 610 | tm_file="arm/riscix1-1.h arm/arm.h" |
61ed06c3 HPN |
611 | use_collect2=yes |
612 | ;; | |
613 | arm-*-riscix*) # Acorn RISC machine | |
614 | if test x$gas = xyes | |
615 | then | |
5059254f | 616 | tm_file="arm/riscix.h arm/rix-gas.h arm/arm.h" |
61ed06c3 | 617 | else |
5059254f | 618 | tm_file="arm/riscix.h arm/arm.h" |
61ed06c3 | 619 | fi |
61ed06c3 HPN |
620 | tmake_file=arm/t-riscix |
621 | use_collect2=yes | |
622 | ;; | |
623 | arm-semi-aout | armel-semi-aout) | |
5059254f | 624 | tm_file="arm/semi.h arm/aout.h arm/arm.h" |
61ed06c3 HPN |
625 | tmake_file=arm/t-semi |
626 | ;; | |
627 | arm-semi-aof | armel-semi-aof) | |
5059254f | 628 | tm_file="arm/semiaof.h arm/aof.h arm/arm.h" |
7857f134 | 629 | tmake_file=arm/t-semi |
61ed06c3 | 630 | ;; |
5742588d DB |
631 | arm*-*-freebsd*|strongarm*-*-freebsd*) |
632 | tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h" | |
633 | tmake_file="${tmake_file} arm/t-strongarm-elf" | |
634 | ;; | |
69474c3c JT |
635 | arm*-*-netbsdelf*) |
636 | echo "GCC does not yet support the ${machine} target"; exit 1 | |
637 | ;; | |
61ed06c3 | 638 | arm*-*-netbsd*) |
f982f805 | 639 | tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h" |
61ed06c3 | 640 | tmake_file="t-netbsd arm/t-netbsd" |
5721cd84 | 641 | use_collect2=yes |
61ed06c3 | 642 | ;; |
14879e76 | 643 | arm*-*-linux*) # ARM GNU/Linux with ELF |
c40409ce | 644 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h" |
7b3a4df5 | 645 | tmake_file="t-slibgcc-elf-ver t-linux arm/t-linux" |
61ed06c3 HPN |
646 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" |
647 | gnu_ld=yes | |
648 | case x${enable_threads} in | |
649 | x | xyes | xpthreads | xposix) | |
650 | thread_file='posix' | |
651 | ;; | |
652 | esac | |
653 | ;; | |
654 | arm*-*-uclinux*) # ARM ucLinux | |
c40409ce | 655 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/linux-gas.h arm/linux-elf.h arm/uclinux-elf.h" |
61ed06c3 HPN |
656 | tmake_file=arm/t-arm-elf |
657 | ;; | |
658 | arm*-*-aout) | |
f910b1bb | 659 | tm_file="arm/aout.h arm/arm.h" |
61ed06c3 HPN |
660 | tmake_file=arm/t-arm-aout |
661 | ;; | |
662 | arm*-*-ecos-elf) | |
c40409ce | 663 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h" |
61ed06c3 | 664 | tmake_file=arm/t-arm-elf |
0e5a4ad8 | 665 | ;; |
f22b4bc4 JS |
666 | arm*-*-rtems*) |
667 | xm_defines=POSIX | |
668 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/rtems-elf.h rtems.h" | |
669 | tmake_file="arm/t-arm-elf t-rtems" | |
670 | if test x$enable_threads = xyes; then | |
671 | thread_file='rtems' | |
672 | fi | |
673 | ;; | |
61ed06c3 | 674 | arm*-*-elf) |
c40409ce | 675 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h" |
61ed06c3 HPN |
676 | tmake_file=arm/t-arm-elf |
677 | ;; | |
678 | arm*-*-conix*) | |
c40409ce | 679 | tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/conix-elf.h arm/aout.h arm/arm.h" |
61ed06c3 HPN |
680 | tmake_file=arm/t-arm-elf |
681 | ;; | |
682 | arm*-*-oabi) | |
c40409ce | 683 | tm_file="arm/unknown-elf-oabi.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h" |
61ed06c3 HPN |
684 | tmake_file=arm/t-arm-elf |
685 | ;; | |
686 | arm-*-pe*) | |
f910b1bb | 687 | tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h arm/pe.h" |
61ed06c3 HPN |
688 | tmake_file=arm/t-pe |
689 | extra_objs="pe.o" | |
690 | ;; | |
691 | avr-*-*) | |
692 | ;; | |
693 | c1-convex-*) # Convex C1 | |
694 | target_cpu_default=1 | |
695 | use_collect2=yes | |
696 | ;; | |
697 | c2-convex-*) # Convex C2 | |
698 | target_cpu_default=2 | |
699 | use_collect2=yes | |
700 | ;; | |
701 | c32-convex-*) | |
702 | target_cpu_default=4 | |
703 | use_collect2=yes | |
704 | ;; | |
705 | c34-convex-*) | |
706 | target_cpu_default=8 | |
707 | use_collect2=yes | |
708 | ;; | |
709 | c38-convex-*) | |
0e5a4ad8 | 710 | target_cpu_default=16 |
61ed06c3 HPN |
711 | use_collect2=yes |
712 | ;; | |
bc98ef7f | 713 | c4x-*-rtems*) |
f22b4bc4 | 714 | xm_defines=POSIX |
bc98ef7f | 715 | tmake_file="c4x/t-c4x t-rtems" |
fdc76b09 | 716 | tm_file="c4x/c4x.h c4x/rtems.h rtems.h" |
bc98ef7f JS |
717 | if test x$enable_threads = xyes; then |
718 | thread_file='rtems' | |
719 | fi | |
51fabca5 NB |
720 | c_target_objs="c4x-c.o" |
721 | cxx_target_objs="c4x-c.o" | |
bc98ef7f | 722 | ;; |
61ed06c3 | 723 | c4x-*) |
61ed06c3 HPN |
724 | float_format=c4x |
725 | tmake_file=c4x/t-c4x | |
51fabca5 NB |
726 | c_target_objs="c4x-c.o" |
727 | cxx_target_objs="c4x-c.o" | |
61ed06c3 HPN |
728 | ;; |
729 | clipper-intergraph-clix*) | |
730 | tm_file="${tm_file} svr3.h clipper/clix.h" | |
34f4f3a5 | 731 | xm_defines=POSIX |
61ed06c3 HPN |
732 | extra_parts="crtbegin.o crtend.o" |
733 | install_headers_dir=install-headers-cpio | |
734 | ;; | |
0b85d816 | 735 | cris-*-aout) |
32fb7c9d | 736 | tm_file="dbxelf.h ${tm_file} cris/aout.h" |
0b85d816 HPN |
737 | gas=yes |
738 | tmake_file="cris/t-cris cris/t-aout" | |
739 | ;; | |
740 | cris-*-elf | cris-*-none) | |
c40409ce | 741 | tm_file="dbxelf.h elfos.h ${tm_file}" |
0b85d816 HPN |
742 | tmake_file="cris/t-cris cris/t-elfmulti" |
743 | gas=yes | |
744 | ;; | |
745 | cris-*-linux*) | |
c40409ce | 746 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h" |
0b85d816 | 747 | tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux" |
275b60d6 | 748 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
0b85d816 HPN |
749 | case x${enable_threads} in |
750 | x | xyes | xpthreads | xposix) | |
751 | thread_file=posix | |
752 | ;; | |
753 | esac | |
754 | gas=yes | |
755 | ;; | |
61ed06c3 | 756 | d30v-*) |
c40409ce | 757 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
758 | float_format=i64 |
759 | ;; | |
760 | dsp16xx-*) | |
761 | ;; | |
762 | elxsi-elxsi-*) | |
763 | use_collect2=yes | |
764 | ;; | |
765 | fr30-*-elf) | |
c40409ce | 766 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
767 | tmake_file=fr30/t-fr30 |
768 | extra_parts="crti.o crtn.o crtbegin.o crtend.o" | |
769 | ;; | |
bc98ef7f | 770 | h8300-*-rtems*) |
f22b4bc4 | 771 | xm_defines=POSIX |
bc98ef7f | 772 | tmake_file="h8300/t-h8300 t-rtems" |
f22b4bc4 | 773 | tm_file="h8300/h8300.h h8300/rtems.h rtems.h" |
bc98ef7f JS |
774 | if test x$enable_threads = xyes; then |
775 | thread_file='rtems' | |
776 | fi | |
777 | float_format=i32 | |
778 | ;; | |
9f5b774b R |
779 | h8300-*-elf*) |
780 | tmake_file="h8300/t-h8300 h8300/t-elf" | |
781 | tm_file="h8300/h8300.h h8300/elf.h" | |
782 | float_format=i32 | |
783 | ;; | |
61ed06c3 HPN |
784 | h8300-*-*) |
785 | float_format=i32 | |
786 | ;; | |
c21a2372 AM |
787 | hppa*64*-*-linux* | parisc*64*-*-linux*) |
788 | target_cpu_default="(MASK_PA_11 | MASK_PA_20)" | |
c40409ce | 789 | tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \ |
c21a2372 AM |
790 | pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h" |
791 | tmake_file=pa/t-linux64 | |
c21a2372 AM |
792 | gas=yes gnu_ld=yes |
793 | ;; | |
794 | hppa*-*-linux* | parisc*-*-linux*) | |
795 | target_cpu_default="MASK_PA_11" | |
c40409ce | 796 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \ |
c21a2372 | 797 | pa/pa32-regs.h pa/pa32-linux.h" |
7b3a4df5 | 798 | tmake_file="t-slibgcc-elf-ver t-linux pa/t-linux" |
275b60d6 | 799 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
800 | gas=yes gnu_ld=yes |
801 | if test x$enable_threads = xyes; then | |
802 | thread_file='posix' | |
803 | fi | |
804 | ;; | |
805 | hppa*-*-openbsd*) | |
806 | target_cpu_default="MASK_PA_11" | |
14455c64 | 807 | tmake_file=pa/t-bsd |
61ed06c3 HPN |
808 | ;; |
809 | hppa1.1-*-pro*) | |
810 | target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)" | |
c40409ce | 811 | tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h" |
14455c64 | 812 | tmake_file="pa/t-bsd pa/t-pro" |
61ed06c3 HPN |
813 | ;; |
814 | hppa1.1-*-osf*) | |
815 | target_cpu_default="MASK_PA_11" | |
816 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h" | |
14455c64 | 817 | tmake_file="pa/t-bsd pa/t-pa" |
61ed06c3 HPN |
818 | use_collect2=yes |
819 | ;; | |
820 | hppa1.1-*-rtems*) | |
f22b4bc4 | 821 | xm_defines=POSIX |
61ed06c3 | 822 | target_cpu_default="(MASK_JUMP_IN_DELAY | MASK_PORTABLE_RUNTIME | MASK_GAS | MASK_NO_SPACE_REGS | MASK_SOFT_FLOAT)" |
f22b4bc4 | 823 | tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h pa/pa-pro-end.h libgloss.h pa/rtems.h rtems.h" |
14455c64 | 824 | tmake_file="pa/t-bsd pa/t-pro" |
61ed06c3 HPN |
825 | ;; |
826 | hppa1.0-*-osf*) | |
827 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-osf.h" | |
14455c64 | 828 | tmake_file="pa/t-bsd pa/t-pa" |
61ed06c3 HPN |
829 | use_collect2=yes |
830 | ;; | |
831 | hppa1.1-*-bsd*) | |
832 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h" | |
833 | target_cpu_default="MASK_PA_11" | |
14455c64 | 834 | tmake_file="pa/t-bsd pa/t-pa" |
61ed06c3 HPN |
835 | use_collect2=yes |
836 | ;; | |
837 | hppa1.0-*-bsd*) | |
838 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h" | |
14455c64 | 839 | tmake_file="pa/t-bsd pa/t-pa" |
61ed06c3 HPN |
840 | use_collect2=yes |
841 | ;; | |
842 | hppa1.0-*-hpux7*) | |
843 | tm_file="pa/pa-oldas.h ${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux7.h" | |
34f4f3a5 | 844 | xm_defines=POSIX |
14455c64 | 845 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
846 | install_headers_dir=install-headers-cpio |
847 | use_collect2=yes | |
848 | ;; | |
849 | hppa1.0-*-hpux8.0[0-2]*) | |
850 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h" | |
34f4f3a5 | 851 | xm_defines=POSIX |
14455c64 | 852 | tmake_file=pa/t-pa-hpux |
c21a2372 | 853 | if test x$gas != xyes |
61ed06c3 | 854 | then |
61ed06c3 HPN |
855 | tm_file="pa/pa-oldas.h ${tm_file}" |
856 | fi | |
857 | install_headers_dir=install-headers-cpio | |
858 | use_collect2=yes | |
859 | ;; | |
860 | hppa1.1-*-hpux8.0[0-2]*) | |
861 | target_cpu_default="MASK_PA_11" | |
862 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h" | |
34f4f3a5 | 863 | xm_defines=POSIX |
14455c64 | 864 | tmake_file=pa/t-pa-hpux |
c21a2372 | 865 | if test x$gas != xyes |
61ed06c3 | 866 | then |
61ed06c3 HPN |
867 | tm_file="pa/pa-oldas.h ${tm_file}" |
868 | fi | |
869 | install_headers_dir=install-headers-cpio | |
870 | use_collect2=yes | |
871 | ;; | |
872 | hppa1.1-*-hpux8*) | |
873 | target_cpu_default="MASK_PA_11" | |
874 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h" | |
34f4f3a5 | 875 | xm_defines=POSIX |
14455c64 | 876 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
877 | install_headers_dir=install-headers-cpio |
878 | use_collect2=yes | |
879 | ;; | |
880 | hppa1.0-*-hpux8*) | |
881 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h" | |
34f4f3a5 | 882 | xm_defines=POSIX |
14455c64 | 883 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
884 | install_headers_dir=install-headers-cpio |
885 | use_collect2=yes | |
886 | ;; | |
887 | hppa1.1-*-hpux10* | hppa2*-*-hpux10*) | |
888 | target_cpu_default="MASK_PA_11" | |
889 | tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h" | |
890 | float_format=i128 | |
34f4f3a5 | 891 | xm_defines=POSIX |
e4761274 | 892 | tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib" |
61ed06c3 HPN |
893 | if test x$enable_threads = x; then |
894 | enable_threads=$have_pthread_h | |
895 | fi | |
896 | case x${enable_threads} in | |
897 | xyes | xdce) | |
898 | tmake_file="${tmake_file} pa/t-dce-thr" | |
899 | ;; | |
900 | esac | |
901 | install_headers_dir=install-headers-cpio | |
902 | use_collect2=yes | |
903 | ;; | |
904 | hppa1.0-*-hpux10*) | |
905 | tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux10.h" | |
906 | float_format=i128 | |
34f4f3a5 | 907 | xm_defines=POSIX |
e4761274 | 908 | tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib" |
61ed06c3 HPN |
909 | if test x$enable_threads = x; then |
910 | enable_threads=$have_pthread_h | |
911 | fi | |
912 | case x${enable_threads} in | |
913 | xyes | xdce) | |
914 | tmake_file="${tmake_file} pa/t-dce-thr" | |
915 | ;; | |
916 | esac | |
917 | install_headers_dir=install-headers-cpio | |
918 | use_collect2=yes | |
919 | ;; | |
920 | hppa*64*-*-hpux11*) | |
34f4f3a5 | 921 | xm_defines=POSIX |
38010927 | 922 | tm_file="pa/pa64-start.h ${tm_file} pa/pa64-regs.h pa/long_double.h pa/elf.h pa/pa-hpux.h pa/pa-hpux11.h pa/pa-64.h pa/pa64-hpux.h" |
61ed06c3 | 923 | float_format=i128 |
eab854f6 | 924 | tmake_file="pa/t-pa64 pa/t-pa-hpux" |
c81460e4 | 925 | target_cpu_default="(MASK_PA_11|MASK_PA_20|MASK_GAS)" |
61ed06c3 | 926 | |
61ed06c3 HPN |
927 | # if [ x$enable_threads = x ]; then |
928 | # enable_threads=$have_pthread_h | |
929 | # fi | |
930 | # if [ x$enable_threads = xyes ]; then | |
931 | # thread_file='dce' | |
932 | # tmake_file="${tmake_file} pa/t-dce-thr" | |
933 | # fi | |
934 | install_headers_dir=install-headers-cpio | |
935 | use_collect2=yes | |
936 | ;; | |
937 | hppa1.1-*-hpux11* | hppa2*-*-hpux11*) | |
938 | target_cpu_default="MASK_PA_11" | |
939 | tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h" | |
940 | float_format=i128 | |
34f4f3a5 | 941 | xm_defines=POSIX |
e4761274 | 942 | tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib" |
61ed06c3 HPN |
943 | # if test x$enable_threads = x; then |
944 | # enable_threads=$have_pthread_h | |
945 | # fi | |
946 | # if test x$enable_threads = xyes; then | |
947 | # thread_file='dce' | |
948 | # tmake_file="${tmake_file} pa/t-dce-thr" | |
949 | # fi | |
950 | install_headers_dir=install-headers-cpio | |
951 | use_collect2=yes | |
952 | ;; | |
953 | hppa1.0-*-hpux11*) | |
954 | tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-hpux.h pa/pa-hpux11.h" | |
955 | float_format=i128 | |
34f4f3a5 | 956 | xm_defines=POSIX |
e4761274 | 957 | tmake_file="pa/t-pa pa/t-pa-hpux pa/t-hpux-shlib" |
61ed06c3 HPN |
958 | # if test x$enable_threads = x; then |
959 | # enable_threads=$have_pthread_h | |
960 | # fi | |
961 | # if test x$enable_threads = xyes; then | |
962 | # thread_file='dce' | |
963 | # tmake_file="${tmake_file} pa/t-dce-thr" | |
964 | # fi | |
965 | install_headers_dir=install-headers-cpio | |
966 | use_collect2=yes | |
967 | ;; | |
968 | hppa1.1-*-hpux* | hppa2*-*-hpux*) | |
969 | target_cpu_default="MASK_PA_11" | |
970 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h" | |
34f4f3a5 | 971 | xm_defines=POSIX |
14455c64 | 972 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
973 | install_headers_dir=install-headers-cpio |
974 | use_collect2=yes | |
975 | ;; | |
976 | hppa1.0-*-hpux*) | |
977 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hpux9.h" | |
34f4f3a5 | 978 | xm_defines=POSIX |
14455c64 | 979 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
980 | install_headers_dir=install-headers-cpio |
981 | use_collect2=yes | |
982 | ;; | |
983 | hppa1.1-*-hiux* | hppa2*-*-hiux*) | |
984 | target_cpu_default="MASK_PA_11" | |
985 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h" | |
34f4f3a5 | 986 | xm_defines=POSIX |
14455c64 | 987 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
988 | install_headers_dir=install-headers-cpio |
989 | use_collect2=yes | |
990 | ;; | |
991 | hppa1.0-*-hiux*) | |
992 | tm_file="${tm_file} pa/pa32-regs.h pa/som.h pa/pa-hpux.h pa/pa-hiux.h" | |
34f4f3a5 | 993 | xm_defines=POSIX |
14455c64 | 994 | tmake_file=pa/t-pa-hpux |
61ed06c3 HPN |
995 | install_headers_dir=install-headers-cpio |
996 | use_collect2=yes | |
997 | ;; | |
998 | hppa*-*-lites*) | |
c40409ce | 999 | tm_file="${tm_file} pa/pa32-regs.h dbxelf.h elfos.h pa/elf.h" |
61ed06c3 | 1000 | target_cpu_default="MASK_PA_11" |
14455c64 | 1001 | tmake_file="pa/t-bsd pa/t-pa" |
61ed06c3 HPN |
1002 | use_collect2=yes |
1003 | ;; | |
1004 | hppa*-*-mpeix*) | |
1005 | tm_file="${tm_file} pa/pa32-regs.h pa/long_double.h pa/som.h pa/pa-mpeix.h" | |
5dd8a9b1 | 1006 | tmake_file=pa/t-mpeix |
0e5a4ad8 | 1007 | echo "You must use gas. Assuming it is already installed." |
c21a2372 | 1008 | gas=yes |
61ed06c3 | 1009 | install_headers_dir=install-headers-tar |
0e5a4ad8 EC |
1010 | use_collect2=yes |
1011 | ;; | |
61ed06c3 | 1012 | i370-*-opened*) # IBM 360/370/390 Architecture |
34f4f3a5 | 1013 | xm_defines='POSIX FATAL_EXIT_CODE=12' |
61ed06c3 | 1014 | tm_file=i370/oe.h |
14455c64 | 1015 | tmake_file="i370/t-oe i370/t-i370" |
51fabca5 NB |
1016 | c_target_objs="i370-c.o" |
1017 | cxx_target_objs="i370-c.o" | |
61ed06c3 HPN |
1018 | ;; |
1019 | i370-*-mvs*) | |
34f4f3a5 | 1020 | xm_defines='POSIX FATAL_EXIT_CODE=12' |
61ed06c3 | 1021 | tm_file=i370/mvs.h |
51fabca5 NB |
1022 | tmake_file="i370/t-i370" |
1023 | c_target_objs="i370-c.o" | |
1024 | cxx_target_objs="i370-c.o" | |
61ed06c3 HPN |
1025 | ;; |
1026 | i370-*-linux*) | |
c40409ce | 1027 | tm_file="dbxelf.h elfos.h svr4.h linux.h i370/linux.h ${tm_file}" |
7b3a4df5 | 1028 | tmake_file="t-slibgcc-elf-ver t-linux" |
61ed06c3 | 1029 | # broken_install=yes |
275b60d6 | 1030 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
1031 | # extra_parts="crtbegin.o crtend.o" |
1032 | gnu_ld=yes | |
1033 | gas=yes | |
1034 | elf=yes | |
1035 | if test x$enable_threads = xyes; then | |
1036 | thread_file='posix' | |
1037 | fi | |
1038 | ;; | |
8da6d80e | 1039 | i[34567]86-*-chorusos*) |
34f4f3a5 | 1040 | xm_defines=POSIX |
39ed301b | 1041 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h chorus.h" |
14455c64 | 1042 | tmake_file="i386/t-i386elf t-svr4" |
8da6d80e CC |
1043 | case x${enable_threads} in |
1044 | xyes | xpthreads | xposix) | |
1045 | thread_file='posix' | |
1046 | ;; | |
1047 | esac | |
1048 | ;; | |
61ed06c3 | 1049 | i[34567]86-*-elf*) |
34f4f3a5 | 1050 | xm_defines=POSIX |
39ed301b | 1051 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h" |
14455c64 | 1052 | tmake_file="i386/t-i386elf t-svr4" |
61ed06c3 HPN |
1053 | ;; |
1054 | i[34567]86-ibm-aix*) # IBM PS/2 running AIX | |
1055 | if test x$gas = xyes | |
1056 | then | |
39ed301b | 1057 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386.h" |
61ed06c3 HPN |
1058 | extra_parts="crtbegin.o crtend.o" |
1059 | tmake_file=i386/t-crtstuff | |
1060 | else | |
39ed301b | 1061 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/aix386ng.h" |
61ed06c3 HPN |
1062 | use_collect2=yes |
1063 | fi | |
34f4f3a5 | 1064 | xm_defines=POSIX |
61ed06c3 HPN |
1065 | ;; |
1066 | i[34567]86-ncr-sysv4*) # NCR 3000 - ix86 running system V.4 | |
34f4f3a5 | 1067 | xm_defines="POSIX SMALL_ARG_MAX" |
61ed06c3 HPN |
1068 | if test x$stabs = xyes -a x$gas = xyes |
1069 | then | |
1070 | tm_file=i386/sysv4gdb.h | |
1071 | else | |
39ed301b | 1072 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h" |
61ed06c3 HPN |
1073 | fi |
1074 | extra_parts="crtbegin.o crtend.o" | |
1075 | tmake_file=i386/t-crtpic | |
1076 | ;; | |
1077 | i[34567]86-next-*) | |
15bc166f | 1078 | tm_p_file="${tm_p_file} nextstep-protos.h" |
39ed301b | 1079 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h nextstep.h i386/next.h" |
61ed06c3 | 1080 | tmake_file=i386/t-next |
61ed06c3 HPN |
1081 | extra_objs=nextstep.o |
1082 | extra_parts="crtbegin.o crtend.o" | |
1083 | if test x$enable_threads = xyes; then | |
1084 | thread_file='mach' | |
1085 | fi | |
1086 | ;; | |
1087 | i[34567]86-*-netware) # Intel 80386's running netware | |
39ed301b | 1088 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h netware.h i386/netware.h" |
61ed06c3 HPN |
1089 | tmake_file=i386/t-netware |
1090 | ;; | |
1091 | i[34567]86-sequent-bsd*) # 80386 from Sequent | |
1092 | use_collect2=yes | |
1093 | if test x$gas = xyes | |
1094 | then | |
39ed301b | 1095 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h i386/seq-gas.h" |
61ed06c3 | 1096 | else |
39ed301b | 1097 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/sequent.h" |
61ed06c3 HPN |
1098 | fi |
1099 | ;; | |
1100 | i[34567]86-sequent-ptx1*) | |
34f4f3a5 | 1101 | xm_defines=POSIX |
39ed301b | 1102 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h" |
61ed06c3 HPN |
1103 | tmake_file=i386/t-crtstuff |
1104 | extra_parts="crtbegin.o crtend.o" | |
1105 | install_headers_dir=install-headers-cpio | |
1106 | ;; | |
1107 | i[34567]86-sequent-ptx2* | i[34567]86-sequent-sysv3*) | |
34f4f3a5 | 1108 | xm_defines=POSIX |
39ed301b | 1109 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/seq-sysv3.h i386/seq2-sysv3.h" |
61ed06c3 HPN |
1110 | tmake_file=i386/t-crtstuff |
1111 | extra_parts="crtbegin.o crtend.o" | |
1112 | install_headers_dir=install-headers-cpio | |
1113 | ;; | |
1114 | i[34567]86-sequent-ptx4* | i[34567]86-sequent-sysv4*) | |
70305f2b RH |
1115 | if test x$gas = xyes |
1116 | then | |
1117 | tm_file="${tm_file} usegas.h" | |
1118 | fi | |
34f4f3a5 | 1119 | xm_defines="POSIX SMALL_ARG_MAX" |
39ed301b | 1120 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ptx4.h i386/ptx4-i.h" |
61ed06c3 HPN |
1121 | tmake_file=t-svr4 |
1122 | extra_parts="crtbegin.o crtend.o" | |
1123 | install_headers_dir=install-headers-cpio | |
1124 | ;; | |
1125 | i386-sun-sunos*) # Sun i386 roadrunner | |
34f4f3a5 | 1126 | xm_defines=POSIX |
39ed301b | 1127 | tm_file="${tm_file} i386/unix.h i386/sun386.h i386/sun.h" |
61ed06c3 HPN |
1128 | use_collect2=yes |
1129 | ;; | |
1130 | i[34567]86-wrs-vxworks*) | |
39ed301b | 1131 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h i386/vxi386.h" |
61ed06c3 HPN |
1132 | thread_file='vxworks' |
1133 | ;; | |
1134 | i[34567]86-*-aout*) | |
39ed301b | 1135 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h" |
61ed06c3 HPN |
1136 | ;; |
1137 | i[34567]86-*-beoself* | i[34567]86-*-beos*) | |
34f4f3a5 | 1138 | xm_defines=POSIX |
61ed06c3 | 1139 | tmake_file='i386/t-beos i386/t-crtpic' |
39ed301b | 1140 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/beos-elf.h" |
61ed06c3 HPN |
1141 | extra_parts='crtbegin.o crtend.o' |
1142 | ;; | |
1143 | i[34567]86-*-bsdi* | i[34567]86-*-bsd386*) | |
39ed301b | 1144 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h i386/bsd386.h" |
61ed06c3 HPN |
1145 | # tmake_file=t-libc-ok |
1146 | ;; | |
1147 | i[34567]86-*-bsd*) | |
39ed301b | 1148 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/386bsd.h" |
61ed06c3 HPN |
1149 | # tmake_file=t-libc-ok |
1150 | # Next line turned off because both 386BSD and BSD/386 use GNU ld. | |
1151 | # use_collect2=yes | |
1152 | ;; | |
1153 | i[34567]86-*-freebsd[12] | i[34567]86-*-freebsd[12].* | i[34567]86-*-freebsd*aout*) | |
39ed301b | 1154 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/freebsd-aout.h" |
61ed06c3 HPN |
1155 | tmake_file=t-freebsd |
1156 | ;; | |
1157 | i[34567]86-*-freebsd*) | |
39ed301b | 1158 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h" |
e564e618 DB |
1159 | ;; |
1160 | x86_64-*-freebsd*) | |
39ed301b | 1161 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/x86-64.h i386/freebsd.h i386/freebsd64.h" |
61ed06c3 | 1162 | ;; |
6ea0279f | 1163 | i[34567]86-*-netbsdelf*) |
39ed301b | 1164 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h" |
6ea0279f MG |
1165 | float_format=i386 |
1166 | ;; | |
61ed06c3 | 1167 | i[34567]86-*-netbsd*) |
39ed301b | 1168 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h" |
61ed06c3 | 1169 | tmake_file=t-netbsd |
5721cd84 | 1170 | use_collect2=yes |
61ed06c3 | 1171 | ;; |
7c884404 | 1172 | x86_64-*-netbsd*) |
39ed301b | 1173 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/x86-64.h i386/netbsd64.h" |
7c884404 JT |
1174 | float_format=i386 |
1175 | ;; | |
61ed06c3 | 1176 | i[34567]86-*-openbsd*) |
39ed301b | 1177 | tm_file="${cpu_type}/${cpu_type}.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h ${tm_file}" |
f1cf4606 ME |
1178 | # needed to unconfuse gdb |
1179 | tmake_file="t-libc-ok t-openbsd i386/t-openbsd" | |
61ed06c3 HPN |
1180 | # we need collect2 until our bug is fixed... |
1181 | use_collect2=yes | |
1182 | ;; | |
1183 | i[34567]86-*-coff*) | |
39ed301b | 1184 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h" |
61ed06c3 HPN |
1185 | ;; |
1186 | i[34567]86-*-isc*) # 80386 running ISC system | |
34f4f3a5 | 1187 | xm_defines=POSIX |
61ed06c3 HPN |
1188 | if test x$gas = xyes -a x$stabs = xyes |
1189 | then | |
39ed301b | 1190 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h i386/iscdbx.h" |
61ed06c3 HPN |
1191 | tmake_file=i386/t-svr3dbx |
1192 | extra_parts="svr3.ifile svr3z.ifile" | |
1193 | else | |
39ed301b | 1194 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h i386/isc.h" |
61ed06c3 HPN |
1195 | tmake_file=i386/t-crtstuff |
1196 | extra_parts="crtbegin.o crtend.o" | |
1197 | fi | |
61ed06c3 HPN |
1198 | install_headers_dir=install-headers-cpio |
1199 | ;; | |
1200 | i[34567]86-*-linux*oldld*) # Intel 80386's running GNU/Linux | |
1201 | # with a.out format using | |
1202 | # pre BFD linkers | |
61ed06c3 | 1203 | tmake_file="t-linux-aout i386/t-crtstuff" |
39ed301b | 1204 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-oldld.h" |
61ed06c3 HPN |
1205 | gnu_ld=yes |
1206 | float_format=i386 | |
1207 | ;; | |
1208 | i[34567]86-*-linux*aout*) # Intel 80386's running GNU/Linux | |
1209 | # with a.out format | |
61ed06c3 | 1210 | tmake_file="t-linux-aout i386/t-crtstuff" |
39ed301b | 1211 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h linux-aout.h i386/linux-aout.h" |
61ed06c3 HPN |
1212 | gnu_ld=yes |
1213 | float_format=i386 | |
1214 | ;; | |
1215 | i[34567]86-*-linux*libc1) # Intel 80386's running GNU/Linux | |
1216 | # with ELF format using the | |
1217 | # GNU/Linux C library 5 | |
39ed301b | 1218 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h" |
7b3a4df5 | 1219 | tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 i386/t-crtstuff" |
61ed06c3 HPN |
1220 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" |
1221 | gnu_ld=yes | |
1222 | float_format=i386 | |
1223 | if test x$enable_threads = xyes; then | |
1224 | thread_file='single' | |
1225 | fi | |
1226 | ;; | |
1227 | i[34567]86-*-linux*) # Intel 80386's running GNU/Linux | |
1228 | # with ELF format using glibc 2 | |
1229 | # aka GNU/Linux C library 6 | |
39ed301b | 1230 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h" |
7b3a4df5 | 1231 | tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff" |
275b60d6 | 1232 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
1233 | gnu_ld=yes |
1234 | float_format=i386 | |
1235 | if test x$enable_threads = xyes; then | |
1236 | thread_file='posix' | |
1237 | fi | |
1238 | ;; | |
14f73b5a | 1239 | x86_64-*-linux*) |
39ed301b | 1240 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \ |
32fb7c9d | 1241 | i386/x86-64.h i386/linux64.h" |
56547299 | 1242 | tmake_file="t-slibgcc-elf-ver t-linux i386/t-crtstuff i386/t-linux64" |
275b60d6 | 1243 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
14f73b5a JH |
1244 | gnu_ld=yes |
1245 | float_format=i386 | |
1246 | if test x$enable_threads = xyes; then | |
1247 | thread_file='posix' | |
1248 | fi | |
1249 | ;; | |
61ed06c3 HPN |
1250 | i[34567]86-*-gnu*) |
1251 | float_format=i386 | |
1252 | ;; | |
1253 | i[34567]86-go32-msdos | i[34567]86-*-go32*) | |
1254 | echo "GO32/DJGPP V1.X is no longer supported. Use *-pc-msdosdjgpp for DJGPP V2.X instead." | |
1255 | exit 1 | |
1256 | ;; | |
1257 | i[34567]86-pc-msdosdjgpp*) | |
1258 | xm_file=i386/xm-djgpp.h | |
39ed301b | 1259 | tm_file="dbxcoff.h ${tm_file} i386/djgpp.h" |
5dd8a9b1 | 1260 | tmake_file=i386/t-djgpp |
61ed06c3 HPN |
1261 | gnu_ld=yes |
1262 | gas=yes | |
1263 | exeext=.exe | |
1264 | float_format=none | |
1265 | case $host in *pc-msdosdjgpp*) | |
1266 | target_alias=djgpp | |
1267 | ;; | |
1268 | esac | |
1269 | ;; | |
1270 | i[34567]86-moss-msdos* | i[34567]86-*-moss*) | |
39ed301b | 1271 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h i386/linux.h i386/moss.h" |
61ed06c3 HPN |
1272 | tmake_file=t-libc-ok |
1273 | gnu_ld=yes | |
1274 | gas=yes | |
1275 | ;; | |
1276 | i[34567]86-*-lynxos*) | |
1277 | if test x$gas = xyes | |
1278 | then | |
39ed301b | 1279 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx.h i386/lynx.h" |
61ed06c3 | 1280 | else |
39ed301b | 1281 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h lynx-ng.h i386/lynx-ng.h" |
61ed06c3 | 1282 | fi |
61ed06c3 HPN |
1283 | ;; |
1284 | i[34567]86-*-mach*) | |
39ed301b | 1285 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/mach.h" |
61ed06c3 HPN |
1286 | # tmake_file=t-libc-ok |
1287 | use_collect2=yes | |
1288 | ;; | |
1289 | i[34567]86-*-osfrose*) # 386 using OSF/rose | |
1290 | if test x$elf = xyes | |
1291 | then | |
39ed301b | 1292 | tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h i386/osfelf.h" |
61ed06c3 HPN |
1293 | use_collect2= |
1294 | else | |
39ed301b | 1295 | tm_file="${tm_file} halfpic.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/osfrose.h" |
61ed06c3 HPN |
1296 | use_collect2=yes |
1297 | fi | |
61ed06c3 HPN |
1298 | tmake_file=i386/t-osf |
1299 | extra_objs=halfpic.o | |
1300 | ;; | |
1301 | i[34567]86-go32-rtems*) | |
f22b4bc4 | 1302 | xm_defines=POSIX |
39ed301b | 1303 | tm_file="dbxcoff.h ${tm_file} i386/djgpp.h i386/djgpp-rtems.h rtems.h" |
db009825 | 1304 | tmake_file=t-rtems |
bc98ef7f JS |
1305 | if test x$enable_threads = xyes; then |
1306 | thread_file='rtems' | |
1307 | fi | |
61ed06c3 HPN |
1308 | ;; |
1309 | i[34567]86-*-rtemscoff*) | |
f22b4bc4 | 1310 | xm_defines=POSIX |
39ed301b | 1311 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h i386/rtems.h rtems.h" |
7857f134 | 1312 | tmake_file=t-rtems |
bc98ef7f JS |
1313 | if test x$enable_threads = xyes; then |
1314 | thread_file='rtems' | |
1315 | fi | |
61ed06c3 HPN |
1316 | ;; |
1317 | i[34567]86-*-rtems*|i[34567]86-*-rtemself*) | |
f22b4bc4 | 1318 | xm_defines=POSIX |
39ed301b | 1319 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h" |
61ed06c3 HPN |
1320 | extra_parts="crtbegin.o crtend.o crti.o crtn.o" |
1321 | tmake_file="i386/t-rtems-i386 i386/t-crtstuff t-rtems" | |
bc98ef7f JS |
1322 | if test x$enable_threads = xyes; then |
1323 | thread_file='rtems' | |
1324 | fi | |
61ed06c3 HPN |
1325 | ;; |
1326 | i[34567]86-*-sco3.2v5*) # 80386 running SCO Open Server 5 | |
34f4f3a5 | 1327 | xm_defines=POSIX |
61ed06c3 | 1328 | install_headers_dir=install-headers-cpio |
39ed301b | 1329 | tm_file="${tm_file} i386/unix.h i386/att.h i386/sco5.h" |
61ed06c3 HPN |
1330 | if test x$gas = xyes |
1331 | then | |
70305f2b | 1332 | tm_file="usegas.h ${tm_file}" |
61ed06c3 HPN |
1333 | tmake_file=i386/t-sco5gas |
1334 | else | |
1335 | tmake_file=i386/t-sco5 | |
1336 | fi | |
61ed06c3 HPN |
1337 | extra_parts="crti.o crtbegin.o crtend.o crtbeginS.o crtendS.o" |
1338 | ;; | |
61ed06c3 | 1339 | i[34567]86-*-solaris2*) |
34f4f3a5 | 1340 | xm_defines="POSIX SMALL_ARG_MAX" |
39ed301b | 1341 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sol2.h" |
61ed06c3 | 1342 | if test x$gas = xyes; then |
61ed06c3 HPN |
1343 | tm_file="i386/sol2gas.h ${tm_file}" |
1344 | fi | |
14455c64 | 1345 | tmake_file="i386/t-sol2 t-svr4" |
7b3a4df5 RH |
1346 | if test x$gnu_ld = xyes; then |
1347 | tmake_file="$tmake_file t-slibgcc-elf-ver" | |
1348 | else | |
1349 | tmake_file="$tmake_file t-slibgcc-sld" | |
1350 | fi | |
61ed06c3 | 1351 | extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o" |
61ed06c3 HPN |
1352 | if test x${enable_threads} = x; then |
1353 | enable_threads=$have_pthread_h | |
1354 | if test x${enable_threads} = x; then | |
1355 | enable_threads=$have_thread_h | |
1356 | fi | |
1357 | fi | |
1358 | if test x${enable_threads} = xyes; then | |
1359 | if test x${have_pthread_h} = xyes; then | |
1360 | thread_file='posix' | |
1361 | else | |
1362 | thread_file='solaris' | |
1363 | fi | |
1364 | fi | |
1365 | ;; | |
23a535c4 | 1366 | i[34567]86-*-sysv5*) # Intel x86 on System V Release 5 |
34f4f3a5 | 1367 | xm_defines=POSIX |
39ed301b | 1368 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h" |
61ed06c3 HPN |
1369 | if test x$stabs = xyes |
1370 | then | |
1371 | tm_file="${tm_file} dbx.h" | |
1372 | fi | |
14455c64 | 1373 | tmake_file="i386/t-crtpic t-svr4" |
61ed06c3 HPN |
1374 | extra_parts="crtbegin.o crtend.o" |
1375 | if test x$enable_threads = xyes; then | |
1376 | thread_file='posix' | |
1377 | fi | |
1378 | ;; | |
1379 | i[34567]86-*-sysv4*) # Intel 80386's running system V.4 | |
34f4f3a5 | 1380 | xm_defines="POSIX SMALL_ARG_MAX" |
39ed301b | 1381 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h" |
61ed06c3 HPN |
1382 | if test x$stabs = xyes |
1383 | then | |
1384 | tm_file="${tm_file} dbx.h" | |
1385 | fi | |
14455c64 | 1386 | tmake_file="i386/t-crtpic t-svr4" |
61ed06c3 HPN |
1387 | extra_parts="crtbegin.o crtend.o" |
1388 | ;; | |
1389 | i[34567]86-*-udk*) # Intel x86 on SCO UW/OSR5 Dev Kit | |
34f4f3a5 | 1390 | xm_defines=POSIX |
39ed301b | 1391 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/sysv5.h i386/udk.h" |
14455c64 | 1392 | tmake_file="i386/t-crtpic i386/t-udk t-svr4" |
61ed06c3 HPN |
1393 | extra_parts="crtbegin.o crtend.o" |
1394 | install_headers_dir=install-headers-cpio | |
1395 | ;; | |
1396 | i[34567]86-*-osf1*) # Intel 80386's running OSF/1 1.3+ | |
34f4f3a5 | 1397 | xm_defines='POSIX USE_C_ALLOCA SMALL_ARG_MAX' |
61ed06c3 HPN |
1398 | if test x$stabs = xyes |
1399 | then | |
39ed301b | 1400 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h i386/osf1elfgdb.h" |
61ed06c3 | 1401 | else |
39ed301b | 1402 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/osf1elf.h" |
61ed06c3 HPN |
1403 | fi |
1404 | tmake_file=i386/t-osf1elf | |
61ed06c3 HPN |
1405 | extra_parts="crti.o crtn.o crtbegin.o crtend.o" |
1406 | ;; | |
1407 | i[34567]86-*-sysv*) # Intel 80386's running system V | |
34f4f3a5 | 1408 | xm_defines=POSIX |
61ed06c3 HPN |
1409 | if test x$gas = xyes |
1410 | then | |
1411 | if test x$stabs = xyes | |
1412 | then | |
39ed301b | 1413 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h i386/svr3dbx.h" |
61ed06c3 HPN |
1414 | tmake_file=i386/t-svr3dbx |
1415 | extra_parts="svr3.ifile svr3z.rfile" | |
1416 | else | |
39ed301b | 1417 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/svr3gas.h" |
61ed06c3 HPN |
1418 | extra_parts="crtbegin.o crtend.o" |
1419 | tmake_file=i386/t-crtstuff | |
1420 | fi | |
1421 | else | |
39ed301b | 1422 | tm_file="${tm_file} svr3.h i386/unix.h i386/att.h i386/sysv3.h" |
61ed06c3 HPN |
1423 | extra_parts="crtbegin.o crtend.o" |
1424 | tmake_file=i386/t-crtstuff | |
1425 | fi | |
1426 | tmake_file="$tmake_file i386/t-crtpic" | |
1427 | ;; | |
1428 | i386-*-vsta) # Intel 80386's running VSTa kernel | |
39ed301b DB |
1429 | xm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/xm-vsta.h" |
1430 | tm_file="${tm_file} i386/vsta.h" | |
61ed06c3 HPN |
1431 | ;; |
1432 | i[34567]86-*-win32) | |
b19a539e | 1433 | xm_defines=POSIX |
4dc0535b | 1434 | xm_file=i386/xm-cygwin.h |
60a8ab96 | 1435 | float_format=i386 |
61ed06c3 | 1436 | tmake_file=i386/t-cygwin |
39ed301b | 1437 | tm_file="${tm_file} i386/win32.h" |
61ed06c3 HPN |
1438 | extra_objs=winnt.o |
1439 | if test x$enable_threads = xyes; then | |
1440 | thread_file='win32' | |
1441 | fi | |
1442 | exeext=.exe | |
1443 | ;; | |
1444 | i[34567]86-*-pe | i[34567]86-*-cygwin*) | |
b19a539e | 1445 | xm_defines=POSIX |
4dc0535b | 1446 | xm_file=i386/xm-cygwin.h |
60a8ab96 | 1447 | float_format=i386 |
61ed06c3 HPN |
1448 | tmake_file=i386/t-cygwin |
1449 | tm_file=i386/cygwin.h | |
61ed06c3 HPN |
1450 | extra_objs=winnt.o |
1451 | if test x$enable_threads = xyes; then | |
1452 | thread_file='win32' | |
1453 | fi | |
1454 | exeext=.exe | |
1455 | ;; | |
1456 | i[34567]86-*-mingw32*) | |
1457 | tm_file=i386/mingw32.h | |
60a8ab96 | 1458 | float_format=i386 |
34f4f3a5 | 1459 | xm_defines=POSIX |
4dc0535b | 1460 | xm_file=i386/xm-mingw32.h |
61ed06c3 HPN |
1461 | tmake_file="i386/t-cygwin i386/t-mingw32" |
1462 | extra_objs=winnt.o | |
61ed06c3 HPN |
1463 | if test x$enable_threads = xyes; then |
1464 | thread_file='win32' | |
1465 | fi | |
1466 | exeext=.exe | |
1467 | case $machine in | |
09eaf5a5 | 1468 | *mingw32crt*) |
61ed06c3 HPN |
1469 | tm_file="${tm_file} i386/crtdll.h" |
1470 | ;; | |
09eaf5a5 DS |
1471 | *minwg32msv* | *mingw32*) |
1472 | ;; | |
61ed06c3 HPN |
1473 | esac |
1474 | ;; | |
1475 | i[34567]86-*-uwin*) | |
39ed301b | 1476 | tm_file="i386/cygwin.h i386/uwin.h" |
61ed06c3 HPN |
1477 | tmake_file="i386/t-cygwin i386/t-uwin" |
1478 | extra_objs=winnt.o | |
61ed06c3 HPN |
1479 | if test x$enable_threads = xyes; then |
1480 | thread_file='win32' | |
1481 | fi | |
1482 | exeext=.exe | |
1483 | ;; | |
04cec1a7 | 1484 | i[34567]86-*-interix3*) |
39ed301b | 1485 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h i386/i386-interix3.h interix.h interix3.h" |
5dd8a9b1 | 1486 | xm_file="i386/xm-i386-interix.h" |
04cec1a7 | 1487 | xm_defines=POSIX |
5dd8a9b1 | 1488 | tmake_file="t-interix i386/t-interix" |
04cec1a7 | 1489 | extra_objs=interix.o |
5dd8a9b1 | 1490 | xmake_file="x-interix" |
04cec1a7 DR |
1491 | if test x$enable_threads = xyes ; then |
1492 | thread_file='posix' | |
1493 | fi | |
1494 | if test x$stabs = xyes ; then | |
1495 | tm_file="${tm_file} dbxcoff.h" | |
1496 | fi | |
1497 | ;; | |
61ed06c3 | 1498 | i[34567]86-*-interix*) |
39ed301b | 1499 | tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/i386-interix.h interix.h" |
5dd8a9b1 | 1500 | xm_file="i386/xm-i386-interix.h" |
34f4f3a5 | 1501 | xm_defines=POSIX |
14455c64 | 1502 | tmake_file="t-interix i386/t-interix" |
61ed06c3 | 1503 | extra_objs=interix.o |
61ed06c3 HPN |
1504 | if test x$enable_threads = xyes ; then |
1505 | thread_file='posix' | |
1506 | fi | |
1507 | if test x$stabs = xyes ; then | |
1508 | tm_file="${tm_file} dbxcoff.h" | |
1509 | fi | |
1510 | ;; | |
61ed06c3 | 1511 | i[34567]86-dg-dgux*) |
34f4f3a5 | 1512 | xm_defines=POSIX |
39ed301b | 1513 | tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h i386/dgux.h" |
61ed06c3 | 1514 | tmake_file=i386/t-dgux |
61ed06c3 HPN |
1515 | install_headers_dir=install-headers-cpio |
1516 | ;; | |
1517 | i860-alliant-*) # Alliant FX/2800 | |
c40409ce | 1518 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h i860/fx2800.h" |
61ed06c3 HPN |
1519 | tmake_file=i860/t-fx2800 |
1520 | extra_parts="crtbegin.o crtend.o" | |
1521 | ;; | |
1522 | i860-*-bsd*) | |
1523 | tm_file="${tm_file} i860/bsd.h" | |
1524 | if test x$gas = xyes | |
1525 | then | |
1526 | tm_file="${tm_file} i860/bsd-gas.h" | |
1527 | fi | |
1528 | use_collect2=yes | |
1529 | ;; | |
1530 | i860-*-mach*) | |
1531 | tm_file="${tm_file} i860/mach.h" | |
1532 | tmake_file=t-libc-ok | |
1533 | ;; | |
1534 | i860-*-osf*) # Intel Paragon XP/S, OSF/1AD | |
1535 | tm_file="${tm_file} svr3.h i860/paragon.h" | |
34f4f3a5 | 1536 | xm_defines=POSIX |
61ed06c3 HPN |
1537 | ;; |
1538 | i860-*-sysv3*) | |
1539 | tm_file="${tm_file} svr3.h i860/sysv3.h" | |
34f4f3a5 | 1540 | xm_defines=POSIX |
61ed06c3 HPN |
1541 | extra_parts="crtbegin.o crtend.o" |
1542 | ;; | |
1543 | i860-*-sysv4*) | |
c40409ce | 1544 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h i860/sysv4.h" |
34f4f3a5 | 1545 | xm_defines=POSIX |
61ed06c3 HPN |
1546 | tmake_file=t-svr4 |
1547 | extra_parts="crtbegin.o crtend.o" | |
1548 | ;; | |
1549 | i960-wrs-vxworks5 | i960-wrs-vxworks5.0*) | |
1550 | tm_file="${tm_file} i960/vx960.h" | |
1551 | tmake_file=i960/t-vxworks960 | |
1552 | use_collect2=yes | |
1553 | thread_file='vxworks' | |
43fabf7d JW |
1554 | c_target_objs="i960-c.o" |
1555 | cxx_target_objs="i960-c.o" | |
61ed06c3 HPN |
1556 | ;; |
1557 | i960-wrs-vxworks5* | i960-wrs-vxworks) | |
1558 | tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/vx960-coff.h" | |
1559 | tmake_file=i960/t-vxworks960 | |
1560 | use_collect2=yes | |
1561 | thread_file='vxworks' | |
43fabf7d JW |
1562 | c_target_objs="i960-c.o" |
1563 | cxx_target_objs="i960-c.o" | |
61ed06c3 HPN |
1564 | ;; |
1565 | i960-wrs-vxworks*) | |
1566 | tm_file="${tm_file} i960/vx960.h" | |
1567 | tmake_file=i960/t-vxworks960 | |
1568 | use_collect2=yes | |
1569 | thread_file='vxworks' | |
43fabf7d JW |
1570 | c_target_objs="i960-c.o" |
1571 | cxx_target_objs="i960-c.o" | |
61ed06c3 HPN |
1572 | ;; |
1573 | i960-*-coff*) | |
1574 | tm_file="${tm_file} dbxcoff.h i960/i960-coff.h libgloss.h" | |
1575 | tmake_file=i960/t-960bare | |
43fabf7d JW |
1576 | c_target_objs="i960-c.o" |
1577 | cxx_target_objs="i960-c.o" | |
61ed06c3 HPN |
1578 | ;; |
1579 | i960-*-rtems) | |
f22b4bc4 | 1580 | xm_defines=POSIX |
61ed06c3 | 1581 | tmake_file="i960/t-960bare t-rtems" |
f22b4bc4 | 1582 | tm_file="${tm_file} dbxcoff.h i960/i960-coff.h i960/rtems.h rtems.h" |
bc98ef7f JS |
1583 | if test x$enable_threads = xyes; then |
1584 | thread_file='rtems' | |
1585 | fi | |
43fabf7d JW |
1586 | c_target_objs="i960-c.o" |
1587 | cxx_target_objs="i960-c.o" | |
61ed06c3 HPN |
1588 | ;; |
1589 | i960-*-*) # Default i960 environment. | |
1590 | use_collect2=yes | |
5f37d07c | 1591 | tmake_file=i960/t-960bare |
43fabf7d JW |
1592 | c_target_objs="i960-c.o" |
1593 | cxx_target_objs="i960-c.o" | |
61ed06c3 | 1594 | ;; |
c177db4b | 1595 | ia64*-*-aix*) |
c40409ce | 1596 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/aix.h" |
c177db4b TW |
1597 | tmake_file="ia64/t-ia64 ia64/t-aix" |
1598 | target_cpu_default="MASK_GNU_AS|MASK_GNU_LD" | |
1599 | ;; | |
61ed06c3 | 1600 | ia64*-*-elf*) |
c40409ce | 1601 | tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h" |
61ed06c3 HPN |
1602 | tmake_file="ia64/t-ia64" |
1603 | target_cpu_default="0" | |
1604 | if test x$gas = xyes | |
1605 | then | |
1606 | target_cpu_default="${target_cpu_default}|MASK_GNU_AS" | |
1607 | fi | |
1608 | if test x$gnu_ld = xyes | |
1609 | then | |
1610 | target_cpu_default="${target_cpu_default}|MASK_GNU_LD" | |
1611 | fi | |
1612 | float_format=i386 | |
1613 | ;; | |
243a7070 | 1614 | ia64*-*-freebsd*) |
c40409ce | 1615 | tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/freebsd.h" |
243a7070 DB |
1616 | target_cpu_default="MASK_GNU_AS|MASK_GNU_LD" |
1617 | tmake_file="${tmake_file} ia64/t-ia64" | |
1618 | float_format=i386 | |
1619 | ;; | |
61ed06c3 | 1620 | ia64*-*-linux*) |
c40409ce | 1621 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h" |
7b3a4df5 | 1622 | tmake_file="t-slibgcc-elf-ver t-linux ia64/t-ia64 ia64/t-glibc" |
61ed06c3 HPN |
1623 | target_cpu_default="MASK_GNU_AS|MASK_GNU_LD" |
1624 | if test x$enable_threads = xyes; then | |
1625 | thread_file='posix' | |
1626 | fi | |
1627 | float_format=i386 | |
1628 | ;; | |
7e5b9908 | 1629 | ia64*-*-hpux*) |
c40409ce | 1630 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h ia64/hpux_longdouble.h" |
23c108af | 1631 | tmake_file="ia64/t-ia64 ia64/t-hpux" |
7e5b9908 SE |
1632 | target_cpu_default="MASK_GNU_AS" |
1633 | if test x$enable_threads = xyes; then | |
1634 | thread_file='posix' | |
1635 | fi | |
1636 | float_format=i386 | |
1637 | ;; | |
61ed06c3 | 1638 | m32r-*-elf*) |
c40409ce | 1639 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
1640 | extra_parts="crtinit.o crtfini.o" |
1641 | ;; | |
1642 | # m68hc11 and m68hc12 share the same machine description. | |
1643 | m68hc11-*-*|m6811-*-*) | |
c40409ce | 1644 | tm_file="dbxelf.h elfos.h m68hc11/m68hc11.h" |
61ed06c3 HPN |
1645 | tm_p_file="m68hc11/m68hc11-protos.h" |
1646 | md_file="m68hc11/m68hc11.md" | |
1647 | out_file="m68hc11/m68hc11.c" | |
1648 | tmake_file="m68hc11/t-m68hc11-gas" | |
1649 | ;; | |
1650 | m68hc12-*-*|m6812-*-*) | |
c40409ce | 1651 | tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h m68hc11/m68hc11.h" |
61ed06c3 | 1652 | tm_p_file="m68hc11/m68hc11-protos.h" |
61ed06c3 HPN |
1653 | md_file="m68hc11/m68hc11.md" |
1654 | out_file="m68hc11/m68hc11.c" | |
1655 | tmake_file="m68hc11/t-m68hc11-gas" | |
1656 | ;; | |
1657 | m68000-convergent-sysv*) | |
1658 | tm_file=m68k/ctix.h | |
34f4f3a5 | 1659 | xm_defines=POSIX |
61ed06c3 | 1660 | use_collect2=yes |
61ed06c3 HPN |
1661 | ;; |
1662 | m68000-hp-bsd*) # HP 9000/200 running BSD | |
1663 | tm_file=m68k/hp2bsd.h | |
61ed06c3 | 1664 | use_collect2=yes |
61ed06c3 HPN |
1665 | ;; |
1666 | m68000-hp-hpux*) # HP 9000 series 300 | |
34f4f3a5 | 1667 | xm_defines=POSIX |
61ed06c3 HPN |
1668 | if test x$gas = xyes |
1669 | then | |
61ed06c3 HPN |
1670 | tm_file=m68k/hp310g.h |
1671 | else | |
61ed06c3 HPN |
1672 | tm_file=m68k/hp310.h |
1673 | fi | |
14455c64 | 1674 | tmake_file=m68k/t-hp320 |
61ed06c3 HPN |
1675 | install_headers_dir=install-headers-cpio |
1676 | use_collect2=yes | |
61ed06c3 HPN |
1677 | ;; |
1678 | m68000-sun-sunos3*) | |
1679 | tm_file=m68k/sun2.h | |
1680 | use_collect2=yes | |
61ed06c3 HPN |
1681 | ;; |
1682 | m68000-sun-sunos4*) | |
1683 | tm_file=m68k/sun2o4.h | |
1684 | use_collect2=yes | |
61ed06c3 HPN |
1685 | ;; |
1686 | m68000-att-sysv*) | |
34f4f3a5 | 1687 | xm_defines=POSIX |
61ed06c3 HPN |
1688 | if test x$gas = xyes |
1689 | then | |
1690 | tm_file=m68k/3b1g.h | |
1691 | else | |
1692 | tm_file=m68k/3b1.h | |
1693 | fi | |
1694 | use_collect2=yes | |
61ed06c3 HPN |
1695 | ;; |
1696 | m68k-apple-aux*) # Apple Macintosh running A/UX | |
34f4f3a5 | 1697 | xm_defines=POSIX |
61ed06c3 HPN |
1698 | tmake_file=m68k/t-aux |
1699 | install_headers_dir=install-headers-cpio | |
61ed06c3 HPN |
1700 | extra_parts="crt1.o mcrt1.o maccrt1.o crt2.o crtn.o" |
1701 | tm_file= | |
1702 | if test "$gnu_ld" = yes | |
1703 | then | |
1704 | tm_file="${tm_file} m68k/auxgld.h" | |
1705 | else | |
1706 | tm_file="${tm_file} m68k/auxld.h" | |
1707 | fi | |
1708 | if test "$gas" = yes | |
1709 | then | |
1710 | tm_file="${tm_file} m68k/auxgas.h" | |
1711 | else | |
1712 | tm_file="${tm_file} m68k/auxas.h" | |
1713 | fi | |
1714 | tm_file="${tm_file} m68k/a-ux.h" | |
1715 | float_format=m68k | |
1716 | ;; | |
1717 | m68k-apollo-*) | |
1718 | tm_file=m68k/apollo68.h | |
61ed06c3 | 1719 | use_collect2=yes |
61ed06c3 HPN |
1720 | float_format=m68k |
1721 | ;; | |
1722 | m68k-altos-sysv*) # Altos 3068 | |
1723 | if test x$gas = xyes | |
1724 | then | |
1725 | tm_file=m68k/altos3068.h | |
34f4f3a5 | 1726 | xm_defines=POSIX |
61ed06c3 HPN |
1727 | else |
1728 | echo "The Altos is supported only with the GNU assembler" 1>&2 | |
1729 | exit 1 | |
1730 | fi | |
61ed06c3 HPN |
1731 | ;; |
1732 | m68k-bull-sysv*) # Bull DPX/2 | |
1733 | if test x$gas = xyes | |
1734 | then | |
1735 | if test x$stabs = xyes | |
1736 | then | |
1737 | tm_file=m68k/dpx2cdbx.h | |
1738 | else | |
1739 | tm_file=m68k/dpx2g.h | |
1740 | fi | |
1741 | else | |
1742 | tm_file=m68k/dpx2.h | |
1743 | fi | |
34f4f3a5 | 1744 | xm_defines=POSIX |
61ed06c3 | 1745 | use_collect2=yes |
61ed06c3 HPN |
1746 | ;; |
1747 | m68k-atari-sysv4*) # Atari variant of V.4. | |
1748 | tm_file=m68k/atari.h | |
34f4f3a5 | 1749 | xm_defines=POSIX |
61ed06c3 HPN |
1750 | tmake_file=t-svr4 |
1751 | extra_parts="crtbegin.o crtend.o" | |
61ed06c3 HPN |
1752 | float_format=m68k |
1753 | ;; | |
1754 | m68k-motorola-sysv*) | |
1755 | tm_file=m68k/mot3300.h | |
34f4f3a5 | 1756 | xm_defines=POSIX |
61ed06c3 HPN |
1757 | if test x$gas = xyes |
1758 | then | |
61ed06c3 HPN |
1759 | if test x$gnu_ld = xyes |
1760 | then | |
1761 | tmake_file=m68k/t-mot3300-gald | |
1762 | else | |
1763 | tmake_file=m68k/t-mot3300-gas | |
1764 | use_collect2=yes | |
1765 | fi | |
1766 | else | |
61ed06c3 HPN |
1767 | if test x$gnu_ld = xyes |
1768 | then | |
1769 | tmake_file=m68k/t-mot3300-gld | |
1770 | else | |
1771 | tmake_file=m68k/t-mot3300 | |
1772 | use_collect2=yes | |
1773 | fi | |
1774 | fi | |
1775 | gdb_needs_out_file_path=yes | |
1776 | extra_parts="crt0.o mcrt0.o" | |
61ed06c3 HPN |
1777 | float_format=m68k |
1778 | ;; | |
1779 | m68k-ncr-sysv*) # NCR Tower 32 SVR3 | |
1780 | tm_file=m68k/tower-as.h | |
34f4f3a5 | 1781 | xm_defines=POSIX |
61ed06c3 | 1782 | extra_parts="crtbegin.o crtend.o" |
61ed06c3 HPN |
1783 | ;; |
1784 | m68k-plexus-sysv*) | |
1785 | tm_file=m68k/plexus.h | |
34f4f3a5 | 1786 | xm_defines=POSIX |
61ed06c3 | 1787 | use_collect2=yes |
61ed06c3 HPN |
1788 | ;; |
1789 | m68k-tti-*) | |
1790 | tm_file=m68k/pbb.h | |
34f4f3a5 | 1791 | xm_defines=POSIX |
61ed06c3 HPN |
1792 | ;; |
1793 | m68k-crds-unos*) | |
34f4f3a5 | 1794 | xm_defines=POSIX |
61ed06c3 HPN |
1795 | tm_file=m68k/crds.h |
1796 | use_collect2=yes | |
61ed06c3 HPN |
1797 | ;; |
1798 | m68k-cbm-sysv4*) # Commodore variant of V.4. | |
1799 | tm_file=m68k/amix.h | |
34f4f3a5 | 1800 | xm_defines=POSIX |
61ed06c3 HPN |
1801 | tmake_file=t-svr4 |
1802 | extra_parts="crtbegin.o crtend.o" | |
61ed06c3 HPN |
1803 | float_format=m68k |
1804 | ;; | |
1805 | m68k-ccur-rtu) | |
1806 | tm_file=m68k/ccur-GAS.h | |
61ed06c3 HPN |
1807 | use_collect2=yes |
1808 | float_format=m68k | |
1809 | ;; | |
1810 | m68k-hp-bsd4.4*) # HP 9000/3xx running 4.4bsd | |
1811 | tm_file=m68k/hp3bsd44.h | |
61ed06c3 | 1812 | use_collect2=yes |
61ed06c3 HPN |
1813 | float_format=m68k |
1814 | ;; | |
1815 | m68k-hp-bsd*) # HP 9000/3xx running Berkeley Unix | |
1816 | tm_file=m68k/hp3bsd.h | |
1817 | use_collect2=yes | |
61ed06c3 HPN |
1818 | float_format=m68k |
1819 | ;; | |
1820 | m68k-isi-bsd*) | |
1821 | if test x$with_fp = xno | |
1822 | then | |
1823 | tm_file=m68k/isi-nfp.h | |
1824 | else | |
1825 | tm_file=m68k/isi.h | |
1826 | float_format=m68k | |
1827 | fi | |
1828 | use_collect2=yes | |
61ed06c3 HPN |
1829 | ;; |
1830 | m68k-hp-hpux7*) # HP 9000 series 300 running HPUX version 7. | |
34f4f3a5 | 1831 | xm_defines=POSIX |
61ed06c3 HPN |
1832 | if test x$gas = xyes |
1833 | then | |
1834 | xmake_file=m68k/x-hp320g | |
1835 | tm_file=m68k/hp320g.h | |
1836 | else | |
1837 | xmake_file=m68k/x-hp320 | |
1838 | tm_file=m68k/hpux7.h | |
1839 | fi | |
1840 | install_headers_dir=install-headers-cpio | |
1841 | use_collect2=yes | |
61ed06c3 HPN |
1842 | float_format=m68k |
1843 | ;; | |
1844 | m68k-hp-hpux*) # HP 9000 series 300 | |
34f4f3a5 | 1845 | xm_defines=POSIX |
61ed06c3 HPN |
1846 | if test x$gas = xyes |
1847 | then | |
1848 | xmake_file=m68k/x-hp320g | |
1849 | tm_file=m68k/hp320g.h | |
1850 | else | |
1851 | xmake_file=m68k/x-hp320 | |
1852 | tm_file=m68k/hp320.h | |
1853 | fi | |
1854 | install_headers_dir=install-headers-cpio | |
1855 | use_collect2=yes | |
61ed06c3 HPN |
1856 | float_format=m68k |
1857 | ;; | |
1858 | m68k-sun-mach*) | |
1859 | tm_file=m68k/sun3mach.h | |
1860 | use_collect2=yes | |
61ed06c3 HPN |
1861 | float_format=m68k |
1862 | ;; | |
1863 | m68k-sony-newsos3*) | |
1864 | if test x$gas = xyes | |
1865 | then | |
1866 | tm_file=m68k/news3gas.h | |
1867 | else | |
1868 | tm_file=m68k/news3.h | |
1869 | fi | |
1870 | use_collect2=yes | |
61ed06c3 HPN |
1871 | float_format=m68k |
1872 | ;; | |
1873 | m68k-sony-bsd* | m68k-sony-newsos*) | |
1874 | if test x$gas = xyes | |
1875 | then | |
1876 | tm_file=m68k/newsgas.h | |
1877 | else | |
1878 | tm_file=m68k/news.h | |
1879 | fi | |
1880 | use_collect2=yes | |
61ed06c3 HPN |
1881 | float_format=m68k |
1882 | ;; | |
1883 | m68k-next-nextstep2*) | |
15bc166f | 1884 | tm_p_file="${tm_p_file} nextstep-protos.h" |
61ed06c3 | 1885 | tm_file=m68k/next21.h |
61ed06c3 HPN |
1886 | tmake_file=m68k/t-next |
1887 | xmake_file=m68k/x-next | |
1888 | extra_objs=nextstep.o | |
61ed06c3 HPN |
1889 | use_collect2=yes |
1890 | float_format=m68k | |
1891 | ;; | |
1892 | m68k-next-nextstep[34]*) | |
15bc166f | 1893 | tm_p_file="${tm_p_file} nextstep-protos.h" |
61ed06c3 | 1894 | tm_file=m68k/next.h |
61ed06c3 HPN |
1895 | tmake_file=m68k/t-next |
1896 | xmake_file=m68k/x-next | |
1897 | extra_objs=nextstep.o | |
1898 | extra_parts="crtbegin.o crtend.o" | |
61ed06c3 HPN |
1899 | float_format=m68k |
1900 | if test x$enable_threads = xyes; then | |
1901 | thread_file='mach' | |
1902 | fi | |
1903 | ;; | |
1904 | m68k-sun-sunos3*) | |
1905 | if test x$with_fp = xno | |
1906 | then | |
1907 | tm_file=m68k/sun3n3.h | |
1908 | else | |
1909 | tm_file=m68k/sun3o3.h | |
1910 | float_format=m68k | |
1911 | fi | |
1912 | use_collect2=yes | |
61ed06c3 HPN |
1913 | ;; |
1914 | m68k-sun-sunos*) # For SunOS 4 (the default). | |
1915 | if test x$with_fp = xno | |
1916 | then | |
1917 | tm_file=m68k/sun3n.h | |
1918 | else | |
1919 | tm_file=m68k/sun3.h | |
1920 | float_format=m68k | |
1921 | fi | |
1922 | use_collect2=yes | |
61ed06c3 HPN |
1923 | ;; |
1924 | m68k-wrs-vxworks*) | |
1925 | tm_file=m68k/vxm68k.h | |
1926 | tmake_file=m68k/t-vxworks68 | |
61ed06c3 HPN |
1927 | thread_file='vxworks' |
1928 | float_format=m68k | |
1929 | ;; | |
1930 | m68k-*-aout*) | |
1931 | tmake_file=m68k/t-m68kbare | |
1932 | tm_file="m68k/m68k-aout.h libgloss.h" | |
61ed06c3 HPN |
1933 | float_format=m68k |
1934 | ;; | |
1935 | m68k-*-coff*) | |
1936 | tmake_file=m68k/t-m68kbare | |
1937 | tm_file="m68k/m68k-coff.h dbx.h" | |
61ed06c3 HPN |
1938 | float_format=m68k |
1939 | ;; | |
1940 | m68020-*-elf* | m68k-*-elf*) | |
91171315 | 1941 | tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h" |
34f4f3a5 | 1942 | xm_defines=POSIX |
61ed06c3 | 1943 | tmake_file=m68k/t-m68kelf |
bb8602be | 1944 | extra_parts="crtbegin.o crtend.o" |
61ed06c3 HPN |
1945 | ;; |
1946 | m68k-*-lynxos*) | |
1947 | if test x$gas = xyes | |
1948 | then | |
1949 | tm_file=m68k/lynx.h | |
1950 | else | |
1951 | tm_file=m68k/lynx-ng.h | |
1952 | fi | |
61ed06c3 | 1953 | tmake_file=m68k/t-lynx |
61ed06c3 HPN |
1954 | float_format=m68k |
1955 | ;; | |
2fd95d71 JT |
1956 | m68010-*-netbsdelf* | m68k*-*-netbsdelf*) |
1957 | tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h" | |
1958 | case $machine in | |
1959 | m68010*) | |
1960 | target_cpu_default="0" | |
1961 | ;; | |
1962 | *) | |
1963 | target_cpu_default="MASK_68020|MASK_68881|MASK_BITFIELD" | |
1964 | ;; | |
1965 | esac | |
1966 | float_format=m68k | |
1967 | ;; | |
61ed06c3 HPN |
1968 | m68k*-*-netbsd*) |
1969 | tm_file=m68k/netbsd.h | |
1970 | tmake_file=t-netbsd | |
1971 | float_format=m68k | |
5721cd84 | 1972 | use_collect2=yes |
61ed06c3 HPN |
1973 | ;; |
1974 | m68k*-*-openbsd*) | |
f1cf4606 ME |
1975 | # needed to unconfuse gdb |
1976 | tmake_file="t-libc-ok t-openbsd m68k/t-openbsd" | |
61ed06c3 HPN |
1977 | float_format=m68k |
1978 | # we need collect2 until our bug is fixed... | |
1979 | use_collect2=yes | |
1980 | ;; | |
1981 | m68k-*-sysv3*) # Motorola m68k's running system V.3 | |
34f4f3a5 | 1982 | xm_defines=POSIX |
61ed06c3 | 1983 | extra_parts="crtbegin.o crtend.o" |
61ed06c3 HPN |
1984 | float_format=m68k |
1985 | ;; | |
1986 | m68k-*-sysv4*) # Motorola m68k's running system V.4 | |
1987 | tm_file=m68k/m68kv4.h | |
34f4f3a5 | 1988 | xm_defines=POSIX |
61ed06c3 HPN |
1989 | tmake_file=t-svr4 |
1990 | extra_parts="crtbegin.o crtend.o" | |
61ed06c3 HPN |
1991 | float_format=m68k |
1992 | ;; | |
1993 | m68k-*-linux*aout*) # Motorola m68k's running GNU/Linux | |
1994 | # with a.out format | |
61ed06c3 HPN |
1995 | tm_file=m68k/linux-aout.h |
1996 | tmake_file="t-linux-aout m68k/t-linux-aout" | |
61ed06c3 HPN |
1997 | float_format=m68k |
1998 | gnu_ld=yes | |
1999 | ;; | |
2000 | m68k-*-linux*libc1) # Motorola m68k's running GNU/Linux | |
2001 | # with ELF format using the | |
2002 | # GNU/Linux C library 5 | |
61ed06c3 | 2003 | tm_file=m68k/linux.h |
7b3a4df5 | 2004 | tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 m68k/t-linux" |
61ed06c3 | 2005 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" |
61ed06c3 HPN |
2006 | float_format=m68k |
2007 | gnu_ld=yes | |
2008 | ;; | |
2009 | m68k-*-linux*) # Motorola m68k's running GNU/Linux | |
2010 | # with ELF format using glibc 2 | |
2011 | # aka the GNU/Linux C library 6. | |
61ed06c3 | 2012 | tm_file=m68k/linux.h |
7b3a4df5 | 2013 | tmake_file="t-slibgcc-elf-ver t-linux m68k/t-linux" |
61ed06c3 | 2014 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" |
61ed06c3 HPN |
2015 | float_format=m68k |
2016 | gnu_ld=yes | |
2017 | if test x$enable_threads = xyes; then | |
2018 | thread_file='posix' | |
2019 | fi | |
2020 | ;; | |
2021 | m68k-*-psos*) | |
2022 | tmake_file=m68k/t-m68kbare | |
2023 | tm_file=m68k/m68k-psos.h | |
61ed06c3 HPN |
2024 | float_format=m68k |
2025 | ;; | |
2026 | m68k-*-rtemscoff*) | |
f22b4bc4 | 2027 | xm_defines=POSIX |
61ed06c3 | 2028 | tmake_file="m68k/t-m68kbare t-rtems" |
f22b4bc4 | 2029 | tm_file="m68k/m68k-coff.h m68k/rtems.h rtems.h" |
61ed06c3 | 2030 | float_format=m68k |
bc98ef7f JS |
2031 | if test x$enable_threads = xyes; then |
2032 | thread_file='rtems' | |
2033 | fi | |
61ed06c3 HPN |
2034 | ;; |
2035 | m68k-*-rtemself*|m68k-*-rtems*) | |
f22b4bc4 | 2036 | xm_defines=POSIX |
61ed06c3 | 2037 | tmake_file="m68k/t-m68kbare t-rtems m68k/t-crtstuff" |
f22b4bc4 | 2038 | tm_file="m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h m68k/rtemself.h rtems.h" |
61ed06c3 | 2039 | float_format=m68k |
bb8602be | 2040 | extra_parts="crtbegin.o crtend.o" |
bc98ef7f JS |
2041 | if test x$enable_threads = xyes; then |
2042 | thread_file='rtems' | |
2043 | fi | |
61ed06c3 HPN |
2044 | ;; |
2045 | m88k-dg-dgux*) | |
34f4f3a5 | 2046 | xm_defines=POSIX |
61ed06c3 HPN |
2047 | case $machine in |
2048 | m88k-dg-dguxbcs*) | |
c40409ce | 2049 | tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h m88k/dguxbcs.h" |
14455c64 | 2050 | tmake_file="m88k/t-dgux m88k/t-dguxbcs" |
61ed06c3 HPN |
2051 | ;; |
2052 | *) | |
c40409ce | 2053 | tm_file="dbxelf.h elfos.h svr4.h m88k/dgux.h" |
61ed06c3 HPN |
2054 | tmake_file=m88k/t-dgux |
2055 | ;; | |
2056 | esac | |
2057 | extra_parts="crtbegin.o bcscrtbegin.o crtend.o m88kdgux.ld" | |
61ed06c3 HPN |
2058 | if test x$gas = xyes |
2059 | then | |
2060 | tmake_file=m88k/t-dgux-gas | |
2061 | fi | |
2062 | ;; | |
2063 | m88k-dolphin-sysv3*) | |
34f4f3a5 | 2064 | xm_defines=POSIX |
61ed06c3 HPN |
2065 | tm_file=m88k/dolph.h |
2066 | extra_parts="crtbegin.o crtend.o" | |
5dd8a9b1 | 2067 | tmake_file=m88k/t-dolph |
61ed06c3 HPN |
2068 | if test x$gas = xyes |
2069 | then | |
2070 | tmake_file=m88k/t-m88k-gas | |
2071 | fi | |
2072 | ;; | |
2073 | m88k-tektronix-sysv3) | |
34f4f3a5 | 2074 | xm_defines=POSIX |
61ed06c3 HPN |
2075 | tm_file=m88k/tekXD88.h |
2076 | extra_parts="crtbegin.o crtend.o" | |
5dd8a9b1 | 2077 | tmake_file=m88k/t-tekXD88 |
61ed06c3 HPN |
2078 | if test x$gas = xyes |
2079 | then | |
2080 | tmake_file=m88k/t-m88k-gas | |
2081 | fi | |
2082 | ;; | |
2083 | m88k-*-aout*) | |
34f4f3a5 | 2084 | xm_defines=POSIX |
61ed06c3 HPN |
2085 | tm_file=m88k/m88k-aout.h |
2086 | ;; | |
2087 | m88k-*-coff*) | |
34f4f3a5 | 2088 | xm_defines=POSIX |
61ed06c3 HPN |
2089 | tm_file=m88k/m88k-coff.h |
2090 | tmake_file=m88k/t-bug | |
2091 | ;; | |
2092 | m88k-*-luna*) | |
2093 | tm_file=m88k/luna.h | |
2094 | extra_parts="crtbegin.o crtend.o" | |
2095 | if test x$gas = xyes | |
2096 | then | |
2097 | tmake_file=m88k/t-luna-gas | |
2098 | else | |
2099 | tmake_file=m88k/t-luna | |
2100 | fi | |
2101 | ;; | |
2102 | m88k-*-openbsd*) | |
2103 | tmake_file="${tmake_file} m88k/t-luna-gas" | |
2104 | tm_file="m88k/aout-dbx.h aoutos.h m88k/m88k.h openbsd.h ${tm_file}" | |
61ed06c3 HPN |
2105 | ;; |
2106 | m88k-*-sysv3*) | |
34f4f3a5 | 2107 | xm_defines=POSIX |
61ed06c3 HPN |
2108 | tm_file=m88k/sysv3.h |
2109 | extra_parts="crtbegin.o crtend.o" | |
61ed06c3 HPN |
2110 | if test x$gas = xyes |
2111 | then | |
2112 | tmake_file=m88k/t-m88k-gas | |
2113 | fi | |
2114 | ;; | |
2115 | m88k-*-sysv4*) | |
34f4f3a5 | 2116 | xm_defines=POSIX |
c40409ce | 2117 | tm_file="dbxelf.h elfos.h svr4.h m88k/sysv4.h" |
61ed06c3 | 2118 | extra_parts="crtbegin.o crtend.o" |
61ed06c3 HPN |
2119 | tmake_file=m88k/t-sysv4 |
2120 | ;; | |
2121 | mcore-*-elf) | |
c40409ce | 2122 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h" |
61ed06c3 HPN |
2123 | tmake_file=mcore/t-mcore |
2124 | ;; | |
2125 | mcore-*-pe*) | |
2126 | tm_file=mcore/mcore-pe.h | |
2127 | tmake_file=mcore/t-mcore-pe | |
2128 | ;; | |
2129 | mips-sgi-irix6*) # SGI System V.4., IRIX 6 | |
2130 | if test "x$gnu_ld" = xyes | |
2131 | then | |
2132 | tm_file="mips/iris6.h mips/iris6gld.h" | |
2133 | else | |
2134 | tm_file=mips/iris6.h | |
2135 | fi | |
14455c64 | 2136 | tmake_file="mips/t-iris mips/t-iris6" |
34f4f3a5 | 2137 | xm_defines=POSIX |
61ed06c3 HPN |
2138 | # if test x$enable_threads = xyes; then |
2139 | # thread_file='irix' | |
2140 | # fi | |
2141 | ;; | |
2142 | mips-wrs-vxworks) | |
2143 | tm_file="mips/elf.h mips/vxworks.h" | |
2144 | tmake_file=mips/t-ecoff | |
2145 | gas=yes | |
2146 | gnu_ld=yes | |
2147 | extra_parts="crtbegin.o crtend.o" | |
2148 | thread_file='vxworks' | |
2149 | ;; | |
2150 | mips-sgi-irix5cross64) # Irix5 host, Irix 6 target, cross64 | |
2151 | tm_file="mips/iris6.h mips/cross64.h" | |
34f4f3a5 | 2152 | xm_defines=POSIX |
84c041a1 | 2153 | xm_file=mips/xm-iris5.h |
14455c64 | 2154 | tmake_file="mips/t-iris mips/t-cross64" |
61ed06c3 HPN |
2155 | # See comment in mips/iris[56].h files. |
2156 | use_collect2=yes | |
2157 | # if test x$enable_threads = xyes; then | |
2158 | # thread_file='irix' | |
2159 | # fi | |
2160 | ;; | |
2161 | mips-sni-sysv4) | |
2162 | if test x$gas = xyes | |
2163 | then | |
2164 | if test x$stabs = xyes | |
2165 | then | |
2166 | tm_file=mips/iris5gdb.h | |
2167 | else | |
2168 | tm_file="mips/sni-svr4.h mips/sni-gas.h" | |
2169 | fi | |
2170 | else | |
2171 | tm_file=mips/sni-svr4.h | |
2172 | fi | |
34f4f3a5 | 2173 | xm_defines=POSIX |
61ed06c3 HPN |
2174 | if test x$gnu_ld != xyes |
2175 | then | |
2176 | use_collect2=yes | |
2177 | fi | |
2178 | ;; | |
2179 | mips-sgi-irix5*) # SGI System V.4., IRIX 5 | |
2180 | if test x$gas = xyes | |
2181 | then | |
2182 | tm_file="mips/iris5.h mips/iris5gas.h" | |
2183 | if test x$stabs = xyes | |
2184 | then | |
2185 | tm_file="${tm_file} dbx.h" | |
2186 | fi | |
2187 | else | |
2188 | tm_file=mips/iris5.h | |
2189 | fi | |
14455c64 | 2190 | tmake_file=mips/t-iris |
34f4f3a5 | 2191 | xm_defines=POSIX |
84c041a1 | 2192 | xm_file=mips/xm-iris5.h |
61ed06c3 | 2193 | # mips-tfile doesn't work yet |
61ed06c3 HPN |
2194 | # See comment in mips/iris5.h file. |
2195 | use_collect2=yes | |
2196 | # if test x$enable_threads = xyes; then | |
2197 | # thread_file='irix' | |
2198 | # fi | |
2199 | ;; | |
2200 | mips-sgi-irix4loser*) # Mostly like a MIPS. | |
2201 | tm_file="mips/iris4loser.h mips/iris3.h ${tm_file} mips/iris4.h" | |
2202 | if test x$stabs = xyes; then | |
2203 | tm_file="${tm_file} dbx.h" | |
2204 | fi | |
14455c64 | 2205 | tmake_file=mips/t-iris |
34f4f3a5 | 2206 | xm_defines=POSIX |
61ed06c3 | 2207 | if test x$gas = xyes |
7857f134 | 2208 | then : |
61ed06c3 HPN |
2209 | else |
2210 | extra_passes="mips-tfile mips-tdump" | |
2211 | fi | |
2212 | if test x$gnu_ld != xyes | |
2213 | then | |
2214 | use_collect2=yes | |
2215 | fi | |
2216 | # if test x$enable_threads = xyes; then | |
2217 | # thread_file='irix' | |
2218 | # fi | |
2219 | ;; | |
2220 | mips-sgi-irix4*) # Mostly like a MIPS. | |
2221 | tm_file="mips/iris3.h ${tm_file} mips/iris4.h" | |
2222 | if test x$stabs = xyes; then | |
2223 | tm_file="${tm_file} dbx.h" | |
2224 | fi | |
14455c64 | 2225 | tmake_file=mips/t-iris |
34f4f3a5 | 2226 | xm_defines=POSIX |
61ed06c3 | 2227 | if test x$gas = xyes |
7857f134 | 2228 | then : |
61ed06c3 HPN |
2229 | else |
2230 | extra_passes="mips-tfile mips-tdump" | |
2231 | fi | |
2232 | if test x$gnu_ld != xyes | |
2233 | then | |
2234 | use_collect2=yes | |
2235 | fi | |
2236 | # if test x$enable_threads = xyes; then | |
2237 | # thread_file='irix' | |
2238 | # fi | |
2239 | ;; | |
2240 | mips-sgi-*) # Mostly like a MIPS. | |
2241 | tm_file="mips/iris3.h ${tm_file}" | |
2242 | if test x$stabs = xyes; then | |
2243 | tm_file="${tm_file} dbx.h" | |
2244 | fi | |
34f4f3a5 | 2245 | xm_defines=POSIX |
61ed06c3 | 2246 | if test x$gas = xyes |
7857f134 | 2247 | then : |
61ed06c3 HPN |
2248 | else |
2249 | extra_passes="mips-tfile mips-tdump" | |
2250 | fi | |
2251 | if test x$gnu_ld != xyes | |
2252 | then | |
2253 | use_collect2=yes | |
2254 | fi | |
2255 | ;; | |
2256 | mips-dec-osfrose*) # Decstation running OSF/1 reference port with OSF/rose. | |
2257 | tm_file="mips/osfrose.h ${tm_file}" | |
61ed06c3 HPN |
2258 | extra_objs=halfpic.o |
2259 | use_collect2=yes | |
2260 | ;; | |
2261 | mips-dec-osf*) # Decstation running OSF/1 as shipped by DIGITAL | |
2262 | tm_file=mips/dec-osf1.h | |
2263 | if test x$stabs = xyes; then | |
2264 | tm_file="${tm_file} dbx.h" | |
2265 | fi | |
61ed06c3 | 2266 | if test x$gas = xyes |
7857f134 | 2267 | then : |
61ed06c3 HPN |
2268 | else |
2269 | tmake_file=mips/t-ultrix | |
2270 | extra_passes="mips-tfile mips-tdump" | |
2271 | fi | |
2272 | if test x$gnu_ld != xyes | |
2273 | then | |
2274 | use_collect2=yes | |
2275 | fi | |
2276 | ;; | |
2277 | mips-dec-bsd*) # Decstation running 4.4 BSD | |
2278 | tm_file=mips/dec-bsd.h | |
2279 | if test x$gas = xyes | |
7857f134 | 2280 | then : |
61ed06c3 HPN |
2281 | else |
2282 | tmake_file=mips/t-ultrix | |
2283 | extra_passes="mips-tfile mips-tdump" | |
2284 | fi | |
2285 | if test x$gnu_ld != xyes | |
2286 | then | |
2287 | use_collect2=yes | |
2288 | fi | |
2289 | ;; | |
f982f805 JT |
2290 | mips*-*-netbsd*) # NetBSD/mips, either endian. |
2291 | tm_file="elfos.h mips/netbsd.h" | |
2292 | case $machine in | |
2293 | mips*el-*) | |
2294 | tm_file="mips/little.h $tm_file" | |
2295 | ;; | |
2296 | esac | |
61ed06c3 HPN |
2297 | ;; |
2298 | mips*-*-linux*) # Linux MIPS, either endian. | |
c40409ce | 2299 | tm_file="dbxelf.h elfos.h svr4.h linux.h mips/linux.h" |
61ed06c3 | 2300 | case $machine in |
009da785 EC |
2301 | mipsisa32*-*) |
2302 | tm_file="$tm_file mips/isa32-linux.h" | |
2303 | target_cpu_default="MASK_SOFT_FLOAT" | |
2304 | ;; | |
2305 | esac | |
2306 | case $machine in | |
2307 | mips*el-*) | |
2308 | tm_file="mips/little.h $tm_file" | |
2309 | ;; | |
61ed06c3 | 2310 | esac |
5f083b72 | 2311 | tmake_file="t-slibgcc-elf-ver t-linux mips/t-linux" |
275b60d6 | 2312 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
2313 | gnu_ld=yes |
2314 | gas=yes | |
2315 | if test x$enable_threads = xyes; then | |
2316 | thread_file='posix' | |
2317 | fi | |
2318 | ;; | |
2319 | mips*el-*-openbsd*) # mips little endian | |
2320 | target_cpu_default="MASK_GAS|MASK_ABICALLS" | |
2321 | ;; | |
2322 | mips*-*-openbsd*) # mips big endian | |
2323 | target_cpu_default="MASK_GAS|MASK_ABICALLS" | |
2324 | tm_file="mips/openbsd-be.h ${tm_file}" | |
2325 | ;; | |
2326 | mips-sony-bsd* | mips-sony-newsos*) # Sony NEWS 3600 or risc/news. | |
2327 | tm_file="mips/news4.h ${tm_file}" | |
2328 | if test x$stabs = xyes; then | |
2329 | tm_file="${tm_file} dbx.h" | |
2330 | fi | |
2331 | if test x$gas = xyes | |
7857f134 | 2332 | then : |
61ed06c3 HPN |
2333 | else |
2334 | extra_passes="mips-tfile mips-tdump" | |
2335 | fi | |
2336 | if test x$gnu_ld != xyes | |
2337 | then | |
2338 | use_collect2=yes | |
2339 | fi | |
61ed06c3 HPN |
2340 | ;; |
2341 | mips-sony-sysv*) # Sony NEWS 3800 with NEWSOS5.0. | |
2342 | # That is based on svr4. | |
2343 | # t-svr4 is not right because this system doesn't use ELF. | |
2344 | tm_file="mips/news5.h ${tm_file}" | |
2345 | if test x$stabs = xyes; then | |
2346 | tm_file="${tm_file} dbx.h" | |
2347 | fi | |
34f4f3a5 | 2348 | xm_defines=POSIX |
61ed06c3 | 2349 | if test x$gas = xyes |
7857f134 | 2350 | then : |
61ed06c3 HPN |
2351 | else |
2352 | extra_passes="mips-tfile mips-tdump" | |
2353 | fi | |
2354 | if test x$gnu_ld != xyes | |
2355 | then | |
2356 | use_collect2=yes | |
2357 | fi | |
2358 | ;; | |
2359 | mips-tandem-sysv4*) # Tandem S2 running NonStop UX | |
2360 | tm_file="mips/svr4-5.h mips/svr4-t.h" | |
2361 | if test x$stabs = xyes; then | |
2362 | tm_file="${tm_file} dbx.h" | |
2363 | fi | |
34f4f3a5 | 2364 | xm_defines=POSIX |
61ed06c3 HPN |
2365 | if test x$gas = xyes |
2366 | then | |
61ed06c3 HPN |
2367 | extra_parts="crtbegin.o crtend.o" |
2368 | else | |
61ed06c3 HPN |
2369 | extra_passes="mips-tfile mips-tdump" |
2370 | fi | |
2371 | if test x$gnu_ld != xyes | |
2372 | then | |
2373 | use_collect2=yes | |
2374 | fi | |
2375 | ;; | |
2376 | mips-*-ultrix* | mips-dec-mach3) # Decstation. | |
2377 | tm_file="mips/ultrix.h ${tm_file}" | |
2378 | if test x$stabs = xyes; then | |
2379 | tm_file="${tm_file} dbx.h" | |
2380 | fi | |
61ed06c3 | 2381 | if test x$gas = xyes |
7857f134 | 2382 | then : |
61ed06c3 HPN |
2383 | else |
2384 | tmake_file=mips/t-ultrix | |
2385 | extra_passes="mips-tfile mips-tdump" | |
2386 | fi | |
2387 | if test x$gnu_ld != xyes | |
2388 | then | |
2389 | use_collect2=yes | |
2390 | fi | |
2391 | ;; | |
2392 | mips-*-riscos[56789]bsd*) | |
2393 | tm_file=mips/bsd-5.h # MIPS BSD 4.3, RISC-OS 5.0 | |
2394 | if test x$stabs = xyes; then | |
2395 | tm_file="${tm_file} dbx.h" | |
2396 | fi | |
2397 | if test x$gas = xyes | |
2398 | then | |
2399 | tmake_file=mips/t-bsd-gas | |
2400 | else | |
2401 | tmake_file=mips/t-bsd | |
2402 | extra_passes="mips-tfile mips-tdump" | |
2403 | fi | |
2404 | if test x$gnu_ld != xyes | |
2405 | then | |
2406 | use_collect2=yes | |
2407 | fi | |
2408 | ;; | |
2409 | mips-*-bsd* | mips-*-riscosbsd* | mips-*-riscos[1234]bsd*) | |
2410 | tm_file="mips/bsd-4.h ${tm_file}" # MIPS BSD 4.3, RISC-OS 4.0 | |
2411 | if test x$stabs = xyes; then | |
2412 | tm_file="${tm_file} dbx.h" | |
2413 | fi | |
2414 | if test x$gas = xyes | |
2415 | then | |
2416 | tmake_file=mips/t-bsd-gas | |
2417 | else | |
2418 | tmake_file=mips/t-bsd | |
2419 | extra_passes="mips-tfile mips-tdump" | |
2420 | fi | |
2421 | if test x$gnu_ld != xyes | |
2422 | then | |
2423 | use_collect2=yes | |
2424 | fi | |
2425 | ;; | |
2426 | mips-*-riscos[56789]sysv4*) | |
2427 | tm_file=mips/svr4-5.h # MIPS System V.4., RISC-OS 5.0 | |
2428 | if test x$stabs = xyes; then | |
2429 | tm_file="${tm_file} dbx.h" | |
2430 | fi | |
61ed06c3 HPN |
2431 | if test x$gas = xyes |
2432 | then | |
2433 | tmake_file=mips/t-svr4-gas | |
2434 | else | |
2435 | tmake_file=mips/t-svr4 | |
2436 | extra_passes="mips-tfile mips-tdump" | |
2437 | fi | |
2438 | if test x$gnu_ld != xyes | |
2439 | then | |
2440 | use_collect2=yes | |
2441 | fi | |
2442 | ;; | |
2443 | mips-*-sysv4* | mips-*-riscos[1234]sysv4* | mips-*-riscossysv4*) | |
2444 | tm_file="mips/svr4-4.h ${tm_file}" | |
2445 | if test x$stabs = xyes; then | |
2446 | tm_file="${tm_file} dbx.h" | |
2447 | fi | |
34f4f3a5 | 2448 | xm_defines=POSIX |
61ed06c3 HPN |
2449 | if test x$gas = xyes |
2450 | then | |
2451 | tmake_file=mips/t-svr4-gas | |
2452 | else | |
2453 | tmake_file=mips/t-svr4 | |
2454 | extra_passes="mips-tfile mips-tdump" | |
2455 | fi | |
2456 | if test x$gnu_ld != xyes | |
2457 | then | |
2458 | use_collect2=yes | |
2459 | fi | |
2460 | ;; | |
2461 | mips-*-riscos[56789]sysv*) | |
2462 | tm_file=mips/svr3-5.h # MIPS System V.3, RISC-OS 5.0 | |
2463 | if test x$stabs = xyes; then | |
2464 | tm_file="${tm_file} dbx.h" | |
2465 | fi | |
34f4f3a5 | 2466 | xm_defines=POSIX |
61ed06c3 HPN |
2467 | if test x$gas = xyes |
2468 | then | |
2469 | tmake_file=mips/t-svr3-gas | |
2470 | else | |
2471 | tmake_file=mips/t-svr3 | |
2472 | extra_passes="mips-tfile mips-tdump" | |
2473 | fi | |
2474 | if test x$gnu_ld != xyes | |
2475 | then | |
2476 | use_collect2=yes | |
2477 | fi | |
2478 | ;; | |
2479 | mips-*-sysv* | mips-*-riscos*sysv*) | |
2480 | tm_file="mips/svr3-4.h ${tm_file}" | |
2481 | if test x$stabs = xyes; then | |
2482 | tm_file="${tm_file} dbx.h" | |
2483 | fi | |
34f4f3a5 | 2484 | xm_defines=POSIX |
61ed06c3 HPN |
2485 | if test x$gas = xyes |
2486 | then | |
2487 | tmake_file=mips/t-svr3-gas | |
2488 | else | |
2489 | tmake_file=mips/t-svr3 | |
2490 | extra_passes="mips-tfile mips-tdump" | |
2491 | fi | |
2492 | if test x$gnu_ld != xyes | |
2493 | then | |
2494 | use_collect2=yes | |
2495 | fi | |
2496 | ;; | |
2497 | mips-*-riscos[56789]*) # Default MIPS RISC-OS 5.0. | |
2498 | tm_file=mips/mips-5.h | |
2499 | if test x$stabs = xyes; then | |
2500 | tm_file="${tm_file} dbx.h" | |
2501 | fi | |
2502 | if test x$gas = xyes | |
7857f134 | 2503 | then : |
61ed06c3 HPN |
2504 | else |
2505 | extra_passes="mips-tfile mips-tdump" | |
2506 | fi | |
2507 | if test x$gnu_ld != xyes | |
2508 | then | |
2509 | use_collect2=yes | |
2510 | fi | |
2511 | ;; | |
61ed06c3 HPN |
2512 | mipsel-*-ecoff*) |
2513 | tm_file=mips/ecoffl.h | |
2514 | if test x$stabs = xyes; then | |
2515 | tm_file="${tm_file} dbx.h" | |
2516 | fi | |
2517 | tmake_file=mips/t-ecoff | |
2518 | ;; | |
2519 | mips-*-ecoff*) | |
2520 | tm_file="gofast.h mips/ecoff.h" | |
2521 | if test x$stabs = xyes; then | |
2522 | tm_file="${tm_file} dbx.h" | |
2523 | fi | |
2524 | tmake_file=mips/t-ecoff | |
2525 | ;; | |
0e5a4ad8 EC |
2526 | mipsisa32-*-elf*) |
2527 | tm_file="mips/isa3264.h mips/abi64.h" | |
2528 | tmake_file=mips/t-isa3264 | |
3054eeed | 2529 | target_cpu_default="MASK_SOFT_FLOAT" |
0e5a4ad8 | 2530 | ;; |
61ed06c3 HPN |
2531 | mipsel-*-elf*) |
2532 | tm_file="mips/elfl.h" | |
2533 | tmake_file=mips/t-elf | |
2534 | ;; | |
2535 | mips-*-elf*) | |
2536 | tm_file="mips/elf.h" | |
2537 | tmake_file=mips/t-elf | |
2538 | ;; | |
2539 | mips64el-*-elf*) | |
2540 | tm_file="mips/elfl64.h" | |
2541 | tmake_file=mips/t-elf | |
2542 | ;; | |
2543 | mips64orionel-*-elf*) | |
2544 | tm_file="mips/elforion.h mips/elfl64.h" | |
2545 | tmake_file=mips/t-elf | |
2546 | ;; | |
2547 | mips64-*-elf*) | |
2548 | tm_file="mips/elf64.h" | |
2549 | tmake_file=mips/t-elf | |
2550 | ;; | |
2551 | mips64orion-*-elf*) | |
2552 | tm_file="mips/elforion.h mips/elf64.h" | |
2553 | tmake_file=mips/t-elf | |
2554 | ;; | |
2555 | mips64orion-*-rtems*) | |
f22b4bc4 JS |
2556 | xm_defines=POSIX |
2557 | tm_file="mips/elforion.h mips/elf64.h mips/rtems64.h rtems.h" | |
61ed06c3 | 2558 | tmake_file="mips/t-elf t-rtems" |
bc98ef7f JS |
2559 | if test x$enable_threads = xyes; then |
2560 | thread_file='rtems' | |
2561 | fi | |
2562 | ;; | |
2563 | mips*-*-rtems*) | |
f22b4bc4 JS |
2564 | xm_defines=POSIX |
2565 | tm_file="mips/elf.h mips/rtems.h rtems.h" | |
bc98ef7f JS |
2566 | tmake_file="mips/t-elf t-rtems" |
2567 | if test x$enable_threads = xyes; then | |
2568 | thread_file='rtems' | |
2569 | fi | |
61ed06c3 HPN |
2570 | ;; |
2571 | mipstx39el-*-elf*) | |
2572 | tm_file="mips/r3900.h mips/elfl.h mips/abi64.h" | |
2573 | tmake_file=mips/t-r3900 | |
3054eeed | 2574 | target_cpu_default="MASK_SOFT_FLOAT" |
61ed06c3 HPN |
2575 | ;; |
2576 | mipstx39-*-elf*) | |
2577 | tm_file="mips/r3900.h mips/elf.h mips/abi64.h" | |
2578 | tmake_file=mips/t-r3900 | |
2579 | ;; | |
2580 | mips-*-*) # Default MIPS RISC-OS 4.0. | |
2581 | if test x$stabs = xyes; then | |
2582 | tm_file="${tm_file} dbx.h" | |
2583 | fi | |
2584 | if test x$gas = xyes | |
7857f134 | 2585 | then : |
61ed06c3 HPN |
2586 | else |
2587 | extra_passes="mips-tfile mips-tdump" | |
2588 | fi | |
2589 | if test x$gnu_ld != xyes | |
2590 | then | |
2591 | use_collect2=yes | |
2592 | fi | |
2593 | ;; | |
bcf684c7 HPN |
2594 | mmix-knuth-mmixware) |
2595 | ;; | |
61ed06c3 HPN |
2596 | mn10200-*-*) |
2597 | float_format=i32 | |
c40409ce | 2598 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
2599 | if test x$stabs = xyes |
2600 | then | |
2601 | tm_file="${tm_file} dbx.h" | |
2602 | fi | |
2603 | use_collect2=no | |
2604 | ;; | |
2605 | mn10300-*-*) | |
c40409ce | 2606 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
2607 | if test x$stabs = xyes |
2608 | then | |
2609 | tm_file="${tm_file} dbx.h" | |
2610 | fi | |
2611 | use_collect2=no | |
2612 | ;; | |
2613 | ns32k-encore-bsd*) | |
2614 | tm_file=ns32k/encore.h | |
2615 | use_collect2=yes | |
2616 | ;; | |
2617 | ns32k-sequent-bsd*) | |
2618 | tm_file=ns32k/sequent.h | |
2619 | use_collect2=yes | |
2620 | ;; | |
2621 | ns32k-tek6100-bsd*) | |
2622 | tm_file=ns32k/tek6100.h | |
2623 | use_collect2=yes | |
2624 | ;; | |
2625 | ns32k-tek6200-bsd*) | |
2626 | tm_file=ns32k/tek6200.h | |
2627 | use_collect2=yes | |
2628 | ;; | |
2629 | ns32k-merlin-*) | |
2630 | tm_file=ns32k/merlin.h | |
2631 | use_collect2=yes | |
2632 | ;; | |
2633 | ns32k-pc532-mach*) | |
2634 | tm_file=ns32k/pc532-mach.h | |
2635 | use_collect2=yes | |
2636 | ;; | |
2637 | ns32k-pc532-minix*) | |
2638 | tm_file=ns32k/pc532-min.h | |
34f4f3a5 | 2639 | xm_defines='POSIX HZ=60' |
61ed06c3 HPN |
2640 | use_collect2=yes |
2641 | ;; | |
69474c3c JT |
2642 | ns32k-*-netbsdelf*) |
2643 | echo "GCC does not yet support the ${machine} target"; exit 1 | |
2644 | ;; | |
61ed06c3 HPN |
2645 | ns32k-*-netbsd*) |
2646 | tm_file=ns32k/netbsd.h | |
61ed06c3 HPN |
2647 | # On NetBSD, the headers are already okay, except for math.h. |
2648 | tmake_file=t-netbsd | |
5721cd84 | 2649 | use_collect2=yes |
61ed06c3 HPN |
2650 | ;; |
2651 | pdp11-*-bsd) | |
2652 | tm_file="${tm_file} pdp11/2bsd.h" | |
2653 | ;; | |
2654 | pdp11-*-*) | |
2655 | ;; | |
2656 | avr-*-*) | |
2657 | ;; | |
2658 | ns32k-*-openbsd*) | |
2659 | # Nothing special | |
2660 | ;; | |
2661 | pj*-linux*) | |
c40409ce | 2662 | tm_file="dbxelf.h elfos.h svr4.h pj/linux.h ${tm_file}" |
61ed06c3 HPN |
2663 | ;; |
2664 | pj-*) | |
2665 | ;; | |
2666 | pjl-*) | |
c40409ce | 2667 | tm_file="dbxelf.h elfos.h svr4.h pj/pjl.h ${tm_file}" |
61ed06c3 HPN |
2668 | ;; |
2669 | ||
2670 | romp-*-aos*) | |
2671 | use_collect2=yes | |
2672 | ;; | |
2673 | romp-*-mach*) | |
61ed06c3 HPN |
2674 | use_collect2=yes |
2675 | ;; | |
2676 | romp-*-openbsd*) | |
2677 | # Nothing special | |
2678 | ;; | |
2679 | powerpc-*-openbsd*) | |
e1b71de9 | 2680 | tmake_file="${tmake_file} rs6000/t-rs6000 rs6000/t-openbsd" |
ba1e6c0b | 2681 | extra_headers= |
61ed06c3 | 2682 | ;; |
2bfcf297 | 2683 | powerpc64-*-linux*) |
c40409ce | 2684 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux64.h" |
2bfcf297 | 2685 | out_file=rs6000/rs6000.c |
2a78758b | 2686 | tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-linux rs6000/t-linux64" |
2bfcf297 | 2687 | ;; |
ddb28441 RM |
2688 | powerpc64-*-gnu*) |
2689 | tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux64.h rs6000/gnu.h" | |
2690 | out_file=rs6000/rs6000.c | |
2a78758b | 2691 | tmake_file="rs6000/t-rs6000 t-slibgcc-elf-ver t-gnu rs6000/t-linux64" |
ddb28441 | 2692 | ;; |
61ed06c3 | 2693 | powerpc-*-beos*) |
2bfcf297 | 2694 | tm_file="${tm_file} rs6000/aix.h rs6000/beos.h rs6000/xcoff.h" |
34f4f3a5 | 2695 | xm_defines=POSIX |
61ed06c3 | 2696 | tmake_file=rs6000/t-beos |
ba1e6c0b | 2697 | extra_headers= |
61ed06c3 | 2698 | ;; |
18922061 | 2699 | powerpc-*-darwin*) |
ee890fe2 SS |
2700 | tm_file="${tm_file} darwin.h rs6000/darwin.h" |
2701 | tm_p_file="${tm_p_file} darwin-protos.h" | |
2702 | tmake_file=rs6000/t-darwin | |
ee890fe2 | 2703 | extra_objs="darwin.o" |
0168a849 SS |
2704 | c_target_objs="darwin-c.o" |
2705 | cxx_target_objs="darwin-c.o" | |
ee890fe2 SS |
2706 | # Darwin linker does collect2 functionality |
2707 | use_collect2=no | |
5fb4cf24 | 2708 | extra_headers=altivec.h |
18922061 | 2709 | ;; |
b91da81f | 2710 | powerpc*-*-freebsd*) |
c40409ce | 2711 | tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h" |
b91da81f DB |
2712 | xm_file=rs6000/xm-sysv4.h |
2713 | out_file=rs6000/rs6000.c | |
f3465a44 | 2714 | tmake_file="rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm" |
b91da81f | 2715 | ;; |
61ed06c3 | 2716 | powerpc-*-sysv*) |
c40409ce | 2717 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h" |
34f4f3a5 | 2718 | xm_defines=POSIX |
61ed06c3 | 2719 | tmake_file="rs6000/t-ppcos rs6000/t-ppccomm" |
61ed06c3 | 2720 | ;; |
edf1b3f3 | 2721 | powerpc-*-netbsd*) |
c40409ce | 2722 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h" |
edf1b3f3 | 2723 | tmake_file="rs6000/t-ppcos rs6000/t-ppccomm" |
edf1b3f3 | 2724 | ;; |
8da6d80e | 2725 | powerpc-*-chorusos*) |
34f4f3a5 | 2726 | xm_defines=POSIX |
c40409ce | 2727 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h chorus.h" |
8da6d80e | 2728 | tmake_file="rs6000/t-ppcos rs6000/t-ppccomm" |
8da6d80e CC |
2729 | case x${enable_threads} in |
2730 | xyes | xpthreads | xposix) | |
2731 | thread_file='posix' | |
2732 | ;; | |
2733 | esac | |
2734 | ;; | |
61ed06c3 | 2735 | powerpc-*-eabiaix*) |
34f4f3a5 | 2736 | xm_defines=POSIX |
c40409ce | 2737 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabiaix.h" |
61ed06c3 | 2738 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 | 2739 | ;; |
cf6ede82 AH |
2740 | powerpc-*-eabisimaltivec*) |
2741 | xm_defines=POSIX | |
2742 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h rs6000/eabialtivec.h" | |
3b7d0e98 | 2743 | tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm" |
cf6ede82 | 2744 | ;; |
61ed06c3 | 2745 | powerpc-*-eabisim*) |
34f4f3a5 | 2746 | xm_defines=POSIX |
c40409ce | 2747 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabisim.h" |
61ed06c3 | 2748 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2749 | ;; |
2750 | powerpc-*-elf*) | |
34f4f3a5 | 2751 | xm_defines=POSIX |
c40409ce | 2752 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h" |
61ed06c3 | 2753 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 | 2754 | ;; |
10baca6b AH |
2755 | powerpc-*-eabialtivec*) |
2756 | xm_defines=POSIX | |
2757 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/eabialtivec.h" | |
3b7d0e98 | 2758 | tmake_file="rs6000/t-ppcendian rs6000/t-ppccomm" |
10baca6b | 2759 | ;; |
61ed06c3 | 2760 | powerpc-*-eabi*) |
34f4f3a5 | 2761 | xm_defines=POSIX |
c40409ce | 2762 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h" |
61ed06c3 | 2763 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2764 | ;; |
2765 | powerpc-*-rtems*) | |
34f4f3a5 | 2766 | xm_defines=POSIX |
f22b4bc4 | 2767 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/rtems.h rtems.h" |
61ed06c3 | 2768 | tmake_file="rs6000/t-ppcgas t-rtems rs6000/t-ppccomm" |
bc98ef7f JS |
2769 | if test x$enable_threads = xyes; then |
2770 | thread_file='rtems' | |
2771 | fi | |
61ed06c3 HPN |
2772 | ;; |
2773 | powerpc-*-linux*libc1) | |
c40409ce | 2774 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h" |
61ed06c3 | 2775 | out_file=rs6000/rs6000.c |
7b3a4df5 | 2776 | tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux t-linux-gnulibc1 rs6000/t-ppccomm" |
61ed06c3 HPN |
2777 | if test x$enable_threads = xyes; then |
2778 | thread_file='posix' | |
2779 | fi | |
2780 | ;; | |
10baca6b AH |
2781 | powerpc-*-linux-gnualtivec*) |
2782 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h" | |
2783 | out_file=rs6000/rs6000.c | |
2784 | tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm" | |
10baca6b AH |
2785 | if test x$enable_threads = xyes; then |
2786 | thread_file='posix' | |
2787 | fi | |
2788 | ;; | |
61ed06c3 | 2789 | powerpc-*-linux*) |
c40409ce | 2790 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h" |
61ed06c3 | 2791 | out_file=rs6000/rs6000.c |
7b3a4df5 | 2792 | tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-linux rs6000/t-ppccomm" |
61ed06c3 HPN |
2793 | if test x$enable_threads = xyes; then |
2794 | thread_file='posix' | |
2795 | fi | |
2796 | ;; | |
ddb28441 RM |
2797 | powerpc-*-gnu-gnualtivec*) |
2798 | tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h rs6000/gnu.h" | |
2799 | out_file=rs6000/rs6000.c | |
2800 | tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm" | |
2801 | if test x$enable_threads = xyes; then | |
2802 | thread_file='posix' | |
2803 | fi | |
2804 | ;; | |
2805 | powerpc-*-gnu*) | |
2806 | tm_file="${cpu_type}/${cpu_type}.h elfos.h svr4.h freebsd-spec.h gnu.h rs6000/sysv4.h rs6000/linux.h rs6000/gnu.h" | |
2807 | out_file=rs6000/rs6000.c | |
2808 | tmake_file="rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm" | |
2809 | if test x$enable_threads = xyes; then | |
2810 | thread_file='posix' | |
2811 | fi | |
2812 | ;; | |
61ed06c3 | 2813 | powerpc-wrs-vxworks*) |
34f4f3a5 | 2814 | xm_defines=POSIX |
c40409ce | 2815 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/vxppc.h" |
61ed06c3 | 2816 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2817 | thread_file='vxworks' |
2818 | ;; | |
2819 | powerpcle-wrs-vxworks*) | |
34f4f3a5 | 2820 | xm_defines=POSIX |
c40409ce | 2821 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/vxppc.h" |
61ed06c3 | 2822 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2823 | thread_file='vxworks' |
2824 | ;; | |
2825 | powerpcle-*-sysv*) | |
c40409ce | 2826 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h" |
34f4f3a5 | 2827 | xm_defines=POSIX |
61ed06c3 | 2828 | tmake_file="rs6000/t-ppcos rs6000/t-ppccomm" |
61ed06c3 HPN |
2829 | ;; |
2830 | powerpcle-*-elf*) | |
34f4f3a5 | 2831 | xm_defines=POSIX |
c40409ce | 2832 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h" |
61ed06c3 | 2833 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2834 | ;; |
2835 | powerpcle-*-eabisim*) | |
34f4f3a5 | 2836 | xm_defines=POSIX |
c40409ce | 2837 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/eabisim.h" |
61ed06c3 | 2838 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 HPN |
2839 | ;; |
2840 | powerpcle-*-eabi*) | |
34f4f3a5 | 2841 | xm_defines=POSIX |
c40409ce | 2842 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h" |
61ed06c3 | 2843 | tmake_file="rs6000/t-ppcgas rs6000/t-ppccomm" |
61ed06c3 | 2844 | ;; |
61ed06c3 | 2845 | rs6000-ibm-aix3.[01]*) |
34f4f3a5 | 2846 | xm_defines=POSIX |
2bfcf297 | 2847 | tm_file="${tm_file} rs6000/aix.h rs6000/aix31.h rs6000/xcoff.h" |
61ed06c3 HPN |
2848 | float_format=none |
2849 | use_collect2=yes | |
2850 | ;; | |
2851 | rs6000-ibm-aix3.2.[456789]* | powerpc-ibm-aix3.2.[456789]*) | |
34f4f3a5 | 2852 | xm_defines=POSIX |
2bfcf297 | 2853 | tm_file="${tm_file} rs6000/aix.h rs6000/aix3newas.h rs6000/xcoff.h" |
db009825 | 2854 | tmake_file=rs6000/t-newas |
61ed06c3 HPN |
2855 | float_format=none |
2856 | use_collect2=yes | |
ba1e6c0b | 2857 | extra_headers= |
61ed06c3 HPN |
2858 | ;; |
2859 | rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*) | |
34f4f3a5 | 2860 | xm_defines=POSIX |
2bfcf297 | 2861 | tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h" |
db009825 | 2862 | tmake_file=rs6000/t-newas |
61ed06c3 HPN |
2863 | float_format=none |
2864 | use_collect2=yes | |
ba1e6c0b | 2865 | extra_headers= |
61ed06c3 HPN |
2866 | ;; |
2867 | rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*) | |
34f4f3a5 | 2868 | xm_defines=POSIX |
2bfcf297 | 2869 | tm_file="${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h" |
61ed06c3 | 2870 | tmake_file=rs6000/t-aix43 |
61ed06c3 HPN |
2871 | float_format=none |
2872 | use_collect2=yes | |
2873 | thread_file='aix' | |
ba1e6c0b | 2874 | extra_headers= |
61ed06c3 HPN |
2875 | ;; |
2876 | rs6000-ibm-aix[56789].* | powerpc-ibm-aix[56789].*) | |
34f4f3a5 | 2877 | xm_defines=POSIX |
2bfcf297 | 2878 | tm_file="${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h" |
61ed06c3 | 2879 | tmake_file=rs6000/t-aix43 |
61ed06c3 HPN |
2880 | float_format=none |
2881 | use_collect2=yes | |
2882 | thread_file='aix' | |
ba1e6c0b | 2883 | extra_headers= |
61ed06c3 HPN |
2884 | ;; |
2885 | rs6000-ibm-aix*) | |
34f4f3a5 | 2886 | xm_defines=POSIX |
2bfcf297 | 2887 | tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h" |
61ed06c3 HPN |
2888 | float_format=none |
2889 | use_collect2=yes | |
2890 | ;; | |
2891 | rs6000-bull-bosx) | |
34f4f3a5 | 2892 | xm_defines=POSIX |
2bfcf297 | 2893 | tm_file="${tm_file} rs6000/aix.h rs6000/xcoff.h" |
61ed06c3 HPN |
2894 | float_format=none |
2895 | use_collect2=yes | |
2896 | ;; | |
2897 | rs6000-*-mach*) | |
32fb7c9d | 2898 | tm_file="${tm_file} rs6000/mach.h" |
34f4f3a5 | 2899 | xm_defines=POSIX |
61ed06c3 HPN |
2900 | use_collect2=yes |
2901 | ;; | |
2902 | rs6000-*-lynxos*) | |
b91da81f | 2903 | tm_file="lynx.h rs6000/lynx.h" |
61ed06c3 | 2904 | tmake_file=rs6000/t-rs6000 |
61ed06c3 HPN |
2905 | use_collect2=yes |
2906 | ;; | |
0e5a4ad8 | 2907 | s390-*-linux*) |
c40409ce | 2908 | tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h" |
050e4ca2 | 2909 | tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux" |
275b60d6 | 2910 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" |
9628a767 HP |
2911 | if test x$enable_threads = xyes; then |
2912 | thread_file='posix' | |
2913 | fi | |
2914 | ;; | |
0e5a4ad8 | 2915 | s390x-*-linux*) |
58d10f89 | 2916 | tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h" |
70eeb10b UW |
2917 | tm_p_file=s390/s390-protos.h |
2918 | md_file=s390/s390.md | |
2919 | out_file=s390/s390.c | |
e8487c04 | 2920 | tmake_file="t-slibgcc-elf-ver t-linux s390/t-linux s390/t-linux64" |
275b60d6 | 2921 | extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o" |
9628a767 HP |
2922 | if test x$enable_threads = xyes; then |
2923 | thread_file='posix' | |
2924 | fi | |
2925 | ;; | |
61ed06c3 HPN |
2926 | sh-*-elf*) |
2927 | tmake_file="sh/t-sh sh/t-elf" | |
32fb7c9d | 2928 | tm_file="${tm_file} sh/elf.h" |
61ed06c3 HPN |
2929 | float_format=sh |
2930 | ;; | |
fa5322fa AO |
2931 | sh64-*-elf*) |
2932 | tmake_file="sh/t-sh sh/t-elf sh/t-sh64" | |
2933 | tm_file="${tm_file} sh/sh.h sh/elf.h sh/sh64.h" | |
2934 | float_format=sh | |
2935 | extra_headers="../../config/sh/shmedia.h ../../config/sh/ushmedia.h ../../config/sh/sshmedia.h" | |
2936 | # Not strictly necessary to check this, but a good idea anyway. | |
2937 | if test $machine = $target; then | |
2938 | target_requires_64bit_host_wide_int=yes | |
2939 | fi | |
2940 | ;; | |
61ed06c3 | 2941 | sh-*-rtemself*) |
f22b4bc4 | 2942 | xm_defines=POSIX |
61ed06c3 | 2943 | tmake_file="sh/t-sh sh/t-elf t-rtems" |
f22b4bc4 | 2944 | tm_file="${tm_file} sh/elf.h sh/rtemself.h rtems.h" |
61ed06c3 | 2945 | float_format=sh |
bc98ef7f JS |
2946 | if test x$enable_threads = xyes; then |
2947 | thread_file='rtems' | |
2948 | fi | |
61ed06c3 HPN |
2949 | ;; |
2950 | sh-*-rtems*) | |
f22b4bc4 | 2951 | xm_defines=POSIX |
61ed06c3 | 2952 | tmake_file="sh/t-sh t-rtems" |
f22b4bc4 | 2953 | tm_file="${tm_file} sh/rtems.h rtems.h" |
61ed06c3 | 2954 | float_format=sh |
bc98ef7f JS |
2955 | if test x$enable_threads = xyes; then |
2956 | thread_file='rtems' | |
2957 | fi | |
61ed06c3 HPN |
2958 | ;; |
2959 | sh-*-linux*) | |
32fb7c9d | 2960 | tm_file="${tm_file} sh/elf.h sh/linux.h" |
61ed06c3 | 2961 | tmake_file="sh/t-sh sh/t-elf sh/t-linux" |
61ed06c3 HPN |
2962 | gas=yes gnu_ld=yes |
2963 | if test x$enable_threads = xyes; then | |
2964 | thread_file='posix' | |
2965 | fi | |
2966 | float_format=sh | |
2967 | ;; | |
2968 | sh-*-*) | |
2969 | float_format=sh | |
2970 | ;; | |
2971 | sparc-tti-*) | |
0f658c83 | 2972 | tm_file="${tm_file} sparc/pbd.h" |
34f4f3a5 | 2973 | xm_defines=POSIX |
61ed06c3 | 2974 | ;; |
e428b937 | 2975 | sparc64-wrs-vxworks*) |
86f808dc | 2976 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/biarch64.h gofast.h sparc/vxsparc64.h" |
2d69e3cb | 2977 | tmake_file="sparc/t-vxsparc64 sparc/t-crtfm" |
e428b937 RK |
2978 | use_collect2=yes |
2979 | ;; | |
61ed06c3 | 2980 | sparc-wrs-vxworks* | sparclite-wrs-vxworks*) |
0f658c83 | 2981 | tm_file="${tm_file} aoutos.h sparc/aout.h gofast.h sparc/vxsparc.h" |
61ed06c3 HPN |
2982 | tmake_file=sparc/t-vxsparc |
2983 | use_collect2=yes | |
2984 | thread_file='vxworks' | |
2985 | ;; | |
2986 | sparc-*-aout*) | |
2987 | tmake_file=sparc/t-sparcbare | |
0f658c83 | 2988 | tm_file="sparc/sparc.h aoutos.h sparc/aout.h libgloss.h" |
61ed06c3 | 2989 | ;; |
69474c3c | 2990 | sparc-*-netbsdelf*) |
4cb7482c | 2991 | tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h" |
69474c3c | 2992 | ;; |
61ed06c3 | 2993 | sparc-*-netbsd*) |
f982f805 | 2994 | tm_file="${tm_file} sparc/aout.h netbsd.h netbsd-aout.h sparc/netbsd.h" |
61ed06c3 | 2995 | tmake_file=t-netbsd |
5721cd84 | 2996 | use_collect2=yes |
61ed06c3 HPN |
2997 | ;; |
2998 | sparc-*-openbsd*) | |
0f7a7be7 | 2999 | tm_file="sparc/sparc.h ${tm_file}" |
f1cf4606 ME |
3000 | # needed to unconfuse gdb |
3001 | tmake_file="t-libc-ok t-openbsd sparc/t-openbsd" | |
61ed06c3 HPN |
3002 | # we need collect2 until our bug is fixed... |
3003 | use_collect2=yes | |
3004 | ;; | |
3005 | sparc-*-bsd*) | |
910e231e | 3006 | tm_file="${tm_file} sparc/bsd.h" |
61ed06c3 | 3007 | ;; |
8da6d80e | 3008 | sparc-*-chorusos*) |
c40409ce | 3009 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h chorus.h" |
2d69e3cb | 3010 | tmake_file="sparc/t-chorus-elf sparc/t-crtfm" |
8da6d80e CC |
3011 | extra_parts="crti.o crtn.o crtbegin.o crtend.o" |
3012 | float_format=i64 | |
3013 | case x${enable_threads} in | |
3014 | xyes | xpthreads | xposix) | |
3015 | thread_file='posix' | |
3016 | ;; | |
3017 | esac | |
3018 | ;; | |
61ed06c3 | 3019 | sparc-*-elf*) |
c40409ce | 3020 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h" |
a261e0cc | 3021 | tmake_file="sparc/t-elf sparc/t-crtfm" |
61ed06c3 HPN |
3022 | extra_parts="crti.o crtn.o crtbegin.o crtend.o" |
3023 | #float_format=i128 | |
3024 | float_format=i64 | |
3025 | ;; | |
3026 | sparc-*-linux*aout*) # Sparc's running GNU/Linux, a.out | |
0f7a7be7 | 3027 | tm_file="aoutos.h sparc/sparc.h sparc/aout.h sparc/linux-aout.h" |
61ed06c3 HPN |
3028 | gnu_ld=yes |
3029 | ;; | |
3030 | sparc-*-linux*libc1*) # Sparc's running GNU/Linux, libc5 | |
c40409ce | 3031 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h" |
a261e0cc | 3032 | tmake_file="t-slibgcc-elf-ver t-linux t-linux-gnulibc1 sparc/t-crtfm" |
61ed06c3 HPN |
3033 | extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o" |
3034 | gnu_ld=yes | |
3035 | float_format=sparc | |
3036 | ;; | |
3037 | sparc-*-linux*) # Sparc's running GNU/Linux, libc6 | |
c40409ce | 3038 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux.h" |
a261e0cc | 3039 | tmake_file="t-slibgcc-elf-ver t-linux sparc/t-crtfm" |
275b60d6 | 3040 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
3041 | gnu_ld=yes |
3042 | if test x$enable_threads = xyes; then | |
3043 | thread_file='posix' | |
3044 | fi | |
3045 | float_format=sparc | |
3046 | ;; | |
3047 | sparc-*-lynxos*) | |
3048 | if test x$gas = xyes | |
3049 | then | |
0f7a7be7 | 3050 | tm_file="${tm_file} lynx.h sparc/aout.h sparc/lynx.h" |
61ed06c3 | 3051 | else |
0f7a7be7 | 3052 | tm_file="${tm_file} lynx-ng.h sparc/aout.h sparc/lynx-ng.h" |
61ed06c3 | 3053 | fi |
61ed06c3 | 3054 | tmake_file=sparc/t-sunos41 |
61ed06c3 HPN |
3055 | ;; |
3056 | sparc-*-rtemsaout*) | |
f22b4bc4 | 3057 | xm_defines=POSIX |
61ed06c3 | 3058 | tmake_file="sparc/t-sparcbare t-rtems" |
0f658c83 | 3059 | tm_file="${tm_file} aoutos.h sparc/aout.h sparc/rtems.h rtems.h" |
bc98ef7f JS |
3060 | if test x$enable_threads = xyes; then |
3061 | thread_file='rtems' | |
3062 | fi | |
61ed06c3 HPN |
3063 | ;; |
3064 | sparc-*-rtems*|sparc-*-rtemself*) | |
f22b4bc4 | 3065 | xm_defines=POSIX |
c40409ce | 3066 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h sparc/rtemself.h rtems.h" |
2d69e3cb | 3067 | tmake_file="sparc/t-elf sparc/t-crtfm t-rtems" |
61ed06c3 HPN |
3068 | extra_parts="crti.o crtn.o crtbegin.o crtend.o" |
3069 | #float_format=i128 | |
3070 | float_format=i64 | |
bc98ef7f JS |
3071 | if test x$enable_threads = xyes; then |
3072 | thread_file='rtems' | |
3073 | fi | |
61ed06c3 | 3074 | ;; |
60acf24e | 3075 | sparcv9-*-solaris2* | sparc64-*-solaris2*) |
61ed06c3 HPN |
3076 | if test x$gnu_ld = xyes |
3077 | then | |
0f658c83 | 3078 | tm_file="sparc/sol2-sld-64.h sparc/sol2-64.h" |
61ed06c3 HPN |
3079 | else |
3080 | tm_file=sparc/sol2-sld-64.h | |
3081 | fi | |
34f4f3a5 | 3082 | xm_defines=POSIX |
a261e0cc | 3083 | tmake_file="sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm" |
61ed06c3 | 3084 | if test x$gnu_ld = xyes; then |
7b3a4df5 | 3085 | tmake_file="$tmake_file t-slibgcc-elf-ver" |
61ed06c3 | 3086 | else |
7b3a4df5 | 3087 | tmake_file="$tmake_file t-slibgcc-sld" |
61ed06c3 | 3088 | fi |
61ed06c3 | 3089 | extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o" |
300d4093 | 3090 | float_format=sparc |
61ed06c3 HPN |
3091 | if test x${enable_threads} = x ; then |
3092 | enable_threads=$have_pthread_h | |
3093 | if test x${enable_threads} = x ; then | |
3094 | enable_threads=$have_thread_h | |
3095 | fi | |
3096 | fi | |
3097 | if test x${enable_threads} = xyes ; then | |
3098 | if test x${have_pthread_h} = xyes ; then | |
3099 | thread_file='posix' | |
3100 | else | |
3101 | thread_file='solaris' | |
3102 | fi | |
3103 | fi | |
3104 | ;; | |
3105 | sparc-hal-solaris2*) | |
34f4f3a5 | 3106 | xm_defines=POSIX |
c40409ce | 3107 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/hal.h" |
a261e0cc | 3108 | tmake_file="sparc/t-halos sparc/t-sol2 sparc/t-crtfm" |
61ed06c3 | 3109 | if test x$gnu_ld = xyes; then |
7b3a4df5 | 3110 | tmake_file="$tmake_file t-slibgcc-elf-ver" |
61ed06c3 | 3111 | else |
7b3a4df5 | 3112 | tmake_file="$tmake_file t-slibgcc-sld" |
61ed06c3 | 3113 | fi |
61ed06c3 HPN |
3114 | extra_parts="crt1.o crti.o crtn.o gmon.o crtbegin.o crtend.o" |
3115 | case $machine in | |
3116 | *-*-solaris2.[0-4]) | |
3117 | float_format=i128 | |
3118 | ;; | |
3119 | *) | |
300d4093 | 3120 | float_format=sparc |
61ed06c3 HPN |
3121 | ;; |
3122 | esac | |
3123 | thread_file='solaris' | |
3124 | ;; | |
3125 | sparc-*-solaris2*) | |
3126 | if test x$gnu_ld = xyes | |
3127 | then | |
c40409ce | 3128 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h" |
61ed06c3 | 3129 | else |
c40409ce | 3130 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sol2-sld.h" |
61ed06c3 | 3131 | fi |
34f4f3a5 | 3132 | xm_defines=POSIX |
a261e0cc | 3133 | tmake_file="sparc/t-sol2 sparc/t-crtfm" |
61ed06c3 | 3134 | if test x$gnu_ld = xyes; then |
7b3a4df5 | 3135 | tmake_file="$tmake_file t-slibgcc-elf-ver" |
61ed06c3 | 3136 | else |
7b3a4df5 | 3137 | tmake_file="$tmake_file t-slibgcc-sld" |
61ed06c3 | 3138 | fi |
61ed06c3 | 3139 | extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o" |
7112135f AO |
3140 | case $machine in |
3141 | *-*-solaris2.[0-6] | *-*-solaris2.[0-6].*) ;; | |
3142 | *-*-solaris2*) | |
3143 | if test x$gnu_ld = xyes | |
3144 | then | |
0f658c83 | 3145 | tm_file="sparc/sol2-sld-64.h sparc/sol2-64.h" |
7112135f | 3146 | else |
0f658c83 | 3147 | tm_file="sparc/sol2-sld-64.h" |
7112135f AO |
3148 | fi |
3149 | tmake_file="$tmake_file sparc/t-sol2-64" | |
3150 | ;; | |
3151 | esac | |
61ed06c3 HPN |
3152 | case $machine in |
3153 | *-*-solaris2.[0-4]) | |
3154 | float_format=i128 | |
3155 | ;; | |
3156 | *) | |
300d4093 | 3157 | float_format=sparc |
61ed06c3 HPN |
3158 | ;; |
3159 | esac | |
3160 | if test x${enable_threads} = x; then | |
3161 | enable_threads=$have_pthread_h | |
3162 | if test x${enable_threads} = x; then | |
3163 | enable_threads=$have_thread_h | |
3164 | fi | |
3165 | fi | |
3166 | if test x${enable_threads} = xyes; then | |
3167 | if test x${have_pthread_h} = xyes; then | |
3168 | thread_file='posix' | |
3169 | else | |
3170 | thread_file='solaris' | |
3171 | fi | |
3172 | fi | |
3173 | ;; | |
3174 | sparc-*-sunos4.0*) | |
0f7a7be7 | 3175 | tm_file="${tm_file} sparc/aout.h sparc/sunos4.h" |
61ed06c3 HPN |
3176 | use_collect2=yes |
3177 | ;; | |
3178 | sparc-*-sunos4*) | |
0f7a7be7 | 3179 | tm_file="${tm_file} sparc/aout.h sparc/sunos4.h" |
61ed06c3 HPN |
3180 | tmake_file=sparc/t-sunos41 |
3181 | use_collect2=yes | |
3182 | if test x$gas = xyes; then | |
3183 | tm_file="${tm_file} sparc/sun4gas.h" | |
3184 | fi | |
3185 | ;; | |
3186 | sparc-*-sunos3*) | |
0f7a7be7 | 3187 | tm_file="${tm_file} sparc/aout.h sparc/sun4o3.h" |
61ed06c3 HPN |
3188 | use_collect2=yes |
3189 | ;; | |
3190 | sparc-*-sysv4*) | |
c40409ce | 3191 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h" |
34f4f3a5 | 3192 | xm_defines=POSIX |
61ed06c3 | 3193 | tmake_file=t-svr4 |
61ed06c3 HPN |
3194 | extra_parts="crtbegin.o crtend.o" |
3195 | ;; | |
3196 | sparc-*-vxsim*) | |
34f4f3a5 | 3197 | xm_defines=POSIX |
c40409ce | 3198 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/vxsim.h" |
61ed06c3 | 3199 | tmake_file=sparc/t-vxsparc |
61ed06c3 HPN |
3200 | ;; |
3201 | sparclet-*-aout*) | |
0f658c83 | 3202 | tm_file="${tm_file} aoutos.h sparc/aout.h sparc/splet.h libgloss.h" |
61ed06c3 HPN |
3203 | tmake_file=sparc/t-splet |
3204 | ;; | |
3205 | sparclite-*-coff*) | |
0f658c83 | 3206 | tm_file="${tm_file} gofast.h sparc/lite.h svr3.h sparc/litecoff.h dbxcoff.h libgloss.h" |
61ed06c3 HPN |
3207 | tmake_file=sparc/t-sparclite |
3208 | ;; | |
3209 | sparclite-*-aout*) | |
0f7a7be7 | 3210 | tm_file="${tm_file} gofast.h sparc/aout.h sparc/lite.h aoutos.h libgloss.h" |
61ed06c3 HPN |
3211 | tmake_file=sparc/t-sparclite |
3212 | ;; | |
3213 | sparclite-*-elf*) | |
c40409ce | 3214 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/liteelf.h" |
2d69e3cb | 3215 | tmake_file="sparc/t-sparclite sparc/t-crtfm" |
61ed06c3 HPN |
3216 | extra_parts="crtbegin.o crtend.o" |
3217 | ;; | |
3218 | sparc86x-*-aout*) | |
0f7a7be7 | 3219 | tm_file="${tm_file} gofast.h sparc/aout.h sparc/sp86x-aout.h aoutos.h libgloss.h" |
61ed06c3 HPN |
3220 | tmake_file=sparc/t-sp86x |
3221 | ;; | |
0e5a4ad8 | 3222 | sparc86x-*-elf*) |
c40409ce | 3223 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/elf.h gofast.h sparc/sp86x-elf.h" |
2d69e3cb | 3224 | tmake_file="sparc/t-sp86x sparc/t-crtfm" |
61ed06c3 HPN |
3225 | extra_parts="crtbegin.o crtend.o" |
3226 | ;; | |
3227 | sparc64-*-aout*) | |
0f7a7be7 | 3228 | tm_file="sparc/sparc.h aoutos.h sparc/aout.h sparc/sp64-aout.h" |
61ed06c3 HPN |
3229 | ;; |
3230 | sparc64-*-elf*) | |
c40409ce | 3231 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sol2.h sparc/sp64-elf.h" |
2d69e3cb | 3232 | tmake_file="${tmake_file} sparc/t-crtfm" |
61ed06c3 HPN |
3233 | extra_parts="crtbegin.o crtend.o" |
3234 | ;; | |
c7240cbd DB |
3235 | sparc64-*-freebsd*|ultrasparc-*-freebsd*) |
3236 | tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h" | |
2d69e3cb | 3237 | tmake_file="${tmake_file} sparc/t-crtfm" |
c7240cbd DB |
3238 | xmake_file=none |
3239 | case "x$with_cpu" in | |
e0054185 | 3240 | xultrasparc) ;; |
c7240cbd DB |
3241 | x) with_cpu=ultrasparc ;; |
3242 | *) echo "$with_cpu not supported for freebsd target"; exit 1 ;; | |
3243 | esac | |
3244 | ;; | |
61ed06c3 | 3245 | sparc64-*-linux*) # 64-bit Sparc's running GNU/Linux |
7b3a4df5 | 3246 | tmake_file="t-slibgcc-elf-ver t-linux sparc/t-linux64" |
86f808dc | 3247 | tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/linux64.h" |
275b60d6 | 3248 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" |
61ed06c3 HPN |
3249 | gnu_ld=yes |
3250 | if test x$enable_threads = xyes; then | |
3251 | thread_file='posix' | |
3252 | fi | |
3253 | float_format=sparc | |
3254 | ;; | |
4cb7482c MG |
3255 | sparc64-*-netbsd*) |
3256 | tmake_file="${tmake_file} sparc/t-netbsd64" | |
3257 | tm_file="sparc/biarch64.h ${tm_file}" | |
3258 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h" | |
3259 | float_format=sparc | |
3260 | ;; | |
d19fb8e3 | 3261 | strongarm-*-elf*) |
c40409ce | 3262 | tm_file="arm/strongarm-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h" |
d19fb8e3 NC |
3263 | tmake_file=arm/t-strongarm-elf |
3264 | out_file=arm/arm.c | |
d19fb8e3 NC |
3265 | md_file=arm/arm.md |
3266 | ;; | |
3267 | strongarm-*-coff*) | |
f910b1bb | 3268 | tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h" |
d19fb8e3 NC |
3269 | tmake_file=arm/t-strongarm-coff |
3270 | out_file=arm/arm.c | |
d19fb8e3 NC |
3271 | md_file=arm/arm.md |
3272 | ;; | |
3273 | strongarm-*-pe) | |
f910b1bb | 3274 | tm_file="arm/semi.h arm/aout.h arm/coff.h arm/strongarm-coff.h arm/arm.h arm/pe.h arm/strongarm-pe.h" |
d19fb8e3 NC |
3275 | tmake_file=arm/t-strongarm-pe |
3276 | out_file=arm/arm.c | |
d19fb8e3 NC |
3277 | md_file=arm/arm.md |
3278 | extra_objs=pe.o | |
3279 | ;; | |
61ed06c3 HPN |
3280 | thumb*-*-*) |
3281 | { echo "config.gcc: error: | |
9e8fc4b8 | 3282 | *** The Thumb targets have been deprecated. The equivalent |
cfd1c7ea | 3283 | *** ARM based toolchain can now generate Thumb instructions |
61ed06c3 HPN |
3284 | *** when the -mthumb switch is given to the compiler." 1>&2; exit 1; } |
3285 | ;; | |
3286 | v850-*-rtems*) | |
f22b4bc4 JS |
3287 | xm_defines=POSIX |
3288 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file} v850/v850.h v850/rtems.h rtems.h" | |
61ed06c3 HPN |
3289 | tmake_file="v850/t-v850 t-rtems" |
3290 | if test x$stabs = xyes | |
3291 | then | |
3292 | tm_file="${tm_file} dbx.h" | |
3293 | fi | |
3294 | use_collect2=no | |
c3edd394 NC |
3295 | c_target_objs="v850-c.o" |
3296 | cxx_target_objs="v850-c.o" | |
61ed06c3 HPN |
3297 | ;; |
3298 | v850-*-*) | |
3299 | target_cpu_default="TARGET_CPU_generic" | |
c40409ce | 3300 | tm_file="dbxelf.h elfos.h svr4.h ${tm_file}" |
61ed06c3 HPN |
3301 | tmake_file=v850/t-v850 |
3302 | if test x$stabs = xyes | |
3303 | then | |
3304 | tm_file="${tm_file} dbx.h" | |
3305 | fi | |
3306 | use_collect2=no | |
c3edd394 NC |
3307 | c_target_objs="v850-c.o" |
3308 | cxx_target_objs="v850-c.o" | |
61ed06c3 | 3309 | ;; |
8aeea6e6 | 3310 | vax-*-bsd*) # VAXen running BSD |
61ed06c3 HPN |
3311 | use_collect2=yes |
3312 | float_format=vax | |
3313 | ;; | |
8aeea6e6 | 3314 | vax-*-sysv*) # VAXen running system V |
61ed06c3 | 3315 | tm_file="${tm_file} vax/vaxv.h" |
34f4f3a5 | 3316 | xm_defines=POSIX |
61ed06c3 HPN |
3317 | float_format=vax |
3318 | ;; | |
69474c3c JT |
3319 | vax-*-netbsdelf*) |
3320 | echo "GCC does not yet support the ${machine} target"; exit 1 | |
3321 | ;; | |
61ed06c3 | 3322 | vax-*-netbsd*) |
f982f805 | 3323 | tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h" |
61ed06c3 HPN |
3324 | tmake_file=t-netbsd |
3325 | float_format=vax | |
5721cd84 | 3326 | use_collect2=yes |
61ed06c3 HPN |
3327 | ;; |
3328 | vax-*-openbsd*) | |
61ed06c3 | 3329 | tm_file="vax/vax.h vax/openbsd1.h openbsd.h ${tm_file}" |
61ed06c3 HPN |
3330 | float_format=vax |
3331 | use_collect2=yes | |
3332 | ;; | |
8aeea6e6 | 3333 | vax-*-ultrix*) # VAXen running ultrix |
61ed06c3 HPN |
3334 | tm_file="${tm_file} vax/ultrix.h" |
3335 | float_format=vax | |
3336 | ;; | |
8aeea6e6 | 3337 | vax-*-vms*) # VAXen running VMS |
61ed06c3 HPN |
3338 | xm_file=vax/xm-vms.h |
3339 | tm_file=vax/vms.h | |
3340 | float_format=vax | |
3341 | ;; | |
8aeea6e6 | 3342 | vax-*-*) # VAX default entry |
61ed06c3 HPN |
3343 | float_format=vax |
3344 | ;; | |
3345 | we32k-att-sysv*) | |
34f4f3a5 | 3346 | xm_defines=POSIX |
61ed06c3 HPN |
3347 | use_collect2=yes |
3348 | ;; | |
d19fb8e3 | 3349 | xscale-*-elf) |
c40409ce | 3350 | tm_file="arm/xscale-elf.h dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h" |
d19fb8e3 NC |
3351 | tmake_file=arm/t-xscale-elf |
3352 | out_file=arm/arm.c | |
d19fb8e3 NC |
3353 | md_file=arm/arm.md |
3354 | ;; | |
3355 | xscale-*-coff) | |
578316b9 | 3356 | tm_file="arm/semi.h arm/aout.h arm/coff.h arm/xscale-coff.h arm/arm.h" |
d19fb8e3 NC |
3357 | tmake_file=arm/t-xscale-coff |
3358 | out_file=arm/arm.c | |
d19fb8e3 NC |
3359 | md_file=arm/arm.md |
3360 | ;; | |
14d269bb GK |
3361 | xstormy16-*-elf) |
3362 | # For historical reasons, the target files omit the 'x'. | |
c40409ce | 3363 | tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h" |
14d269bb GK |
3364 | tm_p_file=stormy16/stormy16-protos.h |
3365 | md_file=stormy16/stormy16.md | |
3366 | out_file=stormy16/stormy16.c | |
3367 | tmake_file="stormy16/t-stormy16" | |
3368 | extra_parts="crtbegin.o crtend.o" | |
3369 | ;; | |
03984308 BW |
3370 | xtensa-*-elf*) |
3371 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h" | |
3372 | with_newlib=yes | |
3373 | tmake_file=xtensa/t-xtensa | |
3374 | extra_parts="crtbegin.o crtend.o" | |
3375 | fixincludes=Makefile.in # newlib headers should be OK | |
3376 | ;; | |
3377 | xtensa-*-linux*) | |
3378 | tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h" | |
3379 | tmake_file="t-linux xtensa/t-xtensa" | |
3380 | extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o" | |
3381 | gas=yes gnu_ld=yes | |
3382 | if test x$enable_threads = xyes; then | |
3383 | thread_file='posix' | |
3384 | fi | |
3385 | ;; | |
61ed06c3 HPN |
3386 | *) |
3387 | echo "Configuration $machine not supported" 1>&2 | |
3388 | exit 1 | |
3389 | ;; | |
3390 | esac | |
3391 | ||
3392 | case $machine in | |
61ed06c3 HPN |
3393 | *-*-sysv*) |
3394 | install_headers_dir=install-headers-cpio | |
3395 | ;; | |
3396 | esac | |
3397 | ||
3398 | # Distinguish i[34567]86 | |
3399 | # Also, do not run mips-tfile on MIPS if using gas. | |
3400 | # Process --with-cpu= for PowerPC/rs6000 | |
3401 | target_cpu_default2= | |
3402 | case $machine in | |
3403 | i486-*-*) | |
e10e23ee | 3404 | target_cpu_default2=TARGET_CPU_DEFAULT_i486 |
61ed06c3 HPN |
3405 | ;; |
3406 | i586-*-*) | |
3407 | case $target_alias in | |
e10e23ee JH |
3408 | k6_2-*) |
3409 | target_cpu_default2=TARGET_CPU_DEFAULT_k6_2 | |
3410 | ;; | |
3411 | k6_3-*) | |
3412 | target_cpu_default2=TARGET_CPU_DEFAULT_k6_3 | |
3413 | ;; | |
61ed06c3 | 3414 | k6-*) |
e10e23ee JH |
3415 | target_cpu_default2=TARGET_CPU_DEFAULT_k6 |
3416 | ;; | |
3417 | pentium_mmx-*) | |
3418 | target_cpu_default2=TARGET_CPU_DEFAULT_pentium_mmx | |
61ed06c3 HPN |
3419 | ;; |
3420 | *) | |
e10e23ee | 3421 | target_cpu_default2=TARGET_CPU_DEFAULT_pentium |
61ed06c3 HPN |
3422 | ;; |
3423 | esac | |
3424 | ;; | |
3425 | i686-*-* | i786-*-*) | |
4ed47bea | 3426 | case $target_alias in |
e10e23ee JH |
3427 | athlon_xp-*|athlon_mp-*|athlon_4-*) |
3428 | target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse | |
3429 | ;; | |
3430 | athlon_tbird-*|athlon-*) | |
3431 | target_cpu_default2=TARGET_CPU_DEFAULT_athlon | |
3432 | ;; | |
3433 | pentium2-*) | |
3434 | target_cpu_default2=TARGET_CPU_DEFAULT_pentium2 | |
3435 | ;; | |
3436 | pentium3-*) | |
3437 | target_cpu_default2=TARGET_CPU_DEFAULT_pentium3 | |
3438 | ;; | |
3439 | pentium4-*) | |
3440 | target_cpu_default2=TARGET_CPU_DEFAULT_pentium4 | |
4ed47bea JM |
3441 | ;; |
3442 | *) | |
e10e23ee | 3443 | target_cpu_default2=TARGET_CPU_DEFAULT_pentiumpro |
4ed47bea JM |
3444 | ;; |
3445 | esac | |
61ed06c3 | 3446 | ;; |
e10e23ee JH |
3447 | x86_64-*-*) |
3448 | # We should have hammer chip here, but it does not exist yet and | |
3449 | # thus it is not supported. Athlon_SSE is probably equivalent feature | |
3450 | # wise to hammer from our point of view except for 64bit mode. | |
3451 | target_cpu_default2=TARGET_CPU_DEFAULT_athlon_sse | |
3452 | ;; | |
61ed06c3 HPN |
3453 | alpha*-*-*) |
3454 | case $machine in | |
3455 | alphaev6[78]*) | |
3456 | target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX|MASK_CIX" | |
3457 | ;; | |
3458 | alphaev6*) | |
3459 | target_cpu_default2="MASK_CPU_EV6|MASK_BWX|MASK_MAX|MASK_FIX" | |
3460 | ;; | |
3461 | alphapca56*) | |
3462 | target_cpu_default2="MASK_CPU_EV5|MASK_BWX|MASK_MAX" | |
3463 | ;; | |
3464 | alphaev56*) | |
3465 | target_cpu_default2="MASK_CPU_EV5|MASK_BWX" | |
3466 | ;; | |
3467 | alphaev5*) | |
3468 | target_cpu_default2="MASK_CPU_EV5" | |
3469 | ;; | |
3470 | esac | |
0e5a4ad8 | 3471 | |
61ed06c3 HPN |
3472 | if test x$gas = xyes |
3473 | then | |
3474 | if test "$target_cpu_default2" = "" | |
3475 | then | |
3476 | target_cpu_default2="MASK_GAS" | |
3477 | else | |
3478 | target_cpu_default2="${target_cpu_default2}|MASK_GAS" | |
3479 | fi | |
3480 | fi | |
3481 | ;; | |
3482 | arm*-*-*) | |
3483 | case "x$with_cpu" in | |
3484 | x) | |
3485 | # The most generic | |
3486 | target_cpu_default2="TARGET_CPU_generic" | |
3487 | ;; | |
3488 | ||
3489 | # Distinguish cores, and major variants | |
3490 | # arm7m doesn't exist, but D & I don't affect code | |
70f24e49 NC |
3491 | xarm[236789] | xarm250 | xarm[67][01]0 \ |
3492 | | xarm7m | xarm7dm | xarm7dmi | xarm[79]tdmi \ | |
61ed06c3 | 3493 | | xarm7100 | xarm7500 | xarm7500fe | xarm810 \ |
d19fb8e3 | 3494 | | xxscale \ |
61ed06c3 HPN |
3495 | | xstrongarm | xstrongarm110 | xstrongarm1100) |
3496 | target_cpu_default2="TARGET_CPU_$with_cpu" | |
3497 | ;; | |
3498 | ||
3499 | xyes | xno) | |
3500 | echo "--with-cpu must be passed a value" 1>&2 | |
3501 | exit 1 | |
3502 | ;; | |
3503 | ||
3504 | *) | |
3505 | if test x$pass2done = xyes | |
3506 | then | |
3507 | echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2 | |
3508 | exit 1 | |
3509 | fi | |
3510 | ;; | |
3511 | esac | |
3512 | ;; | |
3513 | ||
c21a2372 AM |
3514 | hppa*-*-* | parisc*-*-*) |
3515 | if test x$gas = xyes | |
3516 | then | |
3517 | target_cpu_default2="MASK_GAS|MASK_JUMP_IN_DELAY" | |
3518 | fi | |
3519 | ;; | |
3520 | ||
61ed06c3 HPN |
3521 | mips*-*-ecoff* | mips*-*-elf*) |
3522 | if test x$gas = xyes | |
3523 | then | |
3524 | if test x$gnu_ld = xyes | |
3525 | then | |
3526 | target_cpu_default2="MASK_GAS|MASK_SPLIT_ADDR" | |
3527 | else | |
3528 | target_cpu_default2="MASK_GAS" | |
3529 | fi | |
3530 | fi | |
3531 | ;; | |
3532 | mips*-*-*) | |
3533 | if test x$gas = xyes | |
3534 | then | |
3535 | target_cpu_default2="MASK_GAS" | |
3536 | fi | |
3537 | ;; | |
3538 | powerpc*-*-* | rs6000-*-*) | |
480f7f3a AH |
3539 | if test x$enable_altivec = xyes |
3540 | then | |
5e505bc9 | 3541 | tm_file="$tm_file rs6000/altivec-defs.h" |
480f7f3a | 3542 | fi |
61ed06c3 HPN |
3543 | case "x$with_cpu" in |
3544 | x) | |
3545 | ;; | |
3546 | ||
94f1d97c DJ |
3547 | xcommon | xpower | xpower2 | xpower3 | xpowerpc | xpowerpc64 \ |
3548 | | xrios | xrios1 | xrios2 | xrsc | xrsc1 | xrs64a \ | |
3549 | | x601 | x602 | x603 | x603e | x604 | x604e | x620 | x630 \ | |
3550 | | x740 | x750 | x7400 | x7450 | x505) | |
ff25793c | 3551 | target_cpu_default2="\\\"$with_cpu\\\"" |
61ed06c3 HPN |
3552 | ;; |
3553 | ||
94f1d97c | 3554 | x401 | x403 | x405 | xec603e | x801 | x821 | x823 | x860) |
c19083d8 DD |
3555 | target_cpu_default2="\\\"$with_cpu\\\"" |
3556 | tm_file="$tm_file rs6000/softfloat.h" | |
3557 | ;; | |
3558 | ||
61ed06c3 HPN |
3559 | xyes | xno) |
3560 | echo "--with-cpu must be passed a value" 1>&2 | |
3561 | exit 1 | |
3562 | ;; | |
3563 | ||
3564 | *) | |
3565 | if test x$pass2done = xyes | |
3566 | then | |
3567 | echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2 | |
3568 | exit 1 | |
3569 | fi | |
3570 | ;; | |
3571 | esac | |
3572 | ;; | |
3573 | sparc*-*-*) | |
3574 | case ".$with_cpu" in | |
3575 | .) | |
3576 | target_cpu_default2=TARGET_CPU_"`echo $machine | sed 's/-.*$//'`" | |
3577 | ;; | |
3578 | .supersparc | .hypersparc | .ultrasparc | .v7 | .v8 | .v9) | |
3579 | target_cpu_default2="TARGET_CPU_$with_cpu" | |
3580 | ;; | |
3581 | *) | |
3582 | if test x$pass2done = xyes | |
3583 | then | |
3584 | echo "Unknown cpu used with --with-cpu=$with_cpu" 1>&2 | |
3585 | exit 1 | |
3586 | fi | |
3587 | ;; | |
3588 | esac | |
3589 | ;; | |
3590 | esac | |
3591 | ||
3592 | if test "$target_cpu_default2" != "" | |
3593 | then | |
3594 | if test "$target_cpu_default" != "" | |
3595 | then | |
3596 | target_cpu_default="(${target_cpu_default}|${target_cpu_default2})" | |
3597 | else | |
3598 | target_cpu_default=$target_cpu_default2 | |
3599 | fi | |
3600 | fi | |
3601 | ||
61ed06c3 HPN |
3602 | # Save data on machine being used to compile GCC in build_xm_file. |
3603 | # Save data on host machine in vars host_xm_file and host_xmake_file. | |
3604 | if test x$pass1done = x | |
3605 | then | |
4dc0535b ZW |
3606 | if test x$xm_file != x |
3607 | then build_xm_file=$xm_file | |
61ed06c3 HPN |
3608 | fi |
3609 | build_xm_defines=$xm_defines | |
3610 | build_install_headers_dir=$install_headers_dir | |
3611 | build_exeext=$exeext | |
3612 | pass1done=yes | |
3613 | else | |
3614 | if test x$pass2done = x | |
3615 | then | |
4dc0535b ZW |
3616 | if test x$xm_file != x |
3617 | then host_xm_file=$xm_file | |
61ed06c3 HPN |
3618 | fi |
3619 | host_xm_defines=$xm_defines | |
61ed06c3 HPN |
3620 | host_xmake_file="$xmake_file" |
3621 | host_truncate_target=$truncate_target | |
3622 | host_extra_gcc_objs=$extra_gcc_objs | |
3623 | host_extra_objs=$extra_host_objs | |
3624 | host_exeext=$exeext | |
3625 | pass2done=yes | |
3626 | fi | |
3627 | fi |