0
|
1 # GCC target-specific configuration file.
|
|
2 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
|
|
3 # 2008, 2009 Free Software Foundation, Inc.
|
|
4
|
|
5 #This file is part of GCC.
|
|
6
|
|
7 #GCC is free software; you can redistribute it and/or modify it under
|
|
8 #the terms of the GNU General Public License as published by the Free
|
|
9 #Software Foundation; either version 3, or (at your option) any later
|
|
10 #version.
|
|
11
|
|
12 #GCC is distributed in the hope that it will be useful, but WITHOUT
|
|
13 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
14 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
15 #for more details.
|
|
16
|
|
17 #You should have received a copy of the GNU General Public License
|
|
18 #along with GCC; see the file COPYING3. If not see
|
|
19 #<http://www.gnu.org/licenses/>.
|
|
20
|
|
21 # This is the GCC target-specific configuration file
|
|
22 # where a configuration type is mapped to different system-specific
|
|
23 # definitions and files. This is invoked by the autoconf-generated
|
|
24 # configure script. Putting it in a separate shell file lets us skip
|
|
25 # running autoconf when modifying target-specific information.
|
|
26
|
|
27 # When you change the cases in the OS or target switches, consider
|
|
28 # updating ../libgcc/config.host also.
|
|
29
|
|
30 # This file switches on the shell variable ${target}, and also uses the
|
|
31 # following shell variables:
|
|
32 #
|
|
33 # with_* Various variables as set by configure.
|
|
34 #
|
|
35 # enable_threads Either the name, yes or no depending on whether
|
|
36 # threads support was requested.
|
|
37 #
|
|
38 # default_use_cxa_atexit
|
|
39 # The default value for the $enable___cxa_atexit
|
|
40 # variable. enable___cxa_atexit needs to be set to
|
|
41 # "yes" for the correct operation of C++ destructors
|
|
42 # but it relies upon the presence of a non-standard C
|
|
43 # library function called __cxa_atexit.
|
|
44 # Since not all C libraries provide __cxa_atexit the
|
|
45 # default value of $default_use_cxa_atexit is set to
|
|
46 # "no" except for targets which are known to be OK.
|
|
47 #
|
|
48 # gas_flag Either yes or no depending on whether GNU as was
|
|
49 # requested.
|
|
50 #
|
|
51 # gnu_ld_flag Either yes or no depending on whether GNU ld was
|
|
52 # requested.
|
|
53
|
|
54 # This file sets the following shell variables for use by the
|
|
55 # autoconf-generated configure script:
|
|
56 #
|
|
57 # cpu_type The name of the cpu, if different from the first
|
|
58 # chunk of the canonical target name.
|
|
59 #
|
|
60 # tm_defines List of target macros to define for all compilations.
|
|
61 #
|
|
62 # tm_file A list of target macro files, if different from
|
|
63 # "$cpu_type/$cpu_type.h". Usually it's constructed
|
|
64 # per target in a way like this:
|
|
65 # tm_file="${tm_file} dbxelf.h elfos.h svr4.h ${cpu_type.h}/elf.h"
|
|
66 # Note that the preferred order is:
|
|
67 # - specific target header "${cpu_type}/${cpu_type.h}"
|
|
68 # - generic headers like dbxelf.h elfos.h, etc.
|
|
69 # - specializing target headers like ${cpu_type.h}/elf.h
|
|
70 # This helps to keep OS specific stuff out of the CPU
|
|
71 # defining header ${cpu_type}/${cpu_type.h}.
|
|
72 #
|
|
73 # It is possible to include automatically-generated
|
|
74 # build-directory files by prefixing them with "./".
|
|
75 # All other files should relative to $srcdir/config.
|
|
76 #
|
|
77 # tm_p_file Location of file with declarations for functions
|
|
78 # in $out_file.
|
|
79 #
|
|
80 # out_file The name of the machine description C support
|
|
81 # file, if different from "$cpu_type/$cpu_type.c".
|
|
82 #
|
|
83 # md_file The name of the machine-description file, if
|
|
84 # different from "$cpu_type/$cpu_type.md".
|
|
85 #
|
|
86 # tmake_file A list of machine-description-specific
|
|
87 # makefile-fragments, if different from
|
|
88 # "$cpu_type/t-$cpu_type".
|
|
89 #
|
|
90 # extra_modes The name of the file containing a list of extra
|
|
91 # machine modes, if necessary and different from
|
|
92 # "$cpu_type/$cpu_type-modes.def".
|
|
93 #
|
|
94 # extra_objs List of extra objects that should be linked into
|
|
95 # the compiler proper (cc1, cc1obj, cc1plus)
|
|
96 # depending on target.
|
|
97 #
|
|
98 # extra_gcc_objs List of extra objects that should be linked into
|
|
99 # the compiler driver (gcc) depending on target.
|
|
100 #
|
|
101 # extra_headers List of used header files from the directory
|
|
102 # config/${cpu_type}.
|
|
103 #
|
|
104 # use_gcc_tgmath If set, add tgmath.h to the list of used header
|
|
105 # files.
|
|
106 #
|
|
107 # extra_passes List of extra executables compiled for this target
|
|
108 # machine, used for compiling from source to object.
|
|
109 #
|
|
110 # extra_parts List of extra object files that should be compiled
|
|
111 # for this target machine.
|
|
112 #
|
|
113 # extra_programs Like extra_passes, but these are used when linking.
|
|
114 #
|
|
115 # extra_options List of target-dependent .opt files.
|
|
116 #
|
|
117 # c_target_objs List of extra target-dependent objects that be
|
|
118 # linked into the C compiler only.
|
|
119 #
|
|
120 # cxx_target_objs List of extra target-dependent objects that be
|
|
121 # linked into the C++ compiler only.
|
|
122 #
|
|
123 # fortran_target_objs List of extra target-dependent objects that be
|
|
124 # linked into the fortran compiler only.
|
|
125 #
|
|
126 # target_gtfiles List of extra source files with type information.
|
|
127 #
|
|
128 # xm_defines List of macros to define when compiling for the
|
|
129 # target machine.
|
|
130 #
|
|
131 # xm_file List of files to include when compiling for the
|
|
132 # target machine.
|
|
133 #
|
|
134 # use_collect2 Set to yes or no, depending on whether collect2
|
|
135 # will be used.
|
|
136 #
|
|
137 # target_cpu_default Set to override the default target model.
|
|
138 #
|
|
139 # gdb_needs_out_file_path
|
|
140 # Set to yes if gdb needs a dir command with
|
|
141 # `dirname $out_file`.
|
|
142 #
|
|
143 # thread_file Set to control which thread package to use.
|
|
144 #
|
|
145 # gas Set to yes or no depending on whether the target
|
|
146 # system normally uses GNU as.
|
|
147 #
|
|
148 # need_64bit_hwint Set to yes if HOST_WIDE_INT must be 64 bits wide
|
|
149 # for this target. This is true if this target
|
|
150 # supports "long" or "wchar_t" wider than 32 bits,
|
|
151 # or BITS_PER_WORD is wider than 32 bits.
|
|
152 # The setting made here must match the one made in
|
|
153 # other locations such as libcpp/configure.ac
|
|
154 #
|
|
155 # configure_default_options
|
|
156 # Set to an initializer for configure_default_options
|
|
157 # in configargs.h, based on --with-cpu et cetera.
|
|
158 #
|
|
159 # use_fixproto Set to "yes" if fixproto should be run normally,
|
|
160 # "no" if fixproto should never be run.
|
|
161
|
|
162 # The following variables are used in each case-construct to build up the
|
|
163 # outgoing variables:
|
|
164 #
|
|
165 # gnu_ld Set to yes or no depending on whether the target
|
|
166 # system normally uses GNU ld.
|
|
167
|
|
168 out_file=
|
|
169 tmake_file=
|
|
170 extra_headers=
|
|
171 use_gcc_tgmath=yes
|
|
172 extra_passes=
|
|
173 extra_parts=
|
|
174 extra_programs=
|
|
175 extra_objs=
|
|
176 extra_gcc_objs=
|
|
177 extra_options=
|
|
178 c_target_objs=
|
|
179 cxx_target_objs=
|
|
180 fortran_target_objs=
|
|
181 tm_defines=
|
|
182 xm_defines=
|
|
183 # Set this to force installation and use of collect2.
|
|
184 use_collect2=
|
|
185 # Set this to override the default target model.
|
|
186 target_cpu_default=
|
|
187 # Set this if gdb needs a dir command with `dirname $out_file`
|
|
188 gdb_needs_out_file_path=
|
|
189 # Set this to control which thread package will be used.
|
|
190 thread_file=
|
|
191 # Reinitialize these from the flag values every loop pass, since some
|
|
192 # configure entries modify them.
|
|
193 gas="$gas_flag"
|
|
194 gnu_ld="$gnu_ld_flag"
|
|
195 default_use_cxa_atexit=no
|
|
196 target_gtfiles=
|
|
197 need_64bit_hwint=
|
|
198
|
|
199 # Default to not using fixproto. Targets which need fixproto should
|
|
200 # specifically set this to 'yes'.
|
|
201 use_fixproto=no
|
|
202
|
|
203 # Don't carry these over build->host->target. Please.
|
|
204 xm_file=
|
|
205 md_file=
|
|
206
|
|
207 # Obsolete configurations.
|
|
208 case ${target} in
|
|
209 # Avoid generic cases below matching.
|
|
210 h8300-*-rtems* | h8300-*-elf* \
|
|
211 | sh-*-elf* | sh-*-symbianelf* | sh-*-linux* | sh-*-netbsdelf* \
|
|
212 | sh-*-rtems* | sh-wrs-vxworks) ;;
|
|
213 arm-*-coff* \
|
|
214 | armel-*-coff* \
|
|
215 | h8300-*-* \
|
|
216 | i[34567]86-*-aout* \
|
|
217 | i[34567]86-*-coff* \
|
|
218 | m68k-*-aout* \
|
|
219 | m68k-*-coff* \
|
|
220 | sh-*-* \
|
|
221 | pdp11-*-bsd \
|
|
222 | rs6000-ibm-aix4.[12]* \
|
|
223 | powerpc-ibm-aix4.[12]* \
|
|
224 )
|
|
225 if test "x$enable_obsolete" != xyes; then
|
|
226 echo "*** Configuration ${target} is obsolete." >&2
|
|
227 echo "*** Specify --enable-obsolete to build it anyway." >&2
|
|
228 echo "*** Support will be REMOVED in the next major release of GCC," >&2
|
|
229 echo "*** unless a maintainer comes forward." >&2
|
|
230 exit 1
|
|
231 fi;;
|
|
232 esac
|
|
233
|
|
234 # Unsupported targets list. Do not put an entry in this list unless
|
|
235 # it would otherwise be caught by a more permissive pattern. The list
|
|
236 # should be in alphabetical order.
|
|
237 case ${target} in
|
|
238 i[34567]86-go32-* \
|
|
239 | i[34567]86-*-go32* \
|
|
240 | mips64orion*-*-rtems* \
|
|
241 | sparc-hal-solaris2* \
|
|
242 | thumb-*-* \
|
|
243 | *-*-linux*aout* \
|
|
244 | *-*-linux*coff* \
|
|
245 | *-*-linux*libc1* \
|
|
246 | *-*-linux*oldld* \
|
|
247 | *-*-rtemsaout* \
|
|
248 | *-*-rtemscoff* \
|
|
249 | *-*-solaris2.[0-6] \
|
|
250 | *-*-solaris2.[0-6].* \
|
|
251 | *-*-sysv* \
|
|
252 | vax-*-vms* \
|
|
253 )
|
|
254 echo "*** Configuration ${target} not supported" 1>&2
|
|
255 exit 1
|
|
256 ;;
|
|
257 esac
|
|
258
|
|
259 # Set default cpu_type, tm_file, tm_p_file and xm_file so it can be
|
|
260 # updated in each machine entry. Also set default extra_headers for some
|
|
261 # machines.
|
|
262 tm_p_file=
|
|
263 cpu_type=`echo ${target} | sed 's/-.*$//'`
|
|
264 cpu_is_64bit=
|
|
265 case ${target} in
|
|
266 m32c*-*-*)
|
|
267 cpu_type=m32c
|
|
268 tmake_file=m32c/t-m32c
|
|
269 ;;
|
|
270 alpha*-*-*)
|
|
271 cpu_type=alpha
|
|
272 need_64bit_hwint=yes
|
|
273 ;;
|
|
274 am33_2.0-*-linux*)
|
|
275 cpu_type=mn10300
|
|
276 ;;
|
|
277 arm*-*-*)
|
|
278 cpu_type=arm
|
|
279 extra_headers="mmintrin.h arm_neon.h"
|
|
280 c_target_objs="arm-c.o"
|
|
281 cxx_target_objs="arm-c.o"
|
|
282 ;;
|
|
283 bfin*-*)
|
|
284 cpu_type=bfin
|
|
285 ;;
|
|
286 crisv32-*)
|
|
287 cpu_type=cris
|
|
288 ;;
|
|
289 frv*) cpu_type=frv
|
|
290 ;;
|
|
291 fido-*-*)
|
|
292 cpu_type=m68k
|
|
293 extra_headers=math-68881.h
|
|
294 ;;
|
|
295 i[34567]86-*-*)
|
|
296 cpu_type=i386
|
|
297 c_target_objs="i386-c.o"
|
|
298 cxx_target_objs="i386-c.o"
|
|
299 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
|
|
300 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
|
|
301 nmmintrin.h bmmintrin.h mmintrin-common.h
|
|
302 wmmintrin.h immintrin.h x86intrin.h avxintrin.h
|
|
303 cross-stdarg.h"
|
|
304 ;;
|
|
305 x86_64-*-*)
|
|
306 cpu_type=i386
|
|
307 c_target_objs="i386-c.o"
|
|
308 cxx_target_objs="i386-c.o"
|
|
309 extra_headers="cpuid.h mmintrin.h mm3dnow.h xmmintrin.h emmintrin.h
|
|
310 pmmintrin.h tmmintrin.h ammintrin.h smmintrin.h
|
|
311 nmmintrin.h bmmintrin.h mmintrin-common.h
|
|
312 wmmintrin.h immintrin.h x86intrin.h avxintrin.h
|
|
313 cross-stdarg.h"
|
|
314 need_64bit_hwint=yes
|
|
315 ;;
|
|
316 ia64-*-*)
|
|
317 extra_headers=ia64intrin.h
|
|
318 need_64bit_hwint=yes
|
|
319 ;;
|
|
320 hppa*-*-*)
|
|
321 cpu_type=pa
|
|
322 ;;
|
|
323 m32r*-*-*)
|
|
324 cpu_type=m32r
|
|
325 ;;
|
|
326 m68k-*-*)
|
|
327 extra_headers=math-68881.h
|
|
328 ;;
|
|
329 mips*-*-*)
|
|
330 cpu_type=mips
|
|
331 need_64bit_hwint=yes
|
|
332 extra_headers="loongson.h"
|
|
333 ;;
|
|
334 picochip-*-*)
|
|
335 cpu_type=picochip
|
|
336 ;;
|
|
337 powerpc*-*-*)
|
|
338 cpu_type=rs6000
|
|
339 extra_headers="ppc-asm.h altivec.h spe.h ppu_intrinsics.h paired.h spu2vmx.h vec_types.h si2vmx.h"
|
|
340 need_64bit_hwint=yes
|
|
341 case x$with_cpu in
|
|
342 xpowerpc64|xdefault64|x6[23]0|x970|xG5|xpower[34567]|xpower6x|xrs64a|xcell)
|
|
343 cpu_is_64bit=yes
|
|
344 ;;
|
|
345 esac
|
|
346 ;;
|
|
347 rs6000*-*-*)
|
|
348 need_64bit_hwint=yes
|
|
349 ;;
|
|
350 score*-*-*)
|
|
351 cpu_type=score
|
|
352 ;;
|
|
353 sparc*-*-*)
|
|
354 cpu_type=sparc
|
|
355 need_64bit_hwint=yes
|
|
356 ;;
|
|
357 spu*-*-*)
|
|
358 cpu_type=spu
|
|
359 need_64bit_hwint=yes
|
|
360 ;;
|
|
361 s390*-*-*)
|
|
362 cpu_type=s390
|
|
363 need_64bit_hwint=yes
|
|
364 ;;
|
|
365 # Note the 'l'; we need to be able to match e.g. "shle" or "shl".
|
|
366 sh[123456789lbe]*-*-* | sh-*-*)
|
|
367 cpu_type=sh
|
|
368 need_64bit_hwint=yes
|
|
369 ;;
|
|
370 esac
|
|
371
|
|
372 tm_file=${cpu_type}/${cpu_type}.h
|
|
373 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-protos.h
|
|
374 then
|
|
375 tm_p_file=${cpu_type}/${cpu_type}-protos.h
|
|
376 fi
|
|
377 extra_modes=
|
|
378 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}-modes.def
|
|
379 then
|
|
380 extra_modes=${cpu_type}/${cpu_type}-modes.def
|
|
381 fi
|
|
382 if test -f ${srcdir}/config/${cpu_type}/${cpu_type}.opt
|
|
383 then
|
|
384 extra_options="${extra_options} ${cpu_type}/${cpu_type}.opt"
|
|
385 fi
|
|
386
|
|
387 case ${target} in
|
|
388 i[34567]86-*-*)
|
|
389 if test "x$enable_cld" = xyes; then
|
|
390 tm_defines="${tm_defines} USE_IX86_CLD=1"
|
|
391 fi
|
|
392 ;;
|
|
393 x86_64-*-*)
|
|
394 tm_file="i386/biarch64.h ${tm_file}"
|
|
395 if test "x$enable_cld" = xyes; then
|
|
396 tm_defines="${tm_defines} USE_IX86_CLD=1"
|
|
397 fi
|
|
398 ;;
|
|
399 esac
|
|
400
|
|
401 # On a.out targets, we need to use collect2.
|
|
402 case ${target} in
|
|
403 *-*-*aout*)
|
|
404 use_collect2=yes
|
|
405 ;;
|
|
406 esac
|
|
407
|
|
408 # Common parts for widely ported systems.
|
|
409 case ${target} in
|
|
410 *-*-darwin*)
|
|
411 tm_file="${tm_file} darwin.h"
|
|
412 case ${target} in
|
|
413 *-*-darwin[912]*)
|
|
414 tm_file="${tm_file} darwin9.h"
|
|
415 ;;
|
|
416 esac
|
|
417 tm_file="${tm_file} ${cpu_type}/darwin.h"
|
|
418 tm_p_file="${tm_p_file} darwin-protos.h"
|
|
419 tmake_file="t-darwin ${cpu_type}/t-darwin t-slibgcc-darwin"
|
|
420 target_gtfiles="\$(srcdir)/config/darwin.c"
|
|
421 extra_options="${extra_options} darwin.opt"
|
|
422 c_target_objs="${c_target_objs} darwin-c.o"
|
|
423 cxx_target_objs="${cxx_target_objs} darwin-c.o"
|
|
424 fortran_target_objs="darwin-f.o"
|
|
425 extra_objs="darwin.o"
|
|
426 extra_gcc_objs="darwin-driver.o"
|
|
427 default_use_cxa_atexit=yes
|
|
428 case ${enable_threads} in
|
|
429 "" | yes | posix) thread_file='posix' ;;
|
|
430 esac
|
|
431 ;;
|
|
432 *-*-freebsd[12] | *-*-freebsd[12].* | *-*-freebsd*aout*)
|
|
433 # This is the place-holder for the generic a.out configuration
|
|
434 # of FreeBSD. No actual configuration resides here since
|
|
435 # there was only ever a bare-bones ix86 configuration for
|
|
436 # a.out and it exists solely in the machine-specific section.
|
|
437 # This place-holder must exist to avoid dropping into
|
|
438 # the generic ELF configuration of FreeBSD (i.e. it must be
|
|
439 # ordered before that section).
|
|
440 ;;
|
|
441 *-*-freebsd*)
|
|
442 # This is the generic ELF configuration of FreeBSD. Later
|
|
443 # machine-specific sections may refine and add to this
|
|
444 # configuration.
|
|
445 #
|
|
446 # Due to tm_file entry ordering issues that vary between cpu
|
|
447 # architectures, we only define fbsd_tm_file to allow the
|
|
448 # machine-specific section to dictate the final order of all
|
|
449 # entries of tm_file with the minor exception that components
|
|
450 # of the tm_file set here will always be of the form:
|
|
451 #
|
|
452 # freebsd<version_number>.h [freebsd-<conf_option>.h ...] freebsd-spec.h freebsd.h
|
|
453 #
|
|
454 # The machine-specific section should not tamper with this
|
|
455 # ordering but may order all other entries of tm_file as it
|
|
456 # pleases around the provided core setting.
|
|
457 gas=yes
|
|
458 gnu_ld=yes
|
|
459 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
|
|
460 fbsd_major=`echo ${target} | sed -e 's/.*freebsd//g' | sed -e 's/\..*//g'`
|
|
461 tm_defines="${tm_defines} FBSD_MAJOR=${fbsd_major}"
|
|
462 tmake_file="t-slibgcc-elf-ver t-freebsd"
|
|
463 case ${enable_threads} in
|
|
464 no)
|
|
465 fbsd_tm_file="${fbsd_tm_file} freebsd-nthr.h"
|
|
466 ;;
|
|
467 "" | yes | posix)
|
|
468 thread_file='posix'
|
|
469 tmake_file="${tmake_file} t-freebsd-thread"
|
|
470 # Before 5.0, FreeBSD can't bind shared libraries to -lc
|
|
471 # when "optionally" threaded via weak pthread_* checks.
|
|
472 case ${target} in
|
|
473 *-*-freebsd[34] | *-*-freebsd[34].*)
|
|
474 tmake_file="${tmake_file} t-slibgcc-nolc-override"
|
|
475 ;;
|
|
476 esac
|
|
477 ;;
|
|
478 *)
|
|
479 echo 'Unknown thread configuration for FreeBSD'
|
|
480 exit 1
|
|
481 ;;
|
|
482 esac
|
|
483 fbsd_tm_file="${fbsd_tm_file} freebsd-spec.h freebsd.h"
|
|
484 ;;
|
|
485 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-gnu* | *-*-kopensolaris*-gnu)
|
|
486 extra_parts="crtbegin.o crtbeginS.o crtbeginT.o crtend.o crtendS.o"
|
|
487 gas=yes
|
|
488 gnu_ld=yes
|
|
489 case ${enable_threads} in
|
|
490 "" | yes | posix) thread_file='posix' ;;
|
|
491 esac
|
|
492 tmake_file="t-slibgcc-elf-ver t-linux"
|
|
493 case $target in
|
|
494 *-*-linux* | frv-*-*linux* | *-*-kfreebsd*-gnu | *-*-knetbsd*-gnu | *-*-kopensolaris*-gnu)
|
|
495 :;;
|
|
496 *-*-gnu*)
|
|
497 tmake_file="$tmake_file t-gnu";;
|
|
498 esac
|
|
499 # glibc / uclibc switch. uclibc isn't usable for GNU/Hurd and neither for
|
|
500 # GNU/k*BSD.
|
|
501 case $target in
|
|
502 *linux*)
|
|
503 extra_options="$extra_options linux.opt";;
|
|
504 *)
|
|
505 tm_defines="$tm_defines OPTION_GLIBC=1";;
|
|
506 esac
|
|
507 case ${target} in
|
|
508 *-*-*uclibc*)
|
|
509 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
|
|
510 ;;
|
|
511 *)
|
|
512 tm_defines="${tm_defines} UCLIBC_DEFAULT=0"
|
|
513 ;;
|
|
514 esac
|
|
515 # Assume that glibc or uClibc are being used and so __cxa_atexit is provided.
|
|
516 default_use_cxa_atexit=yes
|
|
517 use_gcc_tgmath=no
|
|
518 ;;
|
|
519 *-*-netbsd*)
|
|
520 tmake_file="t-slibgcc-elf-ver t-libc-ok t-netbsd t-libgcc-pic"
|
|
521 gas=yes
|
|
522 gnu_ld=yes
|
|
523
|
|
524 # NetBSD 2.0 and later get POSIX threads enabled by default.
|
|
525 # Allow them to be explicitly enabled on any other version.
|
|
526 case ${enable_threads} in
|
|
527 "")
|
|
528 case ${target} in
|
|
529 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
|
|
530 thread_file='posix'
|
|
531 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
|
|
532 ;;
|
|
533 esac
|
|
534 ;;
|
|
535 yes | posix)
|
|
536 thread_file='posix'
|
|
537 tm_defines="${tm_defines} NETBSD_ENABLE_PTHREADS"
|
|
538 ;;
|
|
539 esac
|
|
540
|
|
541 # NetBSD 1.7 and later are set up to use GCC's crtstuff for
|
|
542 # ELF configurations. We will clear extra_parts in the
|
|
543 # a.out configurations.
|
|
544 case ${target} in
|
|
545 *-*-netbsd*1.[7-9]* | *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
|
|
546 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
|
|
547 ;;
|
|
548 esac
|
|
549
|
|
550 # NetBSD 2.0 and later provide __cxa_atexit(), which we use by
|
|
551 # default (unless overridden by --disable-__cxa_atexit).
|
|
552 case ${target} in
|
|
553 *-*-netbsd[2-9]* | *-*-netbsdelf[2-9]*)
|
|
554 default_use_cxa_atexit=yes
|
|
555 ;;
|
|
556 esac
|
|
557 ;;
|
|
558 *-*-openbsd*)
|
|
559 tmake_file="t-libc-ok t-openbsd t-libgcc-pic"
|
|
560 case ${enable_threads} in
|
|
561 yes)
|
|
562 thread_file='posix'
|
|
563 tmake_file="${tmake_file} t-openbsd-thread"
|
|
564 ;;
|
|
565 esac
|
|
566 case ${target} in
|
|
567 *-*-openbsd2.*|*-*-openbsd3.[012])
|
|
568 tm_defines="${tm_defines} HAS_LIBC_R=1" ;;
|
|
569 esac
|
|
570 ;;
|
|
571 *-*-rtems*)
|
|
572 case ${enable_threads} in
|
|
573 yes) thread_file='rtems' ;;
|
|
574 esac
|
|
575 ;;
|
|
576 *-*-vxworks*)
|
|
577 tmake_file=t-vxworks
|
|
578 xm_defines=POSIX
|
|
579 extra_options="${extra_options} vxworks.opt"
|
|
580 extra_objs=vxworks.o
|
|
581 case ${enable_threads} in
|
|
582 no) ;;
|
|
583 "" | yes | vxworks) thread_file='vxworks' ;;
|
|
584 *) echo 'Unknown thread configuration for VxWorks'; exit 1 ;;
|
|
585 esac
|
|
586 ;;
|
|
587 *-*-elf)
|
|
588 # Assume that newlib is being used and so __cxa_atexit is provided.
|
|
589 default_use_cxa_atexit=yes
|
|
590 ;;
|
|
591 esac
|
|
592
|
|
593 case ${target} in
|
|
594 # Support site-specific machine types.
|
|
595 *local*)
|
|
596 rest=`echo ${target} | sed -e "s/$cpu_type-//"`
|
|
597 tm_file=${cpu_type}/$rest.h
|
|
598 if test -f $srcdir/config/${cpu_type}/xm-$rest.h
|
|
599 then xm_file=${cpu_type}/xm-$rest.h
|
|
600 fi
|
|
601 if test -f $srcdir/config/${cpu_type}/t-$rest
|
|
602 then tmake_file=${cpu_type}/t-$rest
|
|
603 fi
|
|
604 ;;
|
|
605 alpha*-*-linux*)
|
|
606 tm_file="${tm_file} alpha/elf.h alpha/linux.h alpha/linux-elf.h"
|
|
607 target_cpu_default="MASK_GAS"
|
|
608 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee alpha/t-linux"
|
|
609 ;;
|
|
610 alpha*-*-gnu*)
|
|
611 tm_file="$tm_file alpha/elf.h alpha/linux.h alpha/linux-elf.h gnu.h alpha/gnu.h"
|
|
612 target_cpu_default="MASK_GAS"
|
|
613 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
|
|
614 ;;
|
|
615 alpha*-*-freebsd*)
|
|
616 tm_file="${tm_file} ${fbsd_tm_file} alpha/elf.h alpha/freebsd.h"
|
|
617 target_cpu_default="MASK_GAS"
|
|
618 tmake_file="${tmake_file} alpha/t-crtfm alpha/t-alpha alpha/t-ieee"
|
|
619 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o"
|
|
620 ;;
|
|
621 alpha*-*-netbsd*)
|
|
622 tm_file="${tm_file} netbsd.h alpha/elf.h netbsd-elf.h alpha/netbsd.h"
|
|
623 target_cpu_default="MASK_GAS"
|
|
624 tmake_file="${tmake_file} alpha/t-alpha alpha/t-ieee"
|
|
625 ;;
|
|
626 alpha*-*-openbsd*)
|
|
627 tm_defines="${tm_defines} OBSD_NO_DYNAMIC_LIBRARIES OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_FUNCTION_SIZE OBSD_HAS_DECLARE_OBJECT"
|
|
628 tm_file="alpha/alpha.h openbsd.h alpha/openbsd.h"
|
|
629 # default x-alpha is only appropriate for dec-osf.
|
|
630 target_cpu_default="MASK_GAS"
|
|
631 tmake_file="alpha/t-alpha alpha/t-ieee"
|
|
632 ;;
|
|
633 alpha*-dec-osf[45]*)
|
|
634 if test x$stabs = xyes
|
|
635 then
|
|
636 tm_file="${tm_file} dbx.h"
|
|
637 fi
|
|
638 if test x$gas != xyes
|
|
639 then
|
|
640 extra_passes="mips-tfile mips-tdump"
|
|
641 fi
|
|
642 use_collect2=yes
|
|
643 tmake_file="alpha/t-alpha alpha/t-ieee alpha/t-crtfm alpha/t-osf4"
|
|
644 tm_file="${tm_file} alpha/osf.h"
|
|
645 extra_headers=va_list.h
|
|
646 case ${target} in
|
|
647 *-*-osf4*)
|
|
648 # Define TARGET_SUPPORT_ARCH except on 4.0a.
|
|
649 case ${target} in
|
|
650 *-*-osf4.0a) ;;
|
|
651 *) tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
|
|
652 esac
|
|
653 ;;
|
|
654 *-*-osf5*)
|
|
655 tm_file="${tm_file} alpha/osf5.h"
|
|
656 tm_defines="${tm_defines} TARGET_SUPPORT_ARCH=1"
|
|
657 ;;
|
|
658 esac
|
|
659 case ${enable_threads} in
|
|
660 "" | yes | posix)
|
|
661 thread_file='posix'
|
|
662 tmake_file="${tmake_file} alpha/t-osf-pthread"
|
|
663 ;;
|
|
664 esac
|
|
665 ;;
|
|
666 alpha64-dec-*vms*)
|
|
667 tm_file="${tm_file} alpha/vms.h alpha/vms64.h"
|
|
668 xm_file="alpha/xm-vms.h"
|
|
669 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-vms64 alpha/t-ieee"
|
|
670 prefix=/gnu
|
|
671 local_prefix=/gnu
|
|
672 ;;
|
|
673 alpha*-dec-*vms*)
|
|
674 tm_file="${tm_file} alpha/vms.h"
|
|
675 xm_file=alpha/xm-vms.h
|
|
676 tmake_file="alpha/t-alpha alpha/t-vms alpha/t-ieee"
|
|
677 prefix=/gnu
|
|
678 local_prefix=/gnu
|
|
679 ;;
|
|
680 arc-*-elf*)
|
|
681 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
682 extra_parts="crtinit.o crtfini.o"
|
|
683 ;;
|
|
684 arm-*-coff* | armel-*-coff*)
|
|
685 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h"
|
|
686 tmake_file="arm/t-arm arm/t-arm-coff"
|
|
687 ;;
|
|
688 arm-wrs-vxworks)
|
|
689 tm_file="elfos.h arm/elf.h arm/aout.h ${tm_file} vx-common.h vxworks.h arm/vxworks.h"
|
|
690 tmake_file="${tmake_file} arm/t-arm arm/t-vxworks"
|
|
691 ;;
|
|
692 arm*-*-freebsd*)
|
|
693 tm_file="dbxelf.h elfos.h ${fbsd_tm_file} arm/elf.h arm/aout.h arm/freebsd.h arm/arm.h"
|
|
694 tmake_file="${tmake_file} arm/t-arm arm/t-strongarm-elf"
|
|
695 ;;
|
|
696 arm*-*-netbsdelf*)
|
|
697 tm_file="dbxelf.h elfos.h netbsd.h netbsd-elf.h arm/elf.h arm/aout.h arm/arm.h arm/netbsd-elf.h"
|
|
698 tmake_file="${tmake_file} arm/t-arm arm/t-netbsd"
|
|
699 ;;
|
|
700 arm*-*-netbsd*)
|
|
701 tm_file="arm/aout.h arm/arm.h netbsd.h netbsd-aout.h arm/netbsd.h"
|
|
702 tmake_file="t-netbsd arm/t-arm arm/t-netbsd"
|
|
703 extra_parts=""
|
|
704 use_collect2=yes
|
|
705 ;;
|
|
706 arm*-*-linux*) # ARM GNU/Linux with ELF
|
|
707 tm_file="dbxelf.h elfos.h linux.h arm/elf.h arm/linux-gas.h arm/linux-elf.h"
|
|
708 case $target in
|
|
709 arm*b-*)
|
|
710 tm_defines="${tm_defines} TARGET_BIG_ENDIAN_DEFAULT=1"
|
|
711 ;;
|
|
712 esac
|
|
713 tmake_file="${tmake_file} t-linux arm/t-arm"
|
|
714 case ${target} in
|
|
715 arm*-*-linux-*eabi)
|
|
716 tm_file="$tm_file arm/bpabi.h arm/linux-eabi.h"
|
|
717 tmake_file="$tmake_file arm/t-arm-elf arm/t-bpabi arm/t-linux-eabi"
|
|
718 # The BPABI long long divmod functions return a 128-bit value in
|
|
719 # registers r0-r3. Correctly modeling that requires the use of
|
|
720 # TImode.
|
|
721 need_64bit_hwint=yes
|
|
722 # The EABI requires the use of __cxa_atexit.
|
|
723 default_use_cxa_atexit=yes
|
|
724 ;;
|
|
725 *)
|
|
726 tmake_file="$tmake_file arm/t-linux"
|
|
727 ;;
|
|
728 esac
|
|
729 tm_file="$tm_file arm/aout.h arm/arm.h"
|
|
730 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
731 ;;
|
|
732 arm*-*-uclinux*) # ARM ucLinux
|
|
733 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/linux-gas.h arm/uclinux-elf.h"
|
|
734 tmake_file="arm/t-arm arm/t-arm-elf"
|
|
735 case ${target} in
|
|
736 arm*-*-uclinux*eabi)
|
|
737 tm_file="$tm_file arm/bpabi.h arm/uclinux-eabi.h"
|
|
738 tmake_file="$tmake_file arm/t-bpabi"
|
|
739 # The BPABI long long divmod functions return a 128-bit value in
|
|
740 # registers r0-r3. Correctly modeling that requires the use of
|
|
741 # TImode.
|
|
742 need_64bit_hwint=yes
|
|
743 # The EABI requires the use of __cxa_atexit.
|
|
744 default_use_cxa_atexit=yes
|
|
745 esac
|
|
746 tm_file="$tm_file arm/aout.h arm/arm.h"
|
|
747 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
748 ;;
|
|
749 arm*-*-ecos-elf)
|
|
750 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h arm/ecos-elf.h"
|
|
751 tmake_file="arm/t-arm arm/t-arm-elf"
|
|
752 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
753 ;;
|
|
754 arm*-*-eabi* | arm*-*-symbianelf* )
|
|
755 # The BPABI long long divmod functions return a 128-bit value in
|
|
756 # registers r0-r3. Correctly modeling that requires the use of
|
|
757 # TImode.
|
|
758 need_64bit_hwint=yes
|
|
759 default_use_cxa_atexit=yes
|
|
760 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/bpabi.h"
|
|
761 tmake_file="arm/t-arm arm/t-arm-elf"
|
|
762 case ${target} in
|
|
763 arm*-*-eabi*)
|
|
764 tm_file="$tm_file arm/eabi.h"
|
|
765 tmake_file="${tmake_file} arm/t-bpabi"
|
|
766 extra_options="${extra_options} arm/eabi.opt"
|
|
767 ;;
|
|
768 arm*-*-symbianelf*)
|
|
769 tm_file="${tm_file} arm/symbian.h"
|
|
770 # We do not include t-bpabi for Symbian OS because the system
|
|
771 # provides its own implementation of the BPABI functions.
|
|
772 tmake_file="${tmake_file} arm/t-symbian"
|
|
773 ;;
|
|
774 esac
|
|
775 tm_file="${tm_file} arm/aout.h arm/arm.h"
|
|
776 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
777 ;;
|
|
778 arm*-*-rtems*)
|
|
779 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"
|
|
780 tmake_file="arm/t-arm arm/t-arm-elf t-rtems arm/t-rtems"
|
|
781 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
782 ;;
|
|
783 arm*-*-elf)
|
|
784 tm_file="dbxelf.h elfos.h arm/unknown-elf.h arm/elf.h arm/aout.h arm/arm.h"
|
|
785 tmake_file="arm/t-arm arm/t-arm-elf"
|
|
786 tmake_file="${tmake_file} arm/t-arm-softfp soft-fp/t-softfp"
|
|
787 ;;
|
|
788 arm*-wince-pe*)
|
|
789 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h arm/wince-pe.h"
|
|
790 tmake_file="arm/t-arm arm/t-wince-pe"
|
|
791 extra_options="${extra_options} arm/pe.opt"
|
|
792 extra_objs="pe.o"
|
|
793 ;;
|
|
794 arm-*-pe*)
|
|
795 tm_file="arm/semi.h arm/aout.h arm/arm.h arm/coff.h dbxcoff.h arm/pe.h"
|
|
796 tmake_file="arm/t-arm arm/t-pe"
|
|
797 extra_options="${extra_options} arm/pe.opt"
|
|
798 extra_objs="pe.o"
|
|
799 ;;
|
|
800 avr-*-rtems*)
|
|
801 tm_file="avr/avr.h dbxelf.h avr/rtems.h rtems.h"
|
|
802 tmake_file="avr/t-avr t-rtems avr/t-rtems"
|
|
803 ;;
|
|
804 avr-*-*)
|
|
805 tm_file="avr/avr.h dbxelf.h"
|
|
806 ;;
|
|
807 bfin*-elf*)
|
|
808 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
|
|
809 tmake_file=bfin/t-bfin-elf
|
|
810 use_collect2=no
|
|
811 ;;
|
|
812 bfin*-uclinux*)
|
|
813 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h bfin/uclinux.h"
|
|
814 tmake_file=bfin/t-bfin-uclinux
|
|
815 tm_defines="${tm_defines} UCLIBC_DEFAULT=1"
|
|
816 extra_options="${extra_options} linux.opt"
|
|
817 use_collect2=no
|
|
818 ;;
|
|
819 bfin*-linux-uclibc*)
|
|
820 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h linux.h bfin/linux.h ./linux-sysroot-suffix.h"
|
|
821 tmake_file="t-slibgcc-elf-ver bfin/t-bfin-linux"
|
|
822 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
|
|
823 use_collect2=no
|
|
824 ;;
|
|
825 bfin*-rtems*)
|
|
826 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h bfin/rtems.h rtems.h"
|
|
827 tmake_file="bfin/t-bfin t-rtems bfin/t-rtems"
|
|
828 ;;
|
|
829 bfin*-*)
|
|
830 tm_file="${tm_file} dbxelf.h elfos.h bfin/elf.h"
|
|
831 tmake_file=bfin/t-bfin
|
|
832 use_collect2=no
|
|
833 ;;
|
|
834 crisv32-*-elf | crisv32-*-none)
|
|
835 tm_file="dbxelf.h elfos.h ${tm_file}"
|
|
836 tmake_file="cris/t-cris"
|
|
837 target_cpu_default=32
|
|
838 gas=yes
|
|
839 extra_options="${extra_options} cris/elf.opt"
|
|
840 ;;
|
|
841 cris-*-elf | cris-*-none)
|
|
842 tm_file="dbxelf.h elfos.h ${tm_file}"
|
|
843 tmake_file="cris/t-cris cris/t-elfmulti"
|
|
844 gas=yes
|
|
845 extra_options="${extra_options} cris/elf.opt"
|
|
846 ;;
|
|
847 crisv32-*-linux* | cris-*-linux*)
|
|
848 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} linux.h cris/linux.h"
|
|
849 # We need to avoid using t-linux, so override default tmake_file
|
|
850 tmake_file="cris/t-cris t-slibgcc-elf-ver cris/t-linux"
|
|
851 extra_options="${extra_options} cris/linux.opt"
|
|
852 case $target in
|
|
853 cris-*-*)
|
|
854 target_cpu_default=10
|
|
855 ;;
|
|
856 crisv32-*-*)
|
|
857 target_cpu_default=32
|
|
858 ;;
|
|
859 esac
|
|
860 ;;
|
|
861 crx-*-elf)
|
|
862 tm_file="elfos.h ${tm_file}"
|
|
863 extra_parts="crtbegin.o crtend.o"
|
|
864 use_collect2=no
|
|
865 ;;
|
|
866 fr30-*-elf)
|
|
867 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
868 tmake_file=fr30/t-fr30
|
|
869 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
|
|
870 ;;
|
|
871 frv-*-elf)
|
|
872 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} frv/frv-abi.h"
|
|
873 tmake_file=frv/t-frv
|
|
874 ;;
|
|
875 frv-*-*linux*)
|
|
876 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} \
|
|
877 linux.h frv/linux.h frv/frv-abi.h"
|
|
878 tmake_file="${tmake_file} frv/t-frv frv/t-linux"
|
|
879 ;;
|
|
880 h8300-*-rtems*)
|
|
881 tmake_file="h8300/t-h8300 h8300/t-elf t-rtems h8300/t-rtems"
|
|
882 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h h8300/rtems.h rtems.h"
|
|
883 ;;
|
|
884 h8300-*-elf*)
|
|
885 tmake_file="h8300/t-h8300 h8300/t-elf"
|
|
886 tm_file="h8300/h8300.h dbxelf.h elfos.h h8300/elf.h"
|
|
887 ;;
|
|
888 h8300-*-*)
|
|
889 tm_file="h8300/h8300.h dbxcoff.h h8300/coff.h"
|
|
890 ;;
|
|
891 hppa*64*-*-linux*)
|
|
892 target_cpu_default="MASK_PA_11|MASK_PA_20"
|
|
893 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h svr4.h linux.h \
|
|
894 pa/pa-linux.h pa/pa64-regs.h pa/pa-64.h pa/pa64-linux.h"
|
|
895 tmake_file="${tmake_file} pa/t-linux64"
|
|
896 gas=yes gnu_ld=yes
|
|
897 need_64bit_hwint=yes
|
|
898 ;;
|
|
899 hppa*-*-linux*)
|
|
900 target_cpu_default="MASK_PA_11|MASK_NO_SPACE_REGS"
|
|
901 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h pa/pa-linux.h \
|
|
902 pa/pa32-regs.h pa/pa32-linux.h"
|
|
903 tmake_file="${tmake_file} pa/t-linux"
|
|
904 # Set the libgcc version number
|
|
905 if test x$sjlj = x1; then
|
|
906 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
|
|
907 else
|
|
908 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
|
|
909 fi
|
|
910 ;;
|
|
911 # port not yet contributed.
|
|
912 #hppa*-*-openbsd*)
|
|
913 # target_cpu_default="MASK_PA_11"
|
|
914 # ;;
|
|
915 hppa[12]*-*-hpux10*)
|
|
916 case ${target} in
|
|
917 hppa1.1-*-* | hppa2*-*-*)
|
|
918 target_cpu_default="MASK_PA_11"
|
|
919 ;;
|
|
920 esac
|
|
921 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
|
|
922 pa/pa-hpux.h pa/pa-hpux10.h"
|
|
923 extra_options="${extra_options} pa/pa-hpux.opt"
|
|
924 case ${target} in
|
|
925 *-*-hpux10.[1-9]*)
|
|
926 tm_file="${tm_file} pa/pa-hpux1010.h"
|
|
927 extra_options="${extra_options} pa/pa-hpux1010.opt"
|
|
928 ;;
|
|
929 esac
|
|
930 tmake_file="pa/t-pa-hpux10 pa/t-pa-hpux pa/t-hpux-shlib"
|
|
931 case ${enable_threads} in
|
|
932 "")
|
|
933 if test x$have_pthread_h = xyes ; then
|
|
934 tmake_file="${tmake_file} pa/t-dce-thr"
|
|
935 fi
|
|
936 ;;
|
|
937 yes | dce)
|
|
938 tmake_file="${tmake_file} pa/t-dce-thr"
|
|
939 ;;
|
|
940 esac
|
|
941 # Set the libgcc version number
|
|
942 if test x$sjlj = x1; then
|
|
943 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
|
|
944 else
|
|
945 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
|
|
946 fi
|
|
947 use_collect2=yes
|
|
948 gas=yes
|
|
949 ;;
|
|
950 hppa*64*-*-hpux11*)
|
|
951 target_cpu_default="MASK_PA_11|MASK_PA_20"
|
|
952 if test x$gnu_ld = xyes
|
|
953 then
|
|
954 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
|
|
955 fi
|
|
956 tm_file="pa/pa64-start.h ${tm_file} dbxelf.h elfos.h \
|
|
957 pa/pa64-regs.h pa/pa-hpux.h pa/pa-hpux1010.h \
|
|
958 pa/pa-hpux11.h"
|
|
959 case ${target} in
|
|
960 *-*-hpux11.[1-9]*)
|
|
961 tm_file="${tm_file} pa/pa-hpux1111.h pa/pa-64.h pa/pa64-hpux.h"
|
|
962 extra_options="${extra_options} pa/pa-hpux1111.opt"
|
|
963 ;;
|
|
964 *)
|
|
965 tm_file="${tm_file} pa/pa-64.h pa/pa64-hpux.h"
|
|
966 ;;
|
|
967 esac
|
|
968 extra_options="${extra_options} pa/pa-hpux.opt \
|
|
969 pa/pa-hpux1010.opt pa/pa64-hpux.opt"
|
|
970 need_64bit_hwint=yes
|
|
971 tmake_file="pa/t-pa64 pa/t-pa-hpux pa/t-hpux-shlib"
|
|
972 # Set the libgcc version number
|
|
973 if test x$sjlj = x1; then
|
|
974 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
|
|
975 else
|
|
976 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
|
|
977 fi
|
|
978 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtbeginT.o \
|
|
979 libgcc_stub.a"
|
|
980 case x${enable_threads} in
|
|
981 x | xyes | xposix )
|
|
982 thread_file=posix
|
|
983 ;;
|
|
984 esac
|
|
985 gas=yes
|
|
986 ;;
|
|
987 hppa[12]*-*-hpux11*)
|
|
988 case ${target} in
|
|
989 hppa1.1-*-* | hppa2*-*-*)
|
|
990 target_cpu_default="MASK_PA_11"
|
|
991 ;;
|
|
992 esac
|
|
993 tm_file="${tm_file} pa/pa32-regs.h dbxelf.h pa/som.h \
|
|
994 pa/pa-hpux.h pa/pa-hpux1010.h pa/pa-hpux11.h"
|
|
995 extra_options="${extra_options} pa/pa-hpux.opt pa/pa-hpux1010.opt"
|
|
996 case ${target} in
|
|
997 *-*-hpux11.[1-9]*)
|
|
998 tm_file="${tm_file} pa/pa-hpux1111.h"
|
|
999 extra_options="${extra_options} pa/pa-hpux1111.opt"
|
|
1000 ;;
|
|
1001 esac
|
|
1002 tmake_file="pa/t-pa-hpux11 pa/t-pa-hpux pa/t-hpux-shlib"
|
|
1003 # Set the libgcc version number
|
|
1004 if test x$sjlj = x1; then
|
|
1005 tmake_file="$tmake_file pa/t-slibgcc-sjlj-ver"
|
|
1006 else
|
|
1007 tmake_file="$tmake_file pa/t-slibgcc-dwarf-ver"
|
|
1008 fi
|
|
1009 case x${enable_threads} in
|
|
1010 x | xyes | xposix )
|
|
1011 thread_file=posix
|
|
1012 ;;
|
|
1013 esac
|
|
1014 use_collect2=yes
|
|
1015 gas=yes
|
|
1016 ;;
|
|
1017 i[34567]86-*-darwin*)
|
|
1018 need_64bit_hwint=yes
|
|
1019
|
|
1020 # This is so that '.../configure && make' doesn't fail due to
|
|
1021 # config.guess deciding that the configuration is i386-*-darwin* and
|
|
1022 # then this file using that to set --with-cpu=i386 which has no -m64
|
|
1023 # support.
|
|
1024 with_cpu=${with_cpu:-generic}
|
|
1025 tmake_file="${tmake_file} i386/t-crtpc i386/t-crtfm"
|
|
1026 ;;
|
|
1027 x86_64-*-darwin*)
|
|
1028 with_cpu=${with_cpu:-generic}
|
|
1029 tmake_file="${tmake_file} t-darwin ${cpu_type}/t-darwin64 t-slibgcc-darwin i386/t-crtpc i386/t-crtfm"
|
|
1030 tm_file="${tm_file} ${cpu_type}/darwin64.h"
|
|
1031 ;;
|
|
1032 i[34567]86-*-elf*)
|
|
1033 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h"
|
|
1034 tmake_file="${tmake_file} i386/t-i386elf t-svr4"
|
|
1035 ;;
|
|
1036 x86_64-*-elf*)
|
|
1037 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/x86-64.h"
|
|
1038 tmake_file="${tmake_file} i386/t-i386elf t-svr4"
|
|
1039 ;;
|
|
1040 i[34567]86-*-aout*)
|
|
1041 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h i386/i386-aout.h"
|
|
1042 ;;
|
|
1043 i[34567]86-*-freebsd*)
|
|
1044 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h ${fbsd_tm_file} i386/freebsd.h"
|
|
1045 ;;
|
|
1046 x86_64-*-freebsd*)
|
|
1047 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"
|
|
1048 tmake_file="${tmake_file} i386/t-crtstuff"
|
|
1049 ;;
|
|
1050 i[34567]86-*-netbsdelf*)
|
|
1051 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h netbsd.h netbsd-elf.h i386/netbsd-elf.h"
|
|
1052 ;;
|
|
1053 i[34567]86-*-netbsd*)
|
|
1054 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h netbsd.h netbsd-aout.h i386/netbsd.h"
|
|
1055 tmake_file="${tmake_file} t-netbsd"
|
|
1056 extra_parts=""
|
|
1057 use_collect2=yes
|
|
1058 ;;
|
|
1059 x86_64-*-netbsd*)
|
|
1060 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"
|
|
1061 tmake_file="${tmake_file} i386/t-crtstuff"
|
|
1062 ;;
|
|
1063 i[34567]86-*-openbsd2.*|i[34567]86-*openbsd3.[0123])
|
|
1064 tm_file="i386/i386.h i386/unix.h i386/bsd.h i386/gas.h i386/gstabs.h openbsd-oldgas.h openbsd.h i386/openbsd.h"
|
|
1065 # needed to unconfuse gdb
|
|
1066 tmake_file="${tmake_file} t-libc-ok t-openbsd i386/t-openbsd"
|
|
1067 # we need collect2 until our bug is fixed...
|
|
1068 use_collect2=yes
|
|
1069 ;;
|
|
1070 i[34567]86-*-openbsd*)
|
|
1071 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h"
|
|
1072 tm_file="${tm_file} openbsd.h i386/openbsdelf.h"
|
|
1073 gas=yes
|
|
1074 gnu_ld=yes
|
|
1075 ;;
|
|
1076 i[34567]86-*-coff*)
|
|
1077 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/i386-coff.h"
|
|
1078 ;;
|
|
1079 i[34567]86-*-linux* | i[34567]86-*-kfreebsd*-gnu | i[34567]86-*-knetbsd*-gnu | i[34567]86-*-gnu* | i[34567]86-*-kopensolaris*-gnu)
|
|
1080 # Intel 80386's running GNU/*
|
|
1081 # with ELF format using glibc 2
|
|
1082 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h"
|
|
1083 case ${target} in
|
|
1084 i[34567]86-*-linux*)
|
|
1085 if test x$enable_targets = xall; then
|
|
1086 tm_file="${tm_file} i386/x86-64.h i386/linux64.h"
|
|
1087 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
|
|
1088 tmake_file="${tmake_file} i386/t-linux64"
|
|
1089 need_64bit_hwint=yes
|
|
1090 case X"${with_cpu}" in
|
|
1091 Xgeneric|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
|
|
1092 ;;
|
|
1093 X)
|
|
1094 if test x$with_cpu_64 = x; then
|
|
1095 with_cpu_64=generic
|
|
1096 fi
|
|
1097 ;;
|
|
1098 *)
|
|
1099 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
|
|
1100 echo "generic core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
|
|
1101 exit 1
|
|
1102 ;;
|
|
1103 esac
|
|
1104 else
|
|
1105 tm_file="${tm_file} i386/linux.h"
|
|
1106 fi
|
|
1107 ;;
|
|
1108 i[34567]86-*-knetbsd*-gnu) tm_file="${tm_file} i386/linux.h knetbsd-gnu.h i386/knetbsd-gnu.h" ;;
|
|
1109 i[34567]86-*-kfreebsd*-gnu) tm_file="${tm_file} i386/linux.h kfreebsd-gnu.h i386/kfreebsd-gnu.h" ;;
|
|
1110 i[34567]86-*-kopensolaris*-gnu) tm_file="${tm_file} i386/linux.h kopensolaris-gnu.h i386/kopensolaris-gnu.h" ;;
|
|
1111 i[34567]86-*-gnu*) tm_file="$tm_file i386/linux.h gnu.h i386/gnu.h";;
|
|
1112 esac
|
|
1113 tmake_file="${tmake_file} i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
|
|
1114 ;;
|
|
1115 x86_64-*-linux* | x86_64-*-kfreebsd*-gnu | x86_64-*-knetbsd*-gnu)
|
|
1116 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h linux.h \
|
|
1117 i386/x86-64.h i386/linux64.h"
|
|
1118 case ${target} in
|
|
1119 x86_64-*-kfreebsd*-gnu) tm_file="${tm_file} kfreebsd-gnu.h" ;;
|
|
1120 x86_64-*-knetbsd*-gnu) tm_file="${tm_file} knetbsd-gnu.h" ;;
|
|
1121 esac
|
|
1122 tmake_file="${tmake_file} i386/t-linux64 i386/t-crtstuff i386/t-crtpc i386/t-crtfm t-dfprules"
|
|
1123 ;;
|
|
1124 i[34567]86-pc-msdosdjgpp*)
|
|
1125 xm_file=i386/xm-djgpp.h
|
|
1126 tm_file="dbxcoff.h ${tm_file} i386/unix.h i386/bsd.h i386/gas.h i386/djgpp.h"
|
|
1127 tmake_file="${tmake_file} i386/t-djgpp"
|
|
1128 extra_options="${extra_options} i386/djgpp.opt"
|
|
1129 gnu_ld=yes
|
|
1130 gas=yes
|
|
1131 ;;
|
|
1132 i[34567]86-*-lynxos*)
|
|
1133 xm_defines=POSIX
|
|
1134 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/lynx.h lynx.h"
|
|
1135 tmake_file="${tmake_file} i386/t-crtstuff t-lynx"
|
|
1136 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
|
|
1137 extra_options="${extra_options} lynx.opt"
|
|
1138 thread_file=lynx
|
|
1139 gnu_ld=yes
|
|
1140 gas=yes
|
|
1141 ;;
|
|
1142 i[3456x]86-*-netware*)
|
|
1143 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h tm-dwarf2.h i386/netware.h"
|
|
1144 tmake_file="${tmake_file} i386/t-netware"
|
|
1145 extra_objs=netware.o
|
|
1146 case /${with_ld} in
|
|
1147 */nwld)
|
|
1148 extra_objs="$extra_objs nwld.o"
|
|
1149 tm_file="${tm_file} i386/nwld.h"
|
|
1150 tmake_file="${tmake_file} i386/t-nwld"
|
|
1151 extra_parts="crt0.o libgcc.def libc.def libcpre.def posixpre.def"
|
|
1152 ;;
|
|
1153 esac
|
|
1154 case x${enable_threads} in
|
|
1155 x | xyes | xposix) thread_file='posix';;
|
|
1156 xnks) thread_file='nks';;
|
|
1157 xno) ;;
|
|
1158 *) echo 'Unknown thread configuration for NetWare' >&2; exit 1;;
|
|
1159 esac
|
|
1160 ;;
|
|
1161 i[34567]86-*-nto-qnx*)
|
|
1162 tm_file="${tm_file} i386/att.h dbxelf.h tm-dwarf2.h elfos.h svr4.h i386/unix.h i386/nto.h"
|
|
1163 tmake_file="${tmake_file} i386/t-nto"
|
|
1164 gnu_ld=yes
|
|
1165 gas=yes
|
|
1166 ;;
|
|
1167 i[34567]86-*-rtems*)
|
|
1168 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h i386/i386elf.h i386/rtemself.h rtems.h"
|
|
1169 extra_parts="crtbegin.o crtend.o crti.o crtn.o"
|
|
1170 tmake_file="${tmake_file} i386/t-rtems-i386 i386/t-crtstuff t-rtems"
|
|
1171 ;;
|
|
1172 i[34567]86-*-solaris2*)
|
|
1173 tm_file="${tm_file} i386/unix.h i386/att.h dbxelf.h elfos.h svr4.h i386/sysv4.h sol2.h"
|
|
1174 case ${target} in
|
|
1175 *-*-solaris2.1[0-9]*)
|
|
1176 tm_file="${tm_file} sol2-10.h"
|
|
1177 ;;
|
|
1178 esac
|
|
1179 tm_file="${tm_file} i386/sol2.h"
|
|
1180 tmake_file="${tmake_file} t-sol2 t-svr4"
|
|
1181 c_target_objs="${c_target_objs} sol2-c.o"
|
|
1182 cxx_target_objs="${cxx_target_objs} sol2-c.o"
|
|
1183 extra_objs="sol2.o"
|
|
1184 tm_p_file="${tm_p_file} sol2-protos.h"
|
|
1185 if test x$gnu_ld = xyes; then
|
|
1186 tmake_file="$tmake_file t-slibgcc-elf-ver"
|
|
1187 tm_defines="${tm_defines} TARGET_GNU_LD=1"
|
|
1188 else
|
|
1189 tmake_file="$tmake_file t-slibgcc-sld"
|
|
1190 fi
|
|
1191 if test x$gas = xyes; then
|
|
1192 tm_file="usegas.h ${tm_file}"
|
|
1193 fi
|
|
1194 tm_file="$tm_file tm-dwarf2.h"
|
|
1195 case ${target} in
|
|
1196 *-*-solaris2.1[0-9]*)
|
|
1197 tm_file="${tm_file} i386/x86-64.h i386/sol2-10.h"
|
|
1198 tm_defines="${tm_defines} TARGET_BI_ARCH=1"
|
|
1199 tmake_file="$tmake_file i386/t-sol2-10"
|
|
1200 # i386/t-crtstuff only affects libgcc. Its inclusion
|
|
1201 # depends on a runtime test and is thus performed in
|
|
1202 # libgcc/configure.ac instead.
|
|
1203 need_64bit_hwint=yes
|
|
1204 case X"${with_cpu}" in
|
|
1205 Xgeneric|Xcore2|Xnocona|Xx86-64|Xamdfam10|Xbarcelona|Xk8|Xopteron|Xathlon64|Xathlon-fx)
|
|
1206 ;;
|
|
1207 X)
|
|
1208 if test x$with_cpu_64 = x; then
|
|
1209 with_cpu_64=generic
|
|
1210 fi
|
|
1211 ;;
|
|
1212 *)
|
|
1213 echo "Unsupported CPU used in --with-cpu=$with_cpu, supported values:" 1>&2
|
|
1214 echo "generic core2 nocona x86-64 amdfam10 barcelona k8 opteron athlon64 athlon-fx" 1>&2
|
|
1215 exit 1
|
|
1216 ;;
|
|
1217 esac
|
|
1218 ;;
|
|
1219 esac
|
|
1220 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
|
|
1221 "":yes:* | yes:yes:* )
|
|
1222 thread_file=posix
|
|
1223 ;;
|
|
1224 "":*:yes | yes:*:yes )
|
|
1225 thread_file=solaris
|
|
1226 ;;
|
|
1227 esac
|
|
1228 ;;
|
|
1229 i[4567]86-wrs-vxworks|i[4567]86-wrs-vxworksae)
|
|
1230 tm_file="${tm_file} i386/unix.h i386/att.h elfos.h svr4.h vx-common.h"
|
|
1231 case ${target} in
|
|
1232 *-vxworksae*)
|
|
1233 tm_file="${tm_file} vxworksae.h i386/vx-common.h i386/vxworksae.h"
|
|
1234 tmake_file="${tmake_file} i386/t-vxworks i386/t-vxworksae"
|
|
1235 ;;
|
|
1236 *)
|
|
1237 tm_file="${tm_file} vxworks.h i386/vx-common.h i386/vxworks.h"
|
|
1238 tmake_file="${tmake_file} i386/t-vxworks"
|
|
1239 ;;
|
|
1240 esac
|
|
1241 ;;
|
|
1242 i[34567]86-*-pe | i[34567]86-*-cygwin*)
|
|
1243 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/cygwin.h"
|
|
1244 xm_file=i386/xm-cygwin.h
|
|
1245 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
|
|
1246 if test x$sjlj = x0; then
|
|
1247 tmake_eh_file="i386/t-dw2-eh"
|
|
1248 else
|
|
1249 tmake_eh_file="i386/t-sjlj-eh"
|
|
1250 fi
|
|
1251 tmake_file="${tmake_file} ${tmake_eh_file} i386/t-cygming i386/t-cygwin"
|
|
1252 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
|
|
1253 extra_options="${extra_options} i386/cygming.opt"
|
|
1254 extra_objs="winnt.o winnt-stubs.o"
|
|
1255 c_target_objs="${c_target_objs} cygwin2.o msformat-c.o"
|
|
1256 cxx_target_objs="${cxx_target_objs} cygwin2.o winnt-cxx.o msformat-c.o"
|
|
1257 extra_gcc_objs=cygwin1.o
|
|
1258 if test x$enable_threads = xyes; then
|
|
1259 thread_file='posix'
|
|
1260 fi
|
|
1261 ;;
|
|
1262 i[34567]86-*-mingw* | x86_64-*-mingw*)
|
|
1263 tm_file="${tm_file} i386/unix.h i386/bsd.h i386/gas.h dbxcoff.h i386/cygming.h i386/mingw32.h"
|
|
1264 xm_file=i386/xm-mingw32.h
|
|
1265 # This has to match the logic for DWARF2_UNWIND_INFO in gcc/config/i386/cygming.h
|
|
1266 if test x$sjlj = x0; then
|
|
1267 tmake_eh_file="i386/t-dw2-eh"
|
|
1268 else
|
|
1269 tmake_eh_file="i386/t-sjlj-eh"
|
|
1270 fi
|
|
1271 tmake_file="${tmake_file} ${tmake_eh_file} i386/t-cygming i386/t-mingw32"
|
|
1272 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
|
|
1273 extra_options="${extra_options} i386/cygming.opt i386/mingw.opt"
|
|
1274 extra_objs="winnt.o winnt-stubs.o"
|
|
1275 c_target_objs="${c_target_objs} msformat-c.o"
|
|
1276 cxx_target_objs="${cxx_target_objs} winnt-cxx.o msformat-c.o"
|
|
1277 default_use_cxa_atexit=yes
|
|
1278 case ${enable_threads} in
|
|
1279 "" | yes | win32)
|
|
1280 thread_file='win32'
|
|
1281 tmake_file="${tmake_file} i386/t-gthr-win32"
|
|
1282 ;;
|
|
1283 esac
|
|
1284 case ${target} in
|
|
1285 x86_64-*-mingw*)
|
|
1286 tmake_file="${tmake_file} i386/t-crtfm"
|
|
1287 ;;
|
|
1288 *)
|
|
1289 ;;
|
|
1290 esac
|
|
1291 case ${target} in
|
|
1292 *mingw32crt*)
|
|
1293 tm_file="${tm_file} i386/crtdll.h"
|
|
1294 ;;
|
|
1295 *mingw32msv* | *mingw*)
|
|
1296 ;;
|
|
1297 esac
|
|
1298 ;;
|
|
1299 i[34567]86-*-interix3*)
|
|
1300 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"
|
|
1301 tmake_file="${tmake_file} i386/t-interix"
|
|
1302 extra_objs=winnt.o
|
|
1303 target_gtfiles="\$(srcdir)/config/i386/winnt.c"
|
|
1304 if test x$enable_threads = xyes ; then
|
|
1305 thread_file='posix'
|
|
1306 fi
|
|
1307 if test x$stabs = xyes ; then
|
|
1308 tm_file="${tm_file} dbxcoff.h"
|
|
1309 fi
|
|
1310 ;;
|
|
1311 ia64*-*-elf*)
|
|
1312 tm_file="${tm_file} dbxelf.h elfos.h ia64/sysv4.h ia64/elf.h"
|
|
1313 tmake_file="ia64/t-ia64"
|
|
1314 target_cpu_default="0"
|
|
1315 if test x$gas = xyes
|
|
1316 then
|
|
1317 target_cpu_default="${target_cpu_default}|MASK_GNU_AS"
|
|
1318 fi
|
|
1319 if test x$gnu_ld = xyes
|
|
1320 then
|
|
1321 target_cpu_default="${target_cpu_default}|MASK_GNU_LD"
|
|
1322 fi
|
|
1323 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
|
|
1324 ;;
|
|
1325 ia64*-*-freebsd*)
|
|
1326 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} ia64/sysv4.h ia64/freebsd.h"
|
|
1327 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
|
|
1328 tmake_file="${tmake_file} ia64/t-ia64"
|
|
1329 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
|
|
1330 ;;
|
|
1331 ia64*-*-linux*)
|
|
1332 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h ia64/sysv4.h ia64/linux.h"
|
|
1333 tmake_file="${tmake_file} ia64/t-ia64 t-libunwind ia64/t-glibc"
|
|
1334 if test x$with_system_libunwind != xyes ; then
|
|
1335 tmake_file="${tmake_file} t-libunwind-elf ia64/t-glibc-libunwind"
|
|
1336 fi
|
|
1337 target_cpu_default="MASK_GNU_AS|MASK_GNU_LD"
|
|
1338 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o crtfastmath.o"
|
|
1339 ;;
|
|
1340 ia64*-*-hpux*)
|
|
1341 tm_file="${tm_file} dbxelf.h elfos.h svr4.h ia64/sysv4.h ia64/hpux.h"
|
|
1342 tmake_file="ia64/t-ia64 ia64/t-hpux"
|
|
1343 target_cpu_default="MASK_GNU_AS"
|
|
1344 case x$enable_threads in
|
|
1345 x | xyes | xposix )
|
|
1346 thread_file=posix
|
|
1347 ;;
|
|
1348 esac
|
|
1349 use_collect2=no
|
|
1350 c_target_objs="ia64-c.o"
|
|
1351 cxx_target_objs="ia64-c.o"
|
|
1352 extra_options="${extra_options} ia64/ilp32.opt"
|
|
1353 ;;
|
|
1354 iq2000*-*-elf*)
|
|
1355 tm_file="svr4.h elfos.h iq2000/iq2000.h"
|
|
1356 tmake_file=iq2000/t-iq2000
|
|
1357 out_file=iq2000/iq2000.c
|
|
1358 md_file=iq2000/iq2000.md
|
|
1359 ;;
|
|
1360 m32r-*-elf*)
|
|
1361 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
1362 extra_parts="crtinit.o crtfini.o"
|
|
1363 ;;
|
|
1364 m32rle-*-elf*)
|
|
1365 tm_file="dbxelf.h elfos.h svr4.h m32r/little.h ${tm_file}"
|
|
1366 extra_parts="crtinit.o crtfini.o m32rx/crtinit.o m32rx/crtfini.o"
|
|
1367 ;;
|
|
1368 m32r-*-rtems*)
|
|
1369 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} m32r/rtems.h rtems.h"
|
|
1370 tmake_file="m32r/t-m32r t-rtems"
|
|
1371 extra_parts="crtinit.o crtfini.o"
|
|
1372 ;;
|
|
1373 m32r-*-linux*)
|
|
1374 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} m32r/linux.h"
|
|
1375 # We override the tmake_file for linux -- why?
|
|
1376 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
|
|
1377 gnu_ld=yes
|
|
1378 if test x$enable_threads = xyes; then
|
|
1379 thread_file='posix'
|
|
1380 fi
|
|
1381 ;;
|
|
1382 m32rle-*-linux*)
|
|
1383 tm_file="dbxelf.h elfos.h svr4.h linux.h m32r/little.h ${tm_file} m32r/linux.h"
|
|
1384 # We override the tmake_file for linux -- why?
|
|
1385 tmake_file="t-slibgcc-elf-ver m32r/t-linux"
|
|
1386 gnu_ld=yes
|
|
1387 if test x$enable_threads = xyes; then
|
|
1388 thread_file='posix'
|
|
1389 fi
|
|
1390 ;;
|
|
1391 # m68hc11 and m68hc12 share the same machine description.
|
|
1392 m68hc11-*-*|m6811-*-*)
|
|
1393 tm_file="dbxelf.h elfos.h usegas.h m68hc11/m68hc11.h"
|
|
1394 tm_p_file="m68hc11/m68hc11-protos.h"
|
|
1395 md_file="m68hc11/m68hc11.md"
|
|
1396 out_file="m68hc11/m68hc11.c"
|
|
1397 tmake_file="m68hc11/t-m68hc11"
|
|
1398 ;;
|
|
1399 m68hc12-*-*|m6812-*-*)
|
|
1400 tm_file="m68hc11/m68hc12.h dbxelf.h elfos.h usegas.h m68hc11/m68hc11.h"
|
|
1401 tm_p_file="m68hc11/m68hc11-protos.h"
|
|
1402 md_file="m68hc11/m68hc11.md"
|
|
1403 out_file="m68hc11/m68hc11.c"
|
|
1404 tmake_file="m68hc11/t-m68hc11"
|
|
1405 extra_options="${extra_options} m68hc11/m68hc11.opt"
|
|
1406 ;;
|
|
1407 m68k-*-aout*)
|
|
1408 default_m68k_cpu=68020
|
|
1409 default_cf_cpu=5206
|
|
1410 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-mlibs"
|
|
1411 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h m68k/m68k-aout.h libgloss.h"
|
|
1412 ;;
|
|
1413 m68k-*-coff*)
|
|
1414 default_m68k_cpu=68020
|
|
1415 default_cf_cpu=5206
|
|
1416 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-mlibs"
|
|
1417 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1418 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kemb.h dbxcoff.h m68k/coff.h dbx.h"
|
|
1419 ;;
|
|
1420 m68k-*-elf* | fido-*-elf*)
|
|
1421 case ${target} in
|
|
1422 fido-*-elf*)
|
|
1423 # Check that $with_cpu makes sense.
|
|
1424 case $with_cpu in
|
|
1425 "" | "fidoa")
|
|
1426 ;;
|
|
1427 *)
|
|
1428 echo "Cannot accept --with-cpu=$with_cpu"
|
|
1429 exit 1
|
|
1430 ;;
|
|
1431 esac
|
|
1432 with_cpu=fidoa
|
|
1433 ;;
|
|
1434 *)
|
|
1435 default_m68k_cpu=68020
|
|
1436 default_cf_cpu=5206
|
|
1437 ;;
|
|
1438 esac
|
|
1439 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/m68kemb.h m68k/m68020-elf.h"
|
|
1440 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1441 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-m68kelf"
|
|
1442 # Add multilibs for targets other than fido.
|
|
1443 case ${target} in
|
|
1444 fido-*-elf*)
|
|
1445 ;;
|
|
1446 *)
|
|
1447 tmake_file="$tmake_file m68k/t-mlibs"
|
|
1448 ;;
|
|
1449 esac
|
|
1450 extra_parts="crtbegin.o crtend.o"
|
|
1451 ;;
|
|
1452 m68k*-*-netbsdelf*)
|
|
1453 default_m68k_cpu=68020
|
|
1454 default_cf_cpu=5475
|
|
1455 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h m68k/netbsd-elf.h"
|
|
1456 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1457 ;;
|
|
1458 m68k*-*-openbsd*)
|
|
1459 default_m68k_cpu=68020
|
|
1460 default_cf_cpu=5475
|
|
1461 # needed to unconfuse gdb
|
|
1462 tm_defines="${tm_defines} OBSD_OLD_GAS"
|
|
1463 tm_file="${tm_file} openbsd.h m68k/openbsd.h"
|
|
1464 tmake_file="t-libc-ok t-openbsd m68k/t-openbsd"
|
|
1465 # we need collect2 until our bug is fixed...
|
|
1466 use_collect2=yes
|
|
1467 ;;
|
|
1468 m68k-*-uclinuxoldabi*) # Motorola m68k/ColdFire running uClinux
|
|
1469 # with uClibc, using the original
|
|
1470 # m68k-elf-based ABI
|
|
1471 default_m68k_cpu=68020
|
|
1472 default_cf_cpu=5206
|
|
1473 tm_file="${tm_file} m68k/m68k-none.h m68k/m68kelf.h dbxelf.h elfos.h m68k/uclinux-oldabi.h"
|
|
1474 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1475 tmake_file="m68k/t-floatlib m68k/t-uclinux"
|
|
1476 ;;
|
|
1477 m68k-*-uclinux*) # Motorola m68k/ColdFire running uClinux
|
|
1478 # with uClibc, using the new GNU/Linux-style
|
|
1479 # ABI.
|
|
1480 default_m68k_cpu=68020
|
|
1481 default_cf_cpu=5206
|
|
1482 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h flat.h m68k/linux.h m68k/uclinux.h ./sysroot-suffix.h"
|
|
1483 tm_defines="${tm_defines} MOTOROLA=1 UCLIBC_DEFAULT=1"
|
|
1484 extra_options="${extra_options} linux.opt"
|
|
1485 tmake_file="m68k/t-floatlib m68k/t-uclinux m68k/t-mlibs"
|
|
1486 ;;
|
|
1487 m68k-*-linux*) # Motorola m68k's running GNU/Linux
|
|
1488 # with ELF format using glibc 2
|
|
1489 # aka the GNU/Linux C library 6.
|
|
1490 default_m68k_cpu=68020
|
|
1491 default_cf_cpu=5475
|
|
1492 with_arch=${with_arch:-m68k}
|
|
1493 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h m68k/linux.h ./sysroot-suffix.h"
|
|
1494 extra_options="${extra_options} m68k/ieee.opt"
|
|
1495 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1496 tmake_file="${tmake_file} m68k/t-floatlib m68k/t-linux m68k/t-mlibs"
|
|
1497 # if not configured with --enable-sjlj-exceptions, bump the
|
|
1498 # libgcc version number
|
|
1499 if test x$sjlj != x1; then
|
|
1500 tmake_file="$tmake_file m68k/t-slibgcc-elf-ver"
|
|
1501 fi
|
|
1502 ;;
|
|
1503 m68k-*-rtems*)
|
|
1504 default_m68k_cpu=68020
|
|
1505 default_cf_cpu=5206
|
|
1506 tmake_file="m68k/t-floatlib m68k/t-m68kbare m68k/t-crtstuff t-rtems m68k/t-rtems m68k/t-mlibs"
|
|
1507 tm_file="${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"
|
|
1508 tm_defines="${tm_defines} MOTOROLA=1"
|
|
1509 extra_parts="crtbegin.o crtend.o"
|
|
1510 ;;
|
|
1511 mcore-*-elf)
|
|
1512 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} mcore/mcore-elf.h"
|
|
1513 tmake_file=mcore/t-mcore
|
|
1514 inhibit_libc=true
|
|
1515 ;;
|
|
1516 mcore-*-pe*)
|
|
1517 tm_file="svr3.h dbxcoff.h ${tm_file} mcore/mcore-pe.h"
|
|
1518 tmake_file=mcore/t-mcore-pe
|
|
1519 inhibit_libc=true
|
|
1520 ;;
|
|
1521 mips-sgi-irix[56]*)
|
|
1522 tm_file="elfos.h ${tm_file} mips/iris.h"
|
|
1523 tmake_file="mips/t-iris mips/t-slibgcc-irix"
|
|
1524 target_cpu_default="MASK_ABICALLS"
|
|
1525 case ${target} in
|
|
1526 *-*-irix5*)
|
|
1527 tm_file="${tm_file} mips/iris5.h"
|
|
1528 ;;
|
|
1529
|
|
1530 *-*-irix6*)
|
|
1531 tm_file="${tm_file} mips/iris6.h"
|
|
1532 tmake_file="${tmake_file} mips/t-iris6"
|
|
1533 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_N32"
|
|
1534 ;;
|
|
1535 esac
|
|
1536 if test "x$stabs" = xyes
|
|
1537 then
|
|
1538 tm_file="${tm_file} dbx.h mips/dbxmdebug.h"
|
|
1539 fi
|
|
1540 if test "x$gnu_ld" = xyes
|
|
1541 then
|
|
1542 tm_defines="${tm_defines} IRIX_USING_GNU_LD"
|
|
1543 fi
|
|
1544 case ${enable_threads}:${have_pthread_h} in
|
|
1545 "":yes | yes:yes ) thread_file=posix ;;
|
|
1546 esac
|
|
1547 ;;
|
|
1548 mips*-*-netbsd*) # NetBSD/mips, either endian.
|
|
1549 target_cpu_default="MASK_ABICALLS"
|
|
1550 tm_file="elfos.h ${tm_file} mips/elf.h netbsd.h netbsd-elf.h mips/netbsd.h"
|
|
1551 ;;
|
|
1552 mips64*-*-linux* | mipsisa64*-*-linux*)
|
|
1553 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h mips/linux64.h"
|
|
1554 tmake_file="${tmake_file} mips/t-linux64 mips/t-libgcc-mips16"
|
|
1555 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_N32"
|
|
1556 case ${target} in
|
|
1557 mips64el-st-linux-gnu)
|
|
1558 tm_file="${tm_file} mips/st.h"
|
|
1559 tmake_file="${tmake_file} mips/t-st"
|
|
1560 ;;
|
|
1561 mips64octeon*-*-linux*)
|
|
1562 tm_defines="${tm_defines} MIPS_CPU_STRING_DEFAULT=\\\"octeon\\\""
|
|
1563 target_cpu_default=MASK_SOFT_FLOAT_ABI
|
|
1564 ;;
|
|
1565 mipsisa64r2*-*-linux*)
|
|
1566 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
|
|
1567 ;;
|
|
1568 esac
|
|
1569 gnu_ld=yes
|
|
1570 gas=yes
|
|
1571 test x$with_llsc != x || with_llsc=yes
|
|
1572 ;;
|
|
1573 mips*-*-linux*) # Linux MIPS, either endian.
|
|
1574 tm_file="dbxelf.h elfos.h svr4.h linux.h ${tm_file} mips/linux.h"
|
|
1575 tmake_file="${tmake_file} mips/t-libgcc-mips16"
|
|
1576 case ${target} in
|
|
1577 mipsisa32r2*)
|
|
1578 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
|
|
1579 ;;
|
|
1580 mipsisa32*)
|
|
1581 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
|
|
1582 esac
|
|
1583 test x$with_llsc != x || with_llsc=yes
|
|
1584 ;;
|
|
1585 mips*-*-openbsd*)
|
|
1586 tm_defines="${tm_defines} OBSD_HAS_DECLARE_FUNCTION_NAME OBSD_HAS_DECLARE_OBJECT OBSD_HAS_CORRECT_SPECS"
|
|
1587 target_cpu_default="MASK_ABICALLS"
|
|
1588 tm_file="mips/mips.h openbsd.h mips/openbsd.h mips/sdb.h"
|
|
1589 case ${target} in
|
|
1590 mips*el-*-openbsd*)
|
|
1591 tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=0";;
|
|
1592 *) tm_defines="${tm_defines} TARGET_ENDIAN_DEFAULT=MASK_BIG_ENDIAN";;
|
|
1593 esac
|
|
1594 ;;
|
|
1595 mips*-sde-elf*)
|
|
1596 tm_file="elfos.h ${tm_file} mips/elf.h mips/sde.h"
|
|
1597 tmake_file="mips/t-sde mips/t-libgcc-mips16"
|
|
1598 case "${with_newlib}" in
|
|
1599 yes)
|
|
1600 # newlib / libgloss.
|
|
1601 ;;
|
|
1602 *)
|
|
1603 # MIPS toolkit libraries.
|
|
1604 tm_file="$tm_file mips/sdemtk.h"
|
|
1605 tmake_file="$tmake_file mips/t-sdemtk"
|
|
1606 extra_options="$extra_options mips/sdemtk.opt"
|
|
1607 case ${enable_threads} in
|
|
1608 "" | yes | mipssde)
|
|
1609 thread_file='mipssde'
|
|
1610 ;;
|
|
1611 esac
|
|
1612 ;;
|
|
1613 esac
|
|
1614 case ${target} in
|
|
1615 mipsisa32r2*)
|
|
1616 tm_defines="MIPS_ISA_DEFAULT=33 MIPS_ABI_DEFAULT=ABI_32"
|
|
1617 ;;
|
|
1618 mipsisa32*)
|
|
1619 tm_defines="MIPS_ISA_DEFAULT=32 MIPS_ABI_DEFAULT=ABI_32"
|
|
1620 ;;
|
|
1621 mipsisa64r2*)
|
|
1622 tm_defines="MIPS_ISA_DEFAULT=65 MIPS_ABI_DEFAULT=ABI_N32"
|
|
1623 ;;
|
|
1624 mipsisa64*)
|
|
1625 tm_defines="MIPS_ISA_DEFAULT=64 MIPS_ABI_DEFAULT=ABI_N32"
|
|
1626 ;;
|
|
1627 esac
|
|
1628 ;;
|
|
1629 mipsisa32-*-elf* | mipsisa32el-*-elf* | \
|
|
1630 mipsisa32r2-*-elf* | mipsisa32r2el-*-elf* | \
|
|
1631 mipsisa64-*-elf* | mipsisa64el-*-elf* | \
|
|
1632 mipsisa64r2-*-elf* | mipsisa64r2el-*-elf*)
|
|
1633 tm_file="elfos.h ${tm_file} mips/elf.h"
|
|
1634 tmake_file="mips/t-isa3264 mips/t-libgcc-mips16"
|
|
1635 case ${target} in
|
|
1636 mipsisa32r2*)
|
|
1637 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=33"
|
|
1638 ;;
|
|
1639 mipsisa32*)
|
|
1640 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=32"
|
|
1641 ;;
|
|
1642 mipsisa64r2*)
|
|
1643 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=65"
|
|
1644 ;;
|
|
1645 mipsisa64*)
|
|
1646 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64"
|
|
1647 ;;
|
|
1648 esac
|
|
1649 case ${target} in
|
|
1650 mipsisa32*-*-elfoabi*)
|
|
1651 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_32"
|
|
1652 tm_file="${tm_file} mips/elfoabi.h"
|
|
1653 ;;
|
|
1654 mipsisa64*-*-elfoabi*)
|
|
1655 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_O64"
|
|
1656 tm_file="${tm_file} mips/elfoabi.h"
|
|
1657 ;;
|
|
1658 *-*-elf*)
|
|
1659 tm_defines="${tm_defines} MIPS_ABI_DEFAULT=ABI_EABI"
|
|
1660 ;;
|
|
1661 esac
|
|
1662 ;;
|
|
1663 mipsisa64sr71k-*-elf*)
|
|
1664 tm_file="elfos.h ${tm_file} mips/elf.h"
|
|
1665 tmake_file=mips/t-sr71k
|
|
1666 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
|
|
1667 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sr71000\\\" MIPS_ABI_DEFAULT=ABI_EABI"
|
|
1668 ;;
|
|
1669 mipsisa64sb1-*-elf* | mipsisa64sb1el-*-elf*)
|
|
1670 tm_file="elfos.h ${tm_file} mips/elf.h"
|
|
1671 tmake_file="mips/t-elf mips/t-libgcc-mips16 mips/t-sb1"
|
|
1672 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
|
|
1673 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=64 MIPS_CPU_STRING_DEFAULT=\\\"sb1\\\" MIPS_ABI_DEFAULT=ABI_O64"
|
|
1674 ;;
|
|
1675 mips-*-elf* | mipsel-*-elf*)
|
|
1676 tm_file="elfos.h ${tm_file} mips/elf.h"
|
|
1677 tmake_file="mips/t-elf mips/t-libgcc-mips16"
|
|
1678 ;;
|
|
1679 mips64-*-elf* | mips64el-*-elf*)
|
|
1680 tm_file="elfos.h ${tm_file} mips/elf.h"
|
|
1681 tmake_file="mips/t-elf mips/t-libgcc-mips16"
|
|
1682 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
|
|
1683 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
1684 ;;
|
|
1685 mips64vr-*-elf* | mips64vrel-*-elf*)
|
|
1686 tm_file="elfos.h ${tm_file} mips/vr.h mips/elf.h"
|
|
1687 tmake_file=mips/t-vr
|
|
1688 ;;
|
|
1689 mips64orion-*-elf* | mips64orionel-*-elf*)
|
|
1690 tm_file="elfos.h ${tm_file} mips/elforion.h mips/elf.h"
|
|
1691 tmake_file="mips/t-elf mips/t-libgcc-mips16"
|
|
1692 target_cpu_default="MASK_64BIT|MASK_FLOAT64"
|
|
1693 tm_defines="${tm_defines} MIPS_ISA_DEFAULT=3 MIPS_ABI_DEFAULT=ABI_O64"
|
|
1694 ;;
|
|
1695 mips*-*-rtems*)
|
|
1696 tm_file="elfos.h ${tm_file} mips/elf.h mips/rtems.h rtems.h"
|
|
1697 tmake_file="mips/t-elf mips/t-libgcc-mips16 t-rtems mips/t-rtems"
|
|
1698 ;;
|
|
1699 mips-wrs-vxworks)
|
|
1700 tm_file="elfos.h ${tm_file} svr4.h mips/elf.h vx-common.h vxworks.h mips/vxworks.h"
|
|
1701 tmake_file="${tmake_file} mips/t-vxworks"
|
|
1702 ;;
|
|
1703 mipstx39-*-elf* | mipstx39el-*-elf*)
|
|
1704 tm_file="elfos.h ${tm_file} mips/r3900.h mips/elf.h"
|
|
1705 tmake_file="mips/t-r3900 mips/t-libgcc-mips16"
|
|
1706 ;;
|
|
1707 mmix-knuth-mmixware)
|
|
1708 need_64bit_hwint=yes
|
|
1709 ;;
|
|
1710 mn10300-*-*)
|
|
1711 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
1712 if test x$stabs = xyes
|
|
1713 then
|
|
1714 tm_file="${tm_file} dbx.h"
|
|
1715 fi
|
|
1716 use_collect2=no
|
|
1717 ;;
|
|
1718 pdp11-*-bsd)
|
|
1719 tm_file="${tm_file} pdp11/2bsd.h"
|
|
1720 use_fixproto=yes
|
|
1721 ;;
|
|
1722 pdp11-*-*)
|
|
1723 ;;
|
|
1724 picochip-*)
|
|
1725 # Nothing special
|
|
1726 ;;
|
|
1727 # port not yet contributed
|
|
1728 #powerpc-*-openbsd*)
|
|
1729 # tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit "
|
|
1730 # extra_headers=
|
|
1731 # ;;
|
|
1732 powerpc64-*-linux*)
|
|
1733 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
|
|
1734 test x$with_cpu != x || cpu_is_64bit=yes
|
|
1735 test x$cpu_is_64bit != xyes || tm_file="${tm_file} rs6000/default64.h"
|
|
1736 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h"
|
|
1737 if test x${enable_secureplt} = xyes; then
|
|
1738 tm_file="rs6000/secureplt.h ${tm_file}"
|
|
1739 fi
|
|
1740 extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
|
|
1741 tmake_file="t-dfprules rs6000/t-fprules ${tmake_file} rs6000/t-ppccomm rs6000/t-linux64 rs6000/t-fprules-softfp soft-fp/t-softfp"
|
|
1742 ;;
|
|
1743 powerpc64-*-gnu*)
|
|
1744 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"
|
|
1745 extra_options="${extra_options} rs6000/sysv4.opt rs6000/linux64.opt"
|
|
1746 tmake_file="rs6000/t-fprules t-slibgcc-elf-ver t-gnu rs6000/t-linux64 rs6000/t-fprules-softfp soft-fp/t-softfp"
|
|
1747 ;;
|
|
1748 powerpc-*-darwin*)
|
|
1749 extra_options="${extra_options} rs6000/darwin.opt"
|
|
1750 extra_parts="crt2.o"
|
|
1751 case ${target} in
|
|
1752 *-darwin1[0-9]* | *-darwin[8-9]*)
|
|
1753 tmake_file="${tmake_file} rs6000/t-darwin8"
|
|
1754 tm_file="${tm_file} rs6000/darwin8.h"
|
|
1755 ;;
|
|
1756 *-darwin7*)
|
|
1757 tm_file="${tm_file} rs6000/darwin7.h"
|
|
1758 ;;
|
|
1759 *-darwin[0-6]*)
|
|
1760 ;;
|
|
1761 esac
|
|
1762 extra_headers=altivec.h
|
|
1763 ;;
|
|
1764 powerpc64-*-darwin*)
|
|
1765 tm_file="${tm_file} ${cpu_type}/darwin8.h ${cpu_type}/darwin64.h"
|
|
1766 extra_options="${extra_options} ${cpu_type}/darwin.opt"
|
|
1767 # We're omitting t-darwin8 to avoid building any multilibs
|
|
1768 extra_headers=altivec.h
|
|
1769 ;;
|
|
1770 powerpc*-*-freebsd*)
|
|
1771 tm_file="${tm_file} dbxelf.h elfos.h ${fbsd_tm_file} rs6000/sysv4.h rs6000/freebsd.h"
|
|
1772 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
|
|
1773 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1774 ;;
|
|
1775 powerpc-*-netbsd*)
|
|
1776 tm_file="${tm_file} dbxelf.h elfos.h netbsd.h netbsd-elf.h freebsd-spec.h rs6000/sysv4.h rs6000/netbsd.h"
|
|
1777 tmake_file="${tmake_file} rs6000/t-netbsd"
|
|
1778 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1779 ;;
|
|
1780 powerpc-*-eabispe*)
|
|
1781 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabispe.h"
|
|
1782 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1783 tmake_file="rs6000/t-spe rs6000/t-ppccomm"
|
|
1784 ;;
|
|
1785 powerpc-*-eabisimaltivec*)
|
|
1786 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h rs6000/eabialtivec.h"
|
|
1787 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1788 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
|
|
1789 ;;
|
|
1790 powerpc-*-eabisim*)
|
|
1791 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
|
|
1792 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1793 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1794 ;;
|
|
1795 powerpc-*-elf*)
|
|
1796 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h"
|
|
1797 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1798 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1799 ;;
|
|
1800 powerpc-*-eabialtivec*)
|
|
1801 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/eabialtivec.h"
|
|
1802 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1803 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcendian rs6000/t-ppccomm"
|
|
1804 ;;
|
|
1805 powerpc-xilinx-eabi*)
|
|
1806 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/singlefp.h"
|
|
1807 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1808 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1809 ;;
|
|
1810 powerpc-*-eabi*)
|
|
1811 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h"
|
|
1812 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1813 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1814 ;;
|
|
1815 powerpc-*-rtems*)
|
|
1816 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/e500.h rs6000/rtems.h rtems.h"
|
|
1817 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1818 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-rtems t-rtems rs6000/t-ppccomm"
|
|
1819 ;;
|
|
1820 powerpc-*-linux*altivec*)
|
|
1821 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxaltivec.h"
|
|
1822 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1823 tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
|
|
1824 ;;
|
|
1825 powerpc-*-linux*spe*)
|
|
1826 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/linuxspe.h rs6000/e500.h"
|
|
1827 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1828 tmake_file="t-dfprules rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
|
|
1829 ;;
|
|
1830 powerpc-*-linux*paired*)
|
|
1831 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/linux.h rs6000/750cl.h"
|
|
1832 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1833 tmake_file="rs6000/t-fprules rs6000/t-fprules-softfp soft-fp/t-softfp rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
|
|
1834 ;;
|
|
1835 powerpc-*-linux*)
|
|
1836 tm_file="${tm_file} dbxelf.h elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
|
|
1837 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1838 tmake_file="t-dfprules rs6000/t-fprules rs6000/t-ppcos ${tmake_file} rs6000/t-ppccomm"
|
|
1839 case ${enable_targets}:${cpu_is_64bit} in
|
|
1840 *powerpc64* | all:* | *:yes)
|
|
1841 if test x$cpu_is_64bit = xyes; then
|
|
1842 tm_file="${tm_file} rs6000/default64.h"
|
|
1843 fi
|
|
1844 tm_file="rs6000/biarch64.h ${tm_file} rs6000/linux64.h"
|
|
1845 tmake_file="$tmake_file rs6000/t-linux64"
|
|
1846 extra_options="${extra_options} rs6000/linux64.opt"
|
|
1847 ;;
|
|
1848 *)
|
|
1849 tm_file="${tm_file} rs6000/linux.h"
|
|
1850 ;;
|
|
1851 esac
|
|
1852 tmake_file="${tmake_file} rs6000/t-fprules-softfp soft-fp/t-softfp"
|
|
1853 if test x${enable_secureplt} = xyes; then
|
|
1854 tm_file="rs6000/secureplt.h ${tm_file}"
|
|
1855 fi
|
|
1856 ;;
|
|
1857 powerpc-*-gnu-gnualtivec*)
|
|
1858 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"
|
|
1859 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1860 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
|
|
1861 if test x$enable_threads = xyes; then
|
|
1862 thread_file='posix'
|
|
1863 fi
|
|
1864 ;;
|
|
1865 powerpc-*-gnu*)
|
|
1866 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"
|
|
1867 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcos t-slibgcc-elf-ver t-gnu rs6000/t-ppccomm"
|
|
1868 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1869 if test x$enable_threads = xyes; then
|
|
1870 thread_file='posix'
|
|
1871 fi
|
|
1872 ;;
|
|
1873 powerpc-wrs-vxworks|powerpc-wrs-vxworksae)
|
|
1874 tm_file="${tm_file} elfos.h svr4.h freebsd-spec.h rs6000/sysv4.h"
|
|
1875 tmake_file="${tmake_file} rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppccomm rs6000/t-vxworks"
|
|
1876 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1877 extra_headers=ppc-asm.h
|
|
1878 case ${target} in
|
|
1879 *-vxworksae*)
|
|
1880 tm_file="${tm_file} vx-common.h vxworksae.h rs6000/vxworks.h rs6000/e500.h rs6000/vxworksae.h"
|
|
1881 tmake_file="${tmake_file} rs6000/t-vxworksae"
|
|
1882 ;;
|
|
1883 *-vxworks*)
|
|
1884 tm_file="${tm_file} vx-common.h vxworks.h rs6000/vxworks.h rs6000/e500.h"
|
|
1885 ;;
|
|
1886 esac
|
|
1887 ;;
|
|
1888 powerpc-*-lynxos*)
|
|
1889 xm_defines=POSIX
|
|
1890 tm_file="${tm_file} dbxelf.h elfos.h rs6000/sysv4.h rs6000/lynx.h lynx.h"
|
|
1891 tmake_file="t-lynx rs6000/t-lynx"
|
|
1892 extra_options="${extra_options} rs6000/sysv4.opt lynx.opt"
|
|
1893 extra_parts="crtbegin.o crtbeginS.o crtend.o crtendS.o"
|
|
1894 extra_options="${extra_options} lynx.opt"
|
|
1895 thread_file=lynx
|
|
1896 gnu_ld=yes
|
|
1897 gas=yes
|
|
1898 ;;
|
|
1899 powerpcle-*-elf*)
|
|
1900 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h"
|
|
1901 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1902 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1903 ;;
|
|
1904 powerpcle-*-eabisim*)
|
|
1905 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h rs6000/eabisim.h"
|
|
1906 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1907 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1908 ;;
|
|
1909 powerpcle-*-eabi*)
|
|
1910 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/sysv4le.h rs6000/eabi.h rs6000/e500.h"
|
|
1911 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1912 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1913 ;;
|
|
1914 powerpc-xilinx-eabi*)
|
|
1915 tm_file="${tm_file} dbxelf.h elfos.h usegas.h svr4.h freebsd-spec.h rs6000/sysv4.h rs6000/eabi.h rs6000/singlefp.h rs6000/xfpu.h"
|
|
1916 extra_options="${extra_options} rs6000/sysv4.opt"
|
|
1917 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-ppcgas rs6000/t-ppccomm"
|
|
1918 ;;
|
|
1919 rs6000-ibm-aix4.[12]* | powerpc-ibm-aix4.[12]*)
|
|
1920 tm_file="${tm_file} rs6000/aix.h rs6000/aix41.h rs6000/xcoff.h"
|
|
1921 tmake_file="rs6000/t-fprules rs6000/t-fprules-fpbit rs6000/t-newas"
|
|
1922 extra_options="${extra_options} rs6000/aix41.opt"
|
|
1923 use_collect2=yes
|
|
1924 extra_headers=
|
|
1925 use_fixproto=yes
|
|
1926 ;;
|
|
1927 rs6000-ibm-aix4.[3456789]* | powerpc-ibm-aix4.[3456789]*)
|
|
1928 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix43.h rs6000/xcoff.h"
|
|
1929 tmake_file=rs6000/t-aix43
|
|
1930 extra_options="${extra_options} rs6000/aix64.opt"
|
|
1931 use_collect2=yes
|
|
1932 thread_file='aix'
|
|
1933 extra_headers=
|
|
1934 ;;
|
|
1935 rs6000-ibm-aix5.1.* | powerpc-ibm-aix5.1.*)
|
|
1936 tm_file="rs6000/biarch64.h ${tm_file} rs6000/aix.h rs6000/aix51.h rs6000/xcoff.h"
|
|
1937 extra_options="${extra_options} rs6000/aix64.opt"
|
|
1938 tmake_file=rs6000/t-aix43
|
|
1939 use_collect2=yes
|
|
1940 thread_file='aix'
|
|
1941 extra_headers=
|
|
1942 ;;
|
|
1943 rs6000-ibm-aix5.2.* | powerpc-ibm-aix5.2.*)
|
|
1944 tm_file="${tm_file} rs6000/aix.h rs6000/aix52.h rs6000/xcoff.h"
|
|
1945 tmake_file=rs6000/t-aix52
|
|
1946 extra_options="${extra_options} rs6000/aix64.opt"
|
|
1947 use_collect2=yes
|
|
1948 thread_file='aix'
|
|
1949 extra_headers=
|
|
1950 ;;
|
|
1951 rs6000-ibm-aix5.3.* | powerpc-ibm-aix5.3.*)
|
|
1952 tm_file="${tm_file} rs6000/aix.h rs6000/aix53.h rs6000/xcoff.h"
|
|
1953 tmake_file=rs6000/t-aix52
|
|
1954 extra_options="${extra_options} rs6000/aix64.opt"
|
|
1955 use_collect2=yes
|
|
1956 thread_file='aix'
|
|
1957 extra_headers=altivec.h
|
|
1958 ;;
|
|
1959 rs6000-ibm-aix[6789].* | powerpc-ibm-aix[6789].*)
|
|
1960 tm_file="${tm_file} rs6000/aix.h rs6000/aix61.h rs6000/xcoff.h"
|
|
1961 tmake_file=rs6000/t-aix52
|
|
1962 extra_options="${extra_options} rs6000/aix64.opt"
|
|
1963 use_collect2=yes
|
|
1964 thread_file='aix'
|
|
1965 extra_headers=altivec.h
|
|
1966 ;;
|
|
1967 s390-*-linux*)
|
|
1968 tm_file="s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
|
|
1969 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux"
|
|
1970 ;;
|
|
1971 s390x-*-linux*)
|
|
1972 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h linux.h s390/linux.h"
|
|
1973 tm_p_file=s390/s390-protos.h
|
|
1974 md_file=s390/s390.md
|
|
1975 extra_modes=s390/s390-modes.def
|
|
1976 out_file=s390/s390.c
|
|
1977 tmake_file="${tmake_file} t-dfprules s390/t-crtstuff s390/t-linux s390/t-linux64"
|
|
1978 ;;
|
|
1979 s390x-ibm-tpf*)
|
|
1980 tm_file="s390/s390x.h s390/s390.h dbxelf.h elfos.h svr4.h s390/tpf.h"
|
|
1981 tm_p_file=s390/s390-protos.h
|
|
1982 md_file=s390/s390.md
|
|
1983 extra_modes=s390/s390-modes.def
|
|
1984 out_file=s390/s390.c
|
|
1985 extra_parts="crtbeginS.o crtendS.o"
|
|
1986 tmake_file="s390/t-crtstuff s390/t-tpf"
|
|
1987 thread_file='tpf'
|
|
1988 extra_options="${extra_options} s390/tpf.opt"
|
|
1989 ;;
|
|
1990 score-*-elf)
|
|
1991 tm_file="dbxelf.h elfos.h score/elf.h score/score.h"
|
|
1992 tmake_file=score/t-score-elf
|
|
1993 extra_objs="score7.o score3.o"
|
|
1994 ;;
|
|
1995 sh-*-elf* | sh[12346l]*-*-elf* | \
|
|
1996 sh-*-symbianelf* | sh[12346l]*-*-symbianelf* | \
|
|
1997 sh-*-linux* | sh[2346lbe]*-*-linux* | \
|
|
1998 sh-*-netbsdelf* | shl*-*-netbsdelf* | sh5-*-netbsd* | sh5l*-*-netbsd* | \
|
|
1999 sh64-*-netbsd* | sh64l*-*-netbsd*)
|
|
2000 tmake_file="${tmake_file} sh/t-sh sh/t-elf"
|
|
2001 if test x${with_endian} = x; then
|
|
2002 case ${target} in
|
|
2003 sh[1234]*be-*-* | sh[1234]*eb-*-*) with_endian=big ;;
|
|
2004 shbe-*-* | sheb-*-*) with_endian=big,little ;;
|
|
2005 sh[1234]l* | sh[34]*-*-linux*) with_endian=little ;;
|
|
2006 shl* | sh64l* | sh*-*-linux* | \
|
|
2007 sh5l* | sh-superh-elf) with_endian=little,big ;;
|
|
2008 sh[1234]*-*-*) with_endian=big ;;
|
|
2009 *) with_endian=big,little ;;
|
|
2010 esac
|
|
2011 fi
|
|
2012 case ${with_endian} in
|
|
2013 big|little) tmake_file="${tmake_file} sh/t-1e" ;;
|
|
2014 big,little|little,big) ;;
|
|
2015 *) echo "with_endian=${with_endian} not supported."; exit 1 ;;
|
|
2016 esac
|
|
2017 case ${with_endian} in
|
|
2018 little*) tm_file="sh/little.h ${tm_file}" ;;
|
|
2019 esac
|
|
2020 tm_file="${tm_file} dbxelf.h elfos.h"
|
|
2021 case ${target} in
|
|
2022 sh*-*-netbsd*) ;;
|
|
2023 *) tm_file="${tm_file} svr4.h" ;;
|
|
2024 esac
|
|
2025 tm_file="${tm_file} sh/elf.h"
|
|
2026 case ${target} in
|
|
2027 sh*-*-linux*) tmake_file="${tmake_file} sh/t-linux"
|
|
2028 tm_file="${tm_file} linux.h sh/linux.h" ;;
|
|
2029 sh*-*-netbsd*) tm_file="${tm_file} netbsd.h netbsd-elf.h sh/netbsd-elf.h" ;;
|
|
2030 sh*-superh-elf) if test x$with_libgloss != xno; then
|
|
2031 with_libgloss=yes
|
|
2032 tm_file="${tm_file} sh/newlib.h"
|
|
2033 fi
|
|
2034 tm_file="${tm_file} sh/embed-elf.h sh/superh.h"
|
|
2035 tmake_file="${tmake_file} sh/t-superh"
|
|
2036 extra_options="${extra_options} sh/superh.opt" ;;
|
|
2037 *) if test x$with_newlib = xyes \
|
|
2038 && test x$with_libgloss = xyes; then
|
|
2039 tm_file="${tm_file} sh/newlib.h"
|
|
2040 fi
|
|
2041 tm_file="${tm_file} sh/embed-elf.h" ;;
|
|
2042 esac
|
|
2043 case ${target} in
|
|
2044 sh5*-*-netbsd*)
|
|
2045 # SHmedia, 32-bit ABI
|
|
2046 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd"
|
|
2047 ;;
|
|
2048 sh64*-netbsd*)
|
|
2049 # SHmedia, 64-bit ABI
|
|
2050 tmake_file="${tmake_file} sh/t-sh64 sh/t-netbsd sh/t-netbsd-sh5-64"
|
|
2051 ;;
|
|
2052 *-*-netbsd)
|
|
2053 tmake_file="${tmake_file} sh/t-netbsd"
|
|
2054 ;;
|
|
2055 sh64*-*-linux*)
|
|
2056 tmake_file="${tmake_file} sh/t-sh64 sh/t-linux64"
|
|
2057 tm_file="${tm_file} sh/sh64.h"
|
|
2058 extra_headers="shmedia.h ushmedia.h sshmedia.h"
|
|
2059 ;;
|
|
2060 sh64*)
|
|
2061 tmake_file="${tmake_file} sh/t-sh64"
|
|
2062 tm_file="${tm_file} sh/sh64.h"
|
|
2063 extra_headers="shmedia.h ushmedia.h sshmedia.h"
|
|
2064 ;;
|
|
2065 *-*-symbianelf*)
|
|
2066 tmake_file="sh/t-symbian"
|
|
2067 tm_file="sh/symbian-pre.h sh/little.h ${tm_file} sh/symbian-post.h"
|
|
2068 extra_objs="symbian.o"
|
|
2069 extra_parts="crt1.o crti.o crtn.o crtbegin.o crtend.o crtbeginS.o crtendS.o"
|
|
2070 ;;
|
|
2071 esac
|
|
2072 # sed el/eb endian suffixes away to avoid confusion with sh[23]e
|
|
2073 case `echo ${target} | sed 's/e[lb]-/-/'` in
|
|
2074 sh64*-*-netbsd*) sh_cpu_target=sh5-64media ;;
|
|
2075 sh64* | sh5*-*-netbsd*) sh_cpu_target=sh5-32media ;;
|
|
2076 sh4a_single_only*) sh_cpu_target=sh4a-single-only ;;
|
|
2077 sh4a_single*) sh_cpu_target=sh4a-single ;;
|
|
2078 sh4a_nofpu*) sh_cpu_target=sh4a-nofpu ;;
|
|
2079 sh4al) sh_cpu_target=sh4al ;;
|
|
2080 sh4a*) sh_cpu_target=sh4a ;;
|
|
2081 sh4_single_only*) sh_cpu_target=sh4-single-only ;;
|
|
2082 sh4_single*) sh_cpu_target=sh4-single ;;
|
|
2083 sh4_nofpu*) sh_cpu_target=sh4-nofpu ;;
|
|
2084 sh4* | sh-superh-*) sh_cpu_target=sh4 ;;
|
|
2085 sh3e*) sh_cpu_target=sh3e ;;
|
|
2086 sh*-*-netbsd* | sh3*) sh_cpu_target=sh3 ;;
|
|
2087 sh2a_single_only*) sh_cpu_target=sh2a-single-only ;;
|
|
2088 sh2a_single*) sh_cpu_target=sh2a-single ;;
|
|
2089 sh2a_nofpu*) sh_cpu_target=sh2a-nofpu ;;
|
|
2090 sh2a*) sh_cpu_target=sh2a ;;
|
|
2091 sh2e*) sh_cpu_target=sh2e ;;
|
|
2092 sh2*) sh_cpu_target=sh2 ;;
|
|
2093 *) sh_cpu_target=sh1 ;;
|
|
2094 esac
|
|
2095 # did the user say --without-fp ?
|
|
2096 if test x$with_fp = xno; then
|
|
2097 case ${sh_cpu_target} in
|
|
2098 sh5-*media) sh_cpu_target=${sh_cpu_target}-nofpu ;;
|
|
2099 sh4al | sh1) ;;
|
|
2100 sh4a* ) sh_cpu_target=sh4a-nofpu ;;
|
|
2101 sh4*) sh_cpu_target=sh4-nofpu ;;
|
|
2102 sh3*) sh_cpu_target=sh3 ;;
|
|
2103 sh2a*) sh_cpu_target=sh2a-nofpu ;;
|
|
2104 sh2*) sh_cpu_target=sh2 ;;
|
|
2105 *) echo --without-fp not available for $target: ignored
|
|
2106 esac
|
|
2107 tm_defines="$tm_defines STRICT_NOFPU=1"
|
|
2108 fi
|
|
2109 sh_cpu_default="`echo $with_cpu|sed s/^m/sh/|tr A-Z_ a-z-`"
|
|
2110 case $sh_cpu_default in
|
|
2111 sh5-64media-nofpu | sh5-64media | \
|
|
2112 sh5-32media-nofpu | sh5-32media | sh5-compact-nofpu | sh5-compact | \
|
|
2113 sh2a-single-only | sh2a-single | sh2a-nofpu | sh2a | \
|
|
2114 sh4a-single-only | sh4a-single | sh4a-nofpu | sh4a | sh4al | \
|
|
2115 sh4-single-only | sh4-single | sh4-nofpu | sh4 | sh4-300 | \
|
|
2116 sh3e | sh3 | sh2e | sh2 | sh1) ;;
|
|
2117 "") sh_cpu_default=${sh_cpu_target} ;;
|
|
2118 *) echo "with_cpu=$with_cpu not supported"; exit 1 ;;
|
|
2119 esac
|
|
2120 sh_multilibs=${with_multilib_list}
|
|
2121 if test x${sh_multilibs} = x ; then
|
|
2122 case ${target} in
|
|
2123 sh64-superh-linux* | \
|
|
2124 sh[1234]*) sh_multilibs=${sh_cpu_target} ;;
|
|
2125 sh64* | sh5*) sh_multilibs=m5-32media,m5-32media-nofpu,m5-compact,m5-compact-nofpu,m5-64media,m5-64media-nofpu ;;
|
|
2126 sh-superh-*) sh_multilibs=m4,m4-single,m4-single-only,m4-nofpu ;;
|
|
2127 sh*-*-linux*) sh_multilibs=m1,m3e,m4 ;;
|
|
2128 sh*-*-netbsd*) sh_multilibs=m3,m3e,m4 ;;
|
|
2129 *) sh_multilibs=m1,m2,m2e,m4,m4-single,m4-single-only,m2a,m2a-single ;;
|
|
2130 esac
|
|
2131 if test x$with_fp = xno; then
|
|
2132 sh_multilibs="`echo $sh_multilibs|sed -e s/m4/sh4-nofpu/ -e s/,m4-[^,]*//g -e s/,m[23]e// -e s/m2a,m2a-single/m2a-nofpu/ -e s/m5-..m....,//g`"
|
|
2133 fi
|
|
2134 fi
|
|
2135 target_cpu_default=SELECT_`echo ${sh_cpu_default}|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`
|
|
2136 tm_defines=${tm_defines}' SH_MULTILIB_CPU_DEFAULT=\"'`echo $sh_cpu_default|sed s/sh/m/`'\"'
|
|
2137 sh_multilibs=`echo $sh_multilibs,$sh_cpu_default | sed -e 's/[ ,/][ ,]*/ /g' -e 's/ $//' -e 's/^m/sh/' -e 's/ m/ sh/g' | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz-`
|
|
2138 for sh_multilib in ${sh_multilibs}; do
|
|
2139 case ${sh_multilib} in
|
|
2140 sh1 | sh2 | sh2e | sh3 | sh3e | \
|
|
2141 sh4 | sh4-single | sh4-single-only | sh4-nofpu | sh4-300 |\
|
|
2142 sh4a | sh4a-single | sh4a-single-only | sh4a-nofpu | sh4al | \
|
|
2143 sh2a | sh2a-single | sh2a-single-only | sh2a-nofpu | \
|
|
2144 sh5-64media | sh5-64media-nofpu | \
|
|
2145 sh5-32media | sh5-32media-nofpu | \
|
|
2146 sh5-compact | sh5-compact-nofpu)
|
|
2147 tmake_file="${tmake_file} sh/t-mlib-${sh_multilib}"
|
|
2148 tm_defines="$tm_defines SUPPORT_`echo $sh_multilib|tr abcdefghijklmnopqrstuvwxyz- ABCDEFGHIJKLMNOPQRSTUVWXYZ_`=1"
|
|
2149 ;;
|
|
2150 *)
|
|
2151 echo "with_multilib_list=${sh_multilib} not supported."
|
|
2152 exit 1
|
|
2153 ;;
|
|
2154 esac
|
|
2155 done
|
|
2156 if test x${enable_incomplete_targets} = xyes ; then
|
|
2157 tm_defines="$tm_defines SUPPORT_SH1=1 SUPPORT_SH2E=1 SUPPORT_SH4=1 SUPPORT_SH4_SINGLE=1 SUPPORT_SH2A=1 SUPPORT_SH2A_SINGLE=1 SUPPORT_SH5_32MEDIA=1 SUPPORT_SH5_32MEDIA_NOFPU=1 SUPPORT_SH5_64MEDIA=1 SUPPORT_SH5_64MEDIA_NOFPU=1"
|
|
2158 fi
|
|
2159 ;;
|
|
2160 sh-*-rtems*)
|
|
2161 tmake_file="sh/t-sh sh/t-elf t-rtems sh/t-rtems"
|
|
2162 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sh/elf.h sh/embed-elf.h sh/rtemself.h rtems.h"
|
|
2163 ;;
|
|
2164 sh-wrs-vxworks)
|
|
2165 tmake_file="$tmake_file sh/t-sh sh/t-elf sh/t-vxworks"
|
|
2166 tm_file="${tm_file} elfos.h svr4.h sh/elf.h sh/embed-elf.h vx-common.h vxworks.h sh/vxworks.h"
|
|
2167 ;;
|
|
2168 sh-*-*)
|
|
2169 tm_file="${tm_file} dbxcoff.h sh/coff.h"
|
|
2170 ;;
|
|
2171 sparc-*-netbsdelf*)
|
|
2172 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
|
|
2173 extra_options="${extra_options} sparc/long-double-switch.opt"
|
|
2174 ;;
|
|
2175 sparc64-*-openbsd*)
|
|
2176 tm_file="sparc/openbsd1-64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp64-elf.h openbsd.h sparc/openbsd64.h"
|
|
2177 extra_options="${extra_options} sparc/little-endian.opt"
|
|
2178 gas=yes gnu_ld=yes
|
|
2179 with_cpu=ultrasparc
|
|
2180 ;;
|
|
2181 sparc-*-elf*)
|
|
2182 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp-elf.h"
|
|
2183 tmake_file="sparc/t-elf sparc/t-crtfm"
|
|
2184 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
|
|
2185 ;;
|
|
2186 sparc-*-linux*) # SPARC's running GNU/Linux, libc6
|
|
2187 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h linux.h"
|
|
2188 extra_options="${extra_options} sparc/long-double-switch.opt"
|
|
2189 tmake_file="${tmake_file} sparc/t-linux"
|
|
2190 if test x$enable_targets = xall; then
|
|
2191 tm_file="sparc/biarch64.h ${tm_file} sparc/linux64.h"
|
|
2192 tmake_file="${tmake_file} sparc/t-linux64"
|
|
2193 else
|
|
2194 tm_file="${tm_file} sparc/linux.h"
|
|
2195 fi
|
|
2196 tmake_file="${tmake_file} sparc/t-crtfm"
|
|
2197 ;;
|
|
2198 sparc-*-rtems*)
|
|
2199 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp-elf.h sparc/rtemself.h rtems.h"
|
|
2200 tmake_file="sparc/t-elf sparc/t-crtfm t-rtems"
|
|
2201 extra_parts="crti.o crtn.o crtbegin.o crtend.o"
|
|
2202 ;;
|
|
2203 sparc64-*-solaris2* | sparcv9-*-solaris2*)
|
|
2204 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
|
|
2205 case ${target} in
|
|
2206 *-*-solaris2.1[0-9]*)
|
|
2207 tm_file="${tm_file} sol2-10.h"
|
|
2208 ;;
|
|
2209 esac
|
|
2210 tm_file="${tm_file} sparc/sol2.h sparc/sol2-64.h sparc/sol2-bi.h"
|
|
2211 if test x$gnu_ld = xyes; then
|
|
2212 tm_file="${tm_file} sparc/sol2-gld.h sparc/sol2-gld-bi.h"
|
|
2213 fi
|
|
2214 if test x$gas = xyes; then
|
|
2215 tm_file="${tm_file} sparc/sol2-gas.h sparc/sol2-gas-bi.h"
|
|
2216 fi
|
|
2217 tm_file="${tm_file} tm-dwarf2.h"
|
|
2218 tmake_file="t-sol2 sparc/t-sol2 sparc/t-sol2-64 sparc/t-crtfm"
|
|
2219 if test x$gnu_ld = xyes; then
|
|
2220 tmake_file="$tmake_file t-slibgcc-elf-ver"
|
|
2221 else
|
|
2222 tmake_file="$tmake_file t-slibgcc-sld"
|
|
2223 fi
|
|
2224 c_target_objs="sol2-c.o"
|
|
2225 cxx_target_objs="sol2-c.o"
|
|
2226 extra_objs="sol2.o"
|
|
2227 tm_p_file="${tm_p_file} sol2-protos.h"
|
|
2228 extra_parts="crt1.o crti.o crtn.o gcrt1.o crtbegin.o crtend.o"
|
|
2229 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
|
|
2230 "":yes:* | yes:yes:* ) thread_file=posix ;;
|
|
2231 "":*:yes | yes:*:yes ) thread_file=solaris ;;
|
|
2232 esac
|
|
2233 ;;
|
|
2234 sparc-*-solaris2*)
|
|
2235 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sol2.h"
|
|
2236 case ${target} in
|
|
2237 *-*-solaris2.1[0-9]*)
|
|
2238 tm_file="${tm_file} sol2-10.h"
|
|
2239 ;;
|
|
2240 esac
|
|
2241 tm_file="${tm_file} sparc/sol2.h"
|
|
2242 if test x$gnu_ld = xyes; then
|
|
2243 tm_file="${tm_file} sparc/sol2-gld.h"
|
|
2244 fi
|
|
2245 if test x$gas = xyes; then
|
|
2246 tm_file="${tm_file} sparc/sol2-gas.h"
|
|
2247 fi
|
|
2248 tmake_file="t-sol2 sparc/t-sol2 sparc/t-crtfm"
|
|
2249 if test x$gnu_ld = xyes; then
|
|
2250 tmake_file="$tmake_file t-slibgcc-elf-ver"
|
|
2251 else
|
|
2252 tmake_file="$tmake_file t-slibgcc-sld"
|
|
2253 fi
|
|
2254 tm_file="sparc/biarch64.h ${tm_file} sparc/sol2-bi.h"
|
|
2255 if test x$gnu_ld = xyes; then
|
|
2256 tm_file="${tm_file} sparc/sol2-gld-bi.h"
|
|
2257 fi
|
|
2258 if test x$gas = xyes; then
|
|
2259 tm_file="${tm_file} sparc/sol2-gas-bi.h"
|
|
2260 fi
|
|
2261 tm_file="${tm_file} tm-dwarf2.h"
|
|
2262 tmake_file="$tmake_file sparc/t-sol2-64"
|
|
2263 test x$with_cpu != x || with_cpu=v9
|
|
2264 c_target_objs="sol2-c.o"
|
|
2265 cxx_target_objs="sol2-c.o"
|
|
2266 extra_objs="sol2.o"
|
|
2267 tm_p_file="${tm_p_file} sol2-protos.h"
|
|
2268 extra_parts="crt1.o crti.o crtn.o gcrt1.o gmon.o crtbegin.o crtend.o"
|
|
2269 case ${enable_threads}:${have_pthread_h}:${have_thread_h} in
|
|
2270 "":yes:* | yes:yes:* )
|
|
2271 thread_file=posix
|
|
2272 ;;
|
|
2273 "":*:yes | yes:*:yes )
|
|
2274 thread_file=solaris
|
|
2275 ;;
|
|
2276 esac
|
|
2277 ;;
|
|
2278 sparc-wrs-vxworks)
|
|
2279 tm_file="${tm_file} elfos.h svr4.h sparc/sysv4.h vx-common.h vxworks.h sparc/vxworks.h"
|
|
2280 tmake_file="${tmake_file} sparc/t-vxworks"
|
|
2281 ;;
|
|
2282 sparc64-*-elf*)
|
|
2283 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h sparc/sp64-elf.h"
|
|
2284 extra_options="${extra_options} sparc/little-endian.opt"
|
|
2285 tmake_file="${tmake_file} sparc/t-crtfm"
|
|
2286 extra_parts="crtbegin.o crtend.o"
|
|
2287 ;;
|
|
2288 sparc64-*-freebsd*|ultrasparc-*-freebsd*)
|
|
2289 tm_file="${tm_file} ${fbsd_tm_file} dbxelf.h elfos.h sparc/sysv4.h sparc/freebsd.h"
|
|
2290 extra_options="${extra_options} sparc/long-double-switch.opt"
|
|
2291 tmake_file="${tmake_file} sparc/t-crtfm"
|
|
2292 case "x$with_cpu" in
|
|
2293 xultrasparc) ;;
|
|
2294 x) with_cpu=ultrasparc ;;
|
|
2295 *) echo "$with_cpu not supported for freebsd target"; exit 1 ;;
|
|
2296 esac
|
|
2297 ;;
|
|
2298 sparc64-*-linux*) # 64-bit SPARC's running GNU/Linux
|
|
2299 tm_file="sparc/biarch64.h ${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h linux.h sparc/linux64.h"
|
|
2300 extra_options="${extra_options} sparc/long-double-switch.opt"
|
|
2301 tmake_file="${tmake_file} sparc/t-linux sparc/t-linux64 sparc/t-crtfm"
|
|
2302 ;;
|
|
2303 sparc64-*-netbsd*)
|
|
2304 tm_file="sparc/biarch64.h ${tm_file}"
|
|
2305 tm_file="${tm_file} dbxelf.h elfos.h svr4.h sparc/sysv4.h netbsd.h netbsd-elf.h sparc/netbsd-elf.h"
|
|
2306 extra_options="${extra_options} sparc/long-double-switch.opt"
|
|
2307 tmake_file="${tmake_file} sparc/t-netbsd64"
|
|
2308 ;;
|
|
2309 spu-*-elf*)
|
|
2310 tm_file="dbxelf.h elfos.h spu/spu-elf.h spu/spu.h"
|
|
2311 tmake_file="spu/t-spu-elf"
|
|
2312 extra_headers="spu_intrinsics.h spu_internals.h vmx2spu.h spu_mfcio.h vec_types.h"
|
|
2313 extra_modes=spu/spu-modes.def
|
|
2314 c_target_objs="${c_target_objs} spu-c.o"
|
|
2315 cxx_target_objs="${cxx_target_objs} spu-c.o"
|
|
2316 ;;
|
|
2317 v850e1-*-*)
|
|
2318 target_cpu_default="TARGET_CPU_v850e1"
|
|
2319 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
|
|
2320 tm_p_file=v850/v850-protos.h
|
|
2321 tmake_file=v850/t-v850e
|
|
2322 md_file=v850/v850.md
|
|
2323 out_file=v850/v850.c
|
|
2324 extra_options="${extra_options} v850/v850.opt"
|
|
2325 if test x$stabs = xyes
|
|
2326 then
|
|
2327 tm_file="${tm_file} dbx.h"
|
|
2328 fi
|
|
2329 use_collect2=no
|
|
2330 c_target_objs="v850-c.o"
|
|
2331 cxx_target_objs="v850-c.o"
|
|
2332 ;;
|
|
2333 v850e-*-*)
|
|
2334 target_cpu_default="TARGET_CPU_v850e"
|
|
2335 tm_file="dbxelf.h elfos.h svr4.h v850/v850.h"
|
|
2336 tm_p_file=v850/v850-protos.h
|
|
2337 tmake_file=v850/t-v850e
|
|
2338 md_file=v850/v850.md
|
|
2339 out_file=v850/v850.c
|
|
2340 extra_options="${extra_options} v850/v850.opt"
|
|
2341 if test x$stabs = xyes
|
|
2342 then
|
|
2343 tm_file="${tm_file} dbx.h"
|
|
2344 fi
|
|
2345 use_collect2=no
|
|
2346 c_target_objs="v850-c.o"
|
|
2347 cxx_target_objs="v850-c.o"
|
|
2348 ;;
|
|
2349 v850-*-*)
|
|
2350 target_cpu_default="TARGET_CPU_generic"
|
|
2351 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
2352 tmake_file=v850/t-v850
|
|
2353 if test x$stabs = xyes
|
|
2354 then
|
|
2355 tm_file="${tm_file} dbx.h"
|
|
2356 fi
|
|
2357 use_collect2=no
|
|
2358 c_target_objs="v850-c.o"
|
|
2359 cxx_target_objs="v850-c.o"
|
|
2360 ;;
|
|
2361 vax-*-netbsdelf*)
|
|
2362 tm_file="${tm_file} elfos.h netbsd.h netbsd-elf.h vax/elf.h vax/netbsd-elf.h"
|
|
2363 ;;
|
|
2364 vax-*-netbsd*)
|
|
2365 tm_file="${tm_file} netbsd.h netbsd-aout.h vax/netbsd.h"
|
|
2366 tmake_file=t-netbsd
|
|
2367 extra_parts=""
|
|
2368 use_collect2=yes
|
|
2369 ;;
|
|
2370 vax-*-openbsd*)
|
|
2371 tm_file="vax/vax.h vax/openbsd1.h openbsd.h vax/openbsd.h"
|
|
2372 use_collect2=yes
|
|
2373 ;;
|
|
2374 xstormy16-*-elf)
|
|
2375 # For historical reasons, the target files omit the 'x'.
|
|
2376 tm_file="dbxelf.h elfos.h svr4.h stormy16/stormy16.h"
|
|
2377 tm_p_file=stormy16/stormy16-protos.h
|
|
2378 md_file=stormy16/stormy16.md
|
|
2379 out_file=stormy16/stormy16.c
|
|
2380 extra_options=stormy16/stormy16.opt
|
|
2381 tmake_file="stormy16/t-stormy16"
|
|
2382 extra_parts="crtbegin.o crtend.o"
|
|
2383 ;;
|
|
2384 xtensa*-*-elf*)
|
|
2385 tm_file="${tm_file} dbxelf.h elfos.h svr4.h xtensa/elf.h"
|
|
2386 tmake_file="xtensa/t-xtensa xtensa/t-elf"
|
|
2387 ;;
|
|
2388 xtensa*-*-linux*)
|
|
2389 tm_file="${tm_file} dbxelf.h elfos.h svr4.h linux.h xtensa/linux.h"
|
|
2390 tmake_file="${tmake_file} xtensa/t-xtensa xtensa/t-linux"
|
|
2391 ;;
|
|
2392 am33_2.0-*-linux*)
|
|
2393 tm_file="mn10300/mn10300.h dbxelf.h elfos.h linux.h mn10300/linux.h"
|
|
2394 tmake_file="${tmake_file} mn10300/t-linux"
|
|
2395 gas=yes gnu_ld=yes
|
|
2396 extra_parts="crtbegin.o crtend.o crtbeginS.o crtendS.o"
|
|
2397 use_collect2=no
|
|
2398 ;;
|
|
2399 m32c-*-rtems*)
|
|
2400 tm_file="dbxelf.h elfos.h svr4.h ${tm_file} m32c/rtems.h rtems.h"
|
|
2401 tmake_file="${tmake_file} t-rtems"
|
|
2402 c_target_objs="m32c-pragma.o"
|
|
2403 cxx_target_objs="m32c-pragma.o"
|
|
2404 ;;
|
|
2405 m32c-*-elf*)
|
|
2406 tm_file="dbxelf.h elfos.h svr4.h ${tm_file}"
|
|
2407 c_target_objs="m32c-pragma.o"
|
|
2408 cxx_target_objs="m32c-pragma.o"
|
|
2409 ;;
|
|
2410 *)
|
|
2411 echo "*** Configuration ${target} not supported" 1>&2
|
|
2412 exit 1
|
|
2413 ;;
|
|
2414 esac
|
|
2415
|
|
2416 case ${target} in
|
|
2417 i[34567]86-*-linux* | x86_64-*-linux*)
|
|
2418 tmake_file="${tmake_file} i386/t-pmm_malloc i386/t-i386"
|
|
2419 ;;
|
|
2420 i[34567]86-*-* | x86_64-*-*)
|
|
2421 tmake_file="${tmake_file} i386/t-gmm_malloc i386/t-i386"
|
|
2422 ;;
|
|
2423 esac
|
|
2424
|
|
2425 # Support for --with-cpu and related options (and a few unrelated options,
|
|
2426 # too).
|
|
2427 case ${with_cpu} in
|
|
2428 yes | no)
|
|
2429 echo "--with-cpu must be passed a value" 1>&2
|
|
2430 exit 1
|
|
2431 ;;
|
|
2432 esac
|
|
2433
|
|
2434 # If there is no $with_cpu option, try to infer one from ${target}.
|
|
2435 # This block sets nothing except for with_cpu.
|
|
2436 if test x$with_cpu = x ; then
|
|
2437 case ${target} in
|
|
2438 i386-*-*)
|
|
2439 with_cpu=i386
|
|
2440 ;;
|
|
2441 i486-*-*)
|
|
2442 with_cpu=i486
|
|
2443 ;;
|
|
2444 i586-*-*)
|
|
2445 case ${target_noncanonical} in
|
|
2446 k6_2-*)
|
|
2447 with_cpu=k6-2
|
|
2448 ;;
|
|
2449 k6_3-*)
|
|
2450 with_cpu=k6-3
|
|
2451 ;;
|
|
2452 k6-*)
|
|
2453 with_cpu=k6
|
|
2454 ;;
|
|
2455 pentium_mmx-*|winchip_c6-*|winchip2-*|c3-*)
|
|
2456 with_cpu=pentium-mmx
|
|
2457 ;;
|
|
2458 *)
|
|
2459 with_cpu=pentium
|
|
2460 ;;
|
|
2461 esac
|
|
2462 ;;
|
|
2463 i686-*-* | i786-*-*)
|
|
2464 case ${target_noncanonical} in
|
|
2465 amdfam10-*|barcelona-*)
|
|
2466 with_cpu=amdfam10
|
|
2467 ;;
|
|
2468 k8-*|opteron-*|athlon_64-*)
|
|
2469 with_cpu=k8
|
|
2470 ;;
|
|
2471 athlon_xp-*|athlon_mp-*|athlon_4-*)
|
|
2472 with_cpu=athlon-4
|
|
2473 ;;
|
|
2474 athlon_tbird-*|athlon-*)
|
|
2475 with_cpu=athlon
|
|
2476 ;;
|
|
2477 geode-*)
|
|
2478 with_cpu=geode
|
|
2479 ;;
|
|
2480 pentium2-*)
|
|
2481 with_cpu=pentium2
|
|
2482 ;;
|
|
2483 pentium3-*|pentium3m-*)
|
|
2484 with_cpu=pentium3
|
|
2485 ;;
|
|
2486 pentium4-*|pentium4m-*)
|
|
2487 with_cpu=pentium4
|
|
2488 ;;
|
|
2489 prescott-*)
|
|
2490 with_cpu=prescott
|
|
2491 ;;
|
|
2492 nocona-*)
|
|
2493 with_cpu=nocona
|
|
2494 ;;
|
|
2495 core2-*)
|
|
2496 with_cpu=core2
|
|
2497 ;;
|
|
2498 pentium_m-*)
|
|
2499 with_cpu=pentium-m
|
|
2500 ;;
|
|
2501 pentiumpro-*)
|
|
2502 with_cpu=pentiumpro
|
|
2503 ;;
|
|
2504 *)
|
|
2505 with_cpu=generic
|
|
2506 ;;
|
|
2507 esac
|
|
2508 ;;
|
|
2509 x86_64-*-*)
|
|
2510 case ${target_noncanonical} in
|
|
2511 amdfam10-*|barcelona-*)
|
|
2512 with_cpu=amdfam10
|
|
2513 ;;
|
|
2514 k8-*|opteron-*|athlon_64-*)
|
|
2515 with_cpu=k8
|
|
2516 ;;
|
|
2517 nocona-*)
|
|
2518 with_cpu=nocona
|
|
2519 ;;
|
|
2520 core2-*)
|
|
2521 with_cpu=core2
|
|
2522 ;;
|
|
2523 *)
|
|
2524 with_cpu=generic
|
|
2525 ;;
|
|
2526 esac
|
|
2527 ;;
|
|
2528 alphaev6[78]*-*-*)
|
|
2529 with_cpu=ev67
|
|
2530 ;;
|
|
2531 alphaev6*-*-*)
|
|
2532 with_cpu=ev6
|
|
2533 ;;
|
|
2534 alphapca56*-*-*)
|
|
2535 with_cpu=pca56
|
|
2536 ;;
|
|
2537 alphaev56*-*-*)
|
|
2538 with_cpu=ev56
|
|
2539 ;;
|
|
2540 alphaev5*-*-*)
|
|
2541 with_cpu=ev5
|
|
2542 ;;
|
|
2543 frv-*-*linux* | frv400-*-*linux*)
|
|
2544 with_cpu=fr400
|
|
2545 ;;
|
|
2546 frv550-*-*linux*)
|
|
2547 with_cpu=fr550
|
|
2548 ;;
|
|
2549 m68k*-*-*)
|
|
2550 case "$with_arch" in
|
|
2551 "cf")
|
|
2552 with_cpu=${default_cf_cpu}
|
|
2553 ;;
|
|
2554 "" | "m68k")
|
|
2555 with_cpu=m${default_m68k_cpu}
|
|
2556 ;;
|
|
2557 esac
|
|
2558 ;;
|
|
2559 mips*-*-vxworks)
|
|
2560 with_arch=mips2
|
|
2561 ;;
|
|
2562 sparc*-*-*)
|
|
2563 with_cpu="`echo ${target} | sed 's/-.*$//'`"
|
|
2564 ;;
|
|
2565 esac
|
|
2566
|
|
2567 # Avoid overriding --with-cpu-32 and --with-cpu-64 values.
|
|
2568 case ${target} in
|
|
2569 i[34567]86-*-*|x86_64-*-*)
|
|
2570 if test x$with_cpu != x; then
|
|
2571 if test x$with_cpu_32 != x || test x$with_cpu_64 != x; then
|
|
2572 if test x$with_cpu_32 = x; then
|
|
2573 with_cpu_32=$with_cpu
|
|
2574 fi
|
|
2575 if test x$with_cpu_64 = x; then
|
|
2576 with_cpu_64=$with_cpu
|
|
2577 fi
|
|
2578 with_cpu=
|
|
2579 fi
|
|
2580 fi
|
|
2581 ;;
|
|
2582 esac
|
|
2583 fi
|
|
2584
|
|
2585 # Similarly for --with-schedule.
|
|
2586 if test x$with_schedule = x; then
|
|
2587 case ${target} in
|
|
2588 hppa1*)
|
|
2589 # Override default PA8000 scheduling model.
|
|
2590 with_schedule=7100LC
|
|
2591 ;;
|
|
2592 esac
|
|
2593 fi
|
|
2594
|
|
2595 # Validate and mark as valid any --with options supported
|
|
2596 # by this target. In order to use a particular --with option
|
|
2597 # you must list it in supported_defaults; validating the value
|
|
2598 # is optional. This case statement should set nothing besides
|
|
2599 # supported_defaults.
|
|
2600
|
|
2601 supported_defaults=
|
|
2602 case "${target}" in
|
|
2603 alpha*-*-*)
|
|
2604 supported_defaults="cpu tune"
|
|
2605 for which in cpu tune; do
|
|
2606 eval "val=\$with_$which"
|
|
2607 case "$val" in
|
|
2608 "" \
|
|
2609 | ev4 | ev45 | 21064 | ev5 | 21164 | ev56 | 21164a \
|
|
2610 | pca56 | 21164PC | 21164pc | ev6 | 21264 | ev67 \
|
|
2611 | 21264a)
|
|
2612 ;;
|
|
2613 *)
|
|
2614 echo "Unknown CPU used in --with-$which=$val" 1>&2
|
|
2615 exit 1
|
|
2616 ;;
|
|
2617 esac
|
|
2618 done
|
|
2619 ;;
|
|
2620
|
|
2621 arm*-*-*)
|
|
2622 supported_defaults="arch cpu float tune fpu abi mode"
|
|
2623 for which in cpu tune; do
|
|
2624 # See if it matches any of the entries in arm-cores.def
|
|
2625 eval "val=\$with_$which"
|
|
2626 if [ x"$val" = x ] \
|
|
2627 || grep "^ARM_CORE(\"$val\"," \
|
|
2628 ${srcdir}/config/arm/arm-cores.def \
|
|
2629 > /dev/null; then
|
|
2630 # Ok
|
|
2631 new_val=`grep "^ARM_CORE(\"$val\"," \
|
|
2632 ${srcdir}/config/arm/arm-cores.def | \
|
|
2633 sed -e 's/^[^,]*,[ ]*//' | \
|
|
2634 sed -e 's/,.*$//'`
|
|
2635 eval "target_${which}_cname=$new_val"
|
|
2636 echo "For $val real value is $new_val"
|
|
2637 true
|
|
2638 else
|
|
2639 echo "Unknown CPU used in --with-$which=$val" 1>&2
|
|
2640 exit 1
|
|
2641 fi
|
|
2642 done
|
|
2643
|
|
2644 case "$with_arch" in
|
|
2645 "" \
|
|
2646 | armv[23456] | armv2a | armv3m | armv4t | armv5t \
|
|
2647 | armv5te | armv6j |armv6k | armv6z | armv6zk | armv6-m \
|
|
2648 | armv7 | armv7-a | armv7-r | armv7-m \
|
|
2649 | iwmmxt | ep9312)
|
|
2650 # OK
|
|
2651 ;;
|
|
2652 *)
|
|
2653 echo "Unknown arch used in --with-arch=$with_arch" 1>&2
|
|
2654 exit 1
|
|
2655 ;;
|
|
2656 esac
|
|
2657
|
|
2658 case "$with_float" in
|
|
2659 "" \
|
|
2660 | soft | hard | softfp)
|
|
2661 # OK
|
|
2662 ;;
|
|
2663 *)
|
|
2664 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
|
|
2665 exit 1
|
|
2666 ;;
|
|
2667 esac
|
|
2668
|
|
2669 case "$with_fpu" in
|
|
2670 "" \
|
|
2671 | fpa | fpe2 | fpe3 | maverick | vfp | vfp3 | neon )
|
|
2672 # OK
|
|
2673 ;;
|
|
2674 *)
|
|
2675 echo "Unknown fpu used in --with-fpu=$with_fpu" 2>&1
|
|
2676 exit 1
|
|
2677 ;;
|
|
2678 esac
|
|
2679
|
|
2680 case "$with_abi" in
|
|
2681 "" \
|
|
2682 | apcs-gnu | atpcs | aapcs | iwmmxt | aapcs-linux )
|
|
2683 #OK
|
|
2684 ;;
|
|
2685 *)
|
|
2686 echo "Unknown ABI used in --with-abi=$with_abi"
|
|
2687 exit 1
|
|
2688 ;;
|
|
2689 esac
|
|
2690
|
|
2691 case "$with_mode" in
|
|
2692 "" \
|
|
2693 | arm | thumb )
|
|
2694 #OK
|
|
2695 ;;
|
|
2696 *)
|
|
2697 echo "Unknown mode used in --with-mode=$with_mode"
|
|
2698 exit 1
|
|
2699 ;;
|
|
2700 esac
|
|
2701
|
|
2702 if test "x$with_arch" != x && test "x$with_cpu" != x; then
|
|
2703 echo "Warning: --with-arch overrides --with-cpu=$with_cpu" 1>&2
|
|
2704 fi
|
|
2705 ;;
|
|
2706
|
|
2707 fr*-*-*linux*)
|
|
2708 supported_defaults=cpu
|
|
2709 case "$with_cpu" in
|
|
2710 fr400) ;;
|
|
2711 fr550) ;;
|
|
2712 *)
|
|
2713 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
|
|
2714 exit 1
|
|
2715 ;;
|
|
2716 esac
|
|
2717 ;;
|
|
2718
|
|
2719 fido-*-* | m68k*-*-*)
|
|
2720 supported_defaults="arch cpu"
|
|
2721 case "$with_arch" in
|
|
2722 "" | "m68k"| "cf")
|
|
2723 m68k_arch_family="$with_arch"
|
|
2724 ;;
|
|
2725 *)
|
|
2726 echo "Invalid --with-arch=$with_arch" 1>&2
|
|
2727 exit 1
|
|
2728 ;;
|
|
2729 esac
|
|
2730
|
|
2731 # We always have a $with_cpu setting here.
|
|
2732 case "$with_cpu" in
|
|
2733 "m68000" | "m68010" | "m68020" | "m68030" | "m68040" | "m68060")
|
|
2734 m68k_cpu_ident=$with_cpu
|
|
2735 ;;
|
|
2736 "m68020-40")
|
|
2737 m68k_cpu_ident=m68020
|
|
2738 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_40"
|
|
2739 ;;
|
|
2740 "m68020-60")
|
|
2741 m68k_cpu_ident=m68020
|
|
2742 tm_defines="$tm_defines M68K_DEFAULT_TUNE=u68020_60"
|
|
2743 ;;
|
|
2744 *)
|
|
2745 # We need the C identifier rather than the string.
|
|
2746 m68k_cpu_ident=`awk -v arg="\"$with_cpu\"" \
|
|
2747 'BEGIN { FS="[ \t]*[,()][ \t]*" }; \
|
|
2748 $1 == "M68K_DEVICE" && $2 == arg { print $3 }' \
|
|
2749 ${srcdir}/config/m68k/m68k-devices.def`
|
|
2750 if [ x"$m68k_cpu_ident" = x ] ; then
|
|
2751 echo "Unknown CPU used in --with-cpu=$with_cpu" 1>&2
|
|
2752 exit 1
|
|
2753 fi
|
|
2754 with_cpu="mcpu=$with_cpu"
|
|
2755 ;;
|
|
2756 esac
|
|
2757 ;;
|
|
2758
|
|
2759 hppa*-*-*)
|
|
2760 supported_defaults="arch schedule"
|
|
2761
|
|
2762 case "$with_arch" in
|
|
2763 "" | 1.0 | 1.1 | 2.0)
|
|
2764 # OK
|
|
2765 ;;
|
|
2766 *)
|
|
2767 echo "Unknown architecture used in --with-arch=$with_arch" 1>&2
|
|
2768 exit 1
|
|
2769 ;;
|
|
2770 esac
|
|
2771
|
|
2772 case "$with_schedule" in
|
|
2773 "" | 700 | 7100 | 7100LC | 7200 | 7300 | 8000)
|
|
2774 # OK
|
|
2775 ;;
|
|
2776 *)
|
|
2777 echo "Unknown processor used in --with-schedule=$with_schedule." 1>&2
|
|
2778 exit 1
|
|
2779 ;;
|
|
2780 esac
|
|
2781 ;;
|
|
2782
|
|
2783 i[34567]86-*-* | x86_64-*-*)
|
|
2784 supported_defaults="arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64"
|
|
2785 for which in arch arch_32 arch_64 cpu cpu_32 cpu_64 tune tune_32 tune_64; do
|
|
2786 eval "val=\$with_$which"
|
|
2787 case ${val} in
|
|
2788 i386 | i486 \
|
|
2789 | i586 | pentium | pentium-mmx | winchip-c6 | winchip2 \
|
|
2790 | c3 | c3-2 | i686 | pentiumpro | pentium2 | pentium3 \
|
|
2791 | pentium4 | k6 | k6-2 | k6-3 | athlon | athlon-tbird \
|
|
2792 | athlon-4 | athlon-xp | athlon-mp | geode \
|
|
2793 | prescott | pentium-m | pentium4m | pentium3m)
|
|
2794 case "${target}" in
|
|
2795 x86_64-*-*)
|
|
2796 case "x$which" in
|
|
2797 *_32)
|
|
2798 ;;
|
|
2799 *)
|
|
2800 echo "CPU given in --with-$which=$val doesn't support 64bit mode." 1>&2
|
|
2801 exit 1
|
|
2802 ;;
|
|
2803 esac
|
|
2804 ;;
|
|
2805 esac
|
|
2806 # OK
|
|
2807 ;;
|
|
2808 "" | amdfam10 | barcelona | k8 | opteron | athlon64 | athlon-fx | nocona | core2 | generic)
|
|
2809 # OK
|
|
2810 ;;
|
|
2811 *)
|
|
2812 echo "Unknown CPU given in --with-$which=$val." 1>&2
|
|
2813 exit 1
|
|
2814 ;;
|
|
2815 esac
|
|
2816 done
|
|
2817 ;;
|
|
2818
|
|
2819 mips*-*-*)
|
|
2820 supported_defaults="abi arch float tune divide llsc mips-plt"
|
|
2821
|
|
2822 case ${with_float} in
|
|
2823 "" | soft | hard)
|
|
2824 # OK
|
|
2825 ;;
|
|
2826 *)
|
|
2827 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
|
|
2828 exit 1
|
|
2829 ;;
|
|
2830 esac
|
|
2831
|
|
2832 case ${with_abi} in
|
|
2833 "" | 32 | o64 | n32 | 64 | eabi)
|
|
2834 # OK
|
|
2835 ;;
|
|
2836 *)
|
|
2837 echo "Unknown ABI used in --with-abi=$with_abi" 1>&2
|
|
2838 exit 1
|
|
2839 ;;
|
|
2840 esac
|
|
2841
|
|
2842 case ${with_divide} in
|
|
2843 "" | breaks | traps)
|
|
2844 # OK
|
|
2845 ;;
|
|
2846 *)
|
|
2847 echo "Unknown division check type use in --with-divide=$with_divide" 1>&2
|
|
2848 exit 1
|
|
2849 ;;
|
|
2850 esac
|
|
2851
|
|
2852 case ${with_llsc} in
|
|
2853 yes)
|
|
2854 with_llsc=llsc
|
|
2855 ;;
|
|
2856 no)
|
|
2857 with_llsc="no-llsc"
|
|
2858 ;;
|
|
2859 "")
|
|
2860 # OK
|
|
2861 ;;
|
|
2862 *)
|
|
2863 echo "Unknown llsc type used in --with-llsc" 1>&2
|
|
2864 exit 1
|
|
2865 ;;
|
|
2866 esac
|
|
2867
|
|
2868 case ${with_mips_plt} in
|
|
2869 yes)
|
|
2870 with_mips_plt=plt
|
|
2871 ;;
|
|
2872 no)
|
|
2873 with_mips_plt=no-plt
|
|
2874 ;;
|
|
2875 "")
|
|
2876 ;;
|
|
2877 *)
|
|
2878 echo "Unknown --with-mips-plt argument: $with_mips_plt" 1>&2
|
|
2879 exit 1
|
|
2880 ;;
|
|
2881 esac
|
|
2882 ;;
|
|
2883
|
|
2884 powerpc*-*-* | rs6000-*-*)
|
|
2885 supported_defaults="cpu float tune"
|
|
2886
|
|
2887 for which in cpu tune; do
|
|
2888 eval "val=\$with_$which"
|
|
2889 case ${val} in
|
|
2890 default32 | default64)
|
|
2891 with_which="with_$which"
|
|
2892 eval $with_which=
|
|
2893 ;;
|
|
2894 405cr)
|
|
2895 tm_defines="${tm_defines} CONFIG_PPC405CR"
|
|
2896 eval "with_$which=405"
|
|
2897 ;;
|
|
2898 "" | common \
|
|
2899 | power | power[234567] | power6x | powerpc | powerpc64 \
|
|
2900 | rios | rios1 | rios2 | rsc | rsc1 | rs64a \
|
|
2901 | 401 | 403 | 405 | 405fp | 440 | 440fp | 464 | 464fp \
|
|
2902 | 505 | 601 | 602 | 603 | 603e | ec603e | 604 \
|
|
2903 | 604e | 620 | 630 | 740 | 750 | 7400 | 7450 \
|
|
2904 | e300c[23] | 854[08] | e500mc \
|
|
2905 | 801 | 821 | 823 | 860 | 970 | G3 | G4 | G5 | cell)
|
|
2906 # OK
|
|
2907 ;;
|
|
2908 *)
|
|
2909 echo "Unknown cpu used in --with-$which=$val." 1>&2
|
|
2910 exit 1
|
|
2911 ;;
|
|
2912 esac
|
|
2913 done
|
|
2914 ;;
|
|
2915
|
|
2916 s390*-*-*)
|
|
2917 supported_defaults="arch mode tune"
|
|
2918
|
|
2919 for which in arch tune; do
|
|
2920 eval "val=\$with_$which"
|
|
2921 case ${val} in
|
|
2922 "" | g5 | g6 | z900 | z990 | z9-109 | z9-ec | z10)
|
|
2923 # OK
|
|
2924 ;;
|
|
2925 *)
|
|
2926 echo "Unknown cpu used in --with-$which=$val." 1>&2
|
|
2927 exit 1
|
|
2928 ;;
|
|
2929 esac
|
|
2930 done
|
|
2931
|
|
2932 case ${with_mode} in
|
|
2933 "" | esa | zarch)
|
|
2934 # OK
|
|
2935 ;;
|
|
2936 *)
|
|
2937 echo "Unknown architecture mode used in --with-mode=$with_mode." 1>&2
|
|
2938 exit 1
|
|
2939 ;;
|
|
2940 esac
|
|
2941 ;;
|
|
2942
|
|
2943 sh[123456ble]-*-* | sh-*-*)
|
|
2944 supported_defaults="cpu"
|
|
2945 case "`echo $with_cpu | tr ABCDEFGHIJKLMNOPQRSTUVWXYZ_ abcdefghijklmnopqrstuvwxyz- | sed s/sh/m/`" in
|
|
2946 "" | m1 | m2 | m2e | m3 | m3e | m4 | m4-single | m4-single-only | m4-nofpu )
|
|
2947 # OK
|
|
2948 ;;
|
|
2949 m2a | m2a-single | m2a-single-only | m2a-nofpu)
|
|
2950 ;;
|
|
2951 m4a | m4a-single | m4a-single-only | m4a-nofpu | m4al)
|
|
2952 ;;
|
|
2953 *)
|
|
2954 echo "Unknown CPU used in --with-cpu=$with_cpu, known values:" 1>&2
|
|
2955 echo "m1 m2 m2e m3 m3e m4 m4-single m4-single-only m4-nofpu" 1>&2
|
|
2956 echo "m4a m4a-single m4a-single-only m4a-nofpu m4al" 1>&2
|
|
2957 echo "m2a m2a-single m2a-single-only m2a-nofpu" 1>&2
|
|
2958 exit 1
|
|
2959 ;;
|
|
2960 esac
|
|
2961 ;;
|
|
2962 sparc*-*-*)
|
|
2963 supported_defaults="cpu float tune"
|
|
2964
|
|
2965 for which in cpu tune; do
|
|
2966 eval "val=\$with_$which"
|
|
2967 case ${val} in
|
|
2968 "" | sparc | sparcv9 | sparc64 | sparc86x \
|
|
2969 | v7 | cypress | v8 | supersparc | sparclite | f930 \
|
|
2970 | f934 | hypersparc | sparclite86x | sparclet | tsc701 \
|
|
2971 | v9 | ultrasparc | ultrasparc3 | niagara | niagara2)
|
|
2972 # OK
|
|
2973 ;;
|
|
2974 *)
|
|
2975 echo "Unknown cpu used in --with-$which=$val" 1>&2
|
|
2976 exit 1
|
|
2977 ;;
|
|
2978 esac
|
|
2979 done
|
|
2980
|
|
2981 case ${with_float} in
|
|
2982 "" | soft | hard)
|
|
2983 # OK
|
|
2984 ;;
|
|
2985 *)
|
|
2986 echo "Unknown floating point type used in --with-float=$with_float" 1>&2
|
|
2987 exit 1
|
|
2988 ;;
|
|
2989 esac
|
|
2990 ;;
|
|
2991
|
|
2992 spu-*-*)
|
|
2993 supported_defaults="arch tune"
|
|
2994
|
|
2995 for which in arch tune; do
|
|
2996 eval "val=\$with_$which"
|
|
2997 case ${val} in
|
|
2998 "" | cell | celledp)
|
|
2999 # OK
|
|
3000 ;;
|
|
3001 *)
|
|
3002 echo "Unknown cpu used in --with-$which=$val." 1>&2
|
|
3003 exit 1
|
|
3004 ;;
|
|
3005 esac
|
|
3006 done
|
|
3007 ;;
|
|
3008
|
|
3009 v850*-*-*)
|
|
3010 supported_defaults=cpu
|
|
3011 case ${with_cpu} in
|
|
3012 "" | v850e | v850e1)
|
|
3013 # OK
|
|
3014 ;;
|
|
3015 *)
|
|
3016 echo "Unknown cpu used in --with-cpu=$with_cpu" 1>&2
|
|
3017 exit 1
|
|
3018 ;;
|
|
3019 esac
|
|
3020 ;;
|
|
3021 esac
|
|
3022
|
|
3023 # Set some miscellaneous flags for particular targets.
|
|
3024 target_cpu_default2=
|
|
3025 case ${target} in
|
|
3026 alpha*-*-*)
|
|
3027 if test x$gas = xyes
|
|
3028 then
|
|
3029 target_cpu_default2="MASK_GAS"
|
|
3030 fi
|
|
3031 ;;
|
|
3032
|
|
3033 arm*-*-*)
|
|
3034 if test x$target_cpu_cname = x
|
|
3035 then
|
|
3036 target_cpu_default2=TARGET_CPU_generic
|
|
3037 else
|
|
3038 target_cpu_default2=TARGET_CPU_$target_cpu_cname
|
|
3039 fi
|
|
3040 ;;
|
|
3041
|
|
3042 hppa*-*-*)
|
|
3043 target_cpu_default2="MASK_BIG_SWITCH"
|
|
3044 if test x$gas = xyes
|
|
3045 then
|
|
3046 target_cpu_default2="${target_cpu_default2}|MASK_GAS|MASK_JUMP_IN_DELAY"
|
|
3047 fi
|
|
3048 ;;
|
|
3049
|
|
3050 fido*-*-* | m68k*-*-*)
|
|
3051 target_cpu_default2=$m68k_cpu_ident
|
|
3052 if [ x"$m68k_arch_family" != x ]; then
|
|
3053 tmake_file="m68k/t-$m68k_arch_family $tmake_file"
|
|
3054 fi
|
|
3055 ;;
|
|
3056
|
|
3057 i[34567]86-*-darwin* | x86_64-*-darwin*)
|
|
3058 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp"
|
|
3059 ;;
|
|
3060 i[34567]86-*-linux* | x86_64-*-linux* | i[34567]86-*-kfreebsd*-gnu | x86_64-*-kfreebsd*-gnu)
|
|
3061 tmake_file="${tmake_file} i386/t-fprules-softfp soft-fp/t-softfp i386/t-linux"
|
|
3062 ;;
|
|
3063 ia64*-*-linux*)
|
|
3064 tmake_file="${tmake_file} ia64/t-fprules-softfp soft-fp/t-softfp"
|
|
3065 ;;
|
|
3066
|
|
3067 mips*-*-*)
|
|
3068 if test x$gnu_ld = xyes
|
|
3069 then
|
|
3070 target_cpu_default2="MASK_SPLIT_ADDRESSES"
|
|
3071 fi
|
|
3072 case ${target} in
|
|
3073 mips*el-*-*)
|
|
3074 tm_defines="TARGET_ENDIAN_DEFAULT=0 $tm_defines"
|
|
3075 ;;
|
|
3076 esac
|
|
3077 if test "x$enable_gofast" = xyes
|
|
3078 then
|
|
3079 tm_defines="US_SOFTWARE_GOFAST $tm_defines"
|
|
3080 tmake_file="mips/t-gofast $tmake_file"
|
|
3081 else
|
|
3082 tmake_file="mips/t-mips $tmake_file"
|
|
3083 fi
|
|
3084 ;;
|
|
3085
|
|
3086 powerpc*-*-* | rs6000-*-*)
|
|
3087 # FIXME: The PowerPC port uses the value set at compile time,
|
|
3088 # although it's only cosmetic.
|
|
3089 if test "x$with_cpu" != x
|
|
3090 then
|
|
3091 target_cpu_default2="\\\"$with_cpu\\\""
|
|
3092 fi
|
|
3093 out_file=rs6000/rs6000.c
|
|
3094 c_target_objs="${c_target_objs} rs6000-c.o"
|
|
3095 cxx_target_objs="${cxx_target_objs} rs6000-c.o"
|
|
3096 tmake_file="rs6000/t-rs6000 ${tmake_file}"
|
|
3097
|
|
3098 if test x$enable_e500_double = xyes
|
|
3099 then
|
|
3100 tm_file="$tm_file rs6000/e500-double.h"
|
|
3101 fi
|
|
3102 ;;
|
|
3103
|
|
3104 sh[123456ble]*-*-* | sh-*-*)
|
|
3105 c_target_objs="${c_target_objs} sh-c.o"
|
|
3106 cxx_target_objs="${cxx_target_objs} sh-c.o"
|
|
3107 ;;
|
|
3108
|
|
3109 sparc*-*-*)
|
|
3110 # Some standard aliases.
|
|
3111 case x$with_cpu in
|
|
3112 xsparc)
|
|
3113 with_cpu=v7
|
|
3114 ;;
|
|
3115 xsparcv9 | xsparc64)
|
|
3116 with_cpu=v9
|
|
3117 ;;
|
|
3118 esac
|
|
3119
|
|
3120 # The SPARC port checks this value at compile-time.
|
|
3121 target_cpu_default2="TARGET_CPU_$with_cpu"
|
|
3122 ;;
|
|
3123 v850*-*-*)
|
|
3124 # FIXME: The v850 is "special" in that it does not support
|
|
3125 # runtime CPU selection, only --with-cpu.
|
|
3126 case "x$with_cpu" in
|
|
3127 x)
|
|
3128 ;;
|
|
3129 xv850e)
|
|
3130 target_cpu_default2="TARGET_CPU_$with_cpu"
|
|
3131 ;;
|
|
3132 esac
|
|
3133 ;;
|
|
3134 esac
|
|
3135
|
|
3136 t=
|
|
3137 all_defaults="abi cpu cpu_32 cpu_64 arch arch_32 arch_64 tune tune_32 tune_64 schedule float mode fpu divide llsc mips-plt"
|
|
3138 for option in $all_defaults
|
|
3139 do
|
|
3140 eval "val=\$with_"`echo $option | sed s/-/_/g`
|
|
3141 if test -n "$val"; then
|
|
3142 case " $supported_defaults " in
|
|
3143 *" $option "*)
|
|
3144 ;;
|
|
3145 *)
|
|
3146 echo "This target does not support --with-$option." 2>&1
|
|
3147 echo "Valid --with options are: $supported_defaults" 2>&1
|
|
3148 exit 1
|
|
3149 ;;
|
|
3150 esac
|
|
3151
|
|
3152 if test "x$t" = x
|
|
3153 then
|
|
3154 t="{ \"$option\", \"$val\" }"
|
|
3155 else
|
|
3156 t="${t}, { \"$option\", \"$val\" }"
|
|
3157 fi
|
|
3158 fi
|
|
3159 done
|
|
3160
|
|
3161 if test "x$t" = x
|
|
3162 then
|
|
3163 configure_default_options="{ { NULL, NULL} }"
|
|
3164 else
|
|
3165 configure_default_options="{ ${t} }"
|
|
3166 fi
|
|
3167
|
|
3168 if test "$target_cpu_default2" != ""
|
|
3169 then
|
|
3170 if test "$target_cpu_default" != ""
|
|
3171 then
|
|
3172 target_cpu_default="(${target_cpu_default}|${target_cpu_default2})"
|
|
3173 else
|
|
3174 target_cpu_default=$target_cpu_default2
|
|
3175 fi
|
|
3176 fi
|