3 # Copyright (C) 2012-2015 Free Software Foundation, Inc.
5 # This file is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 3 of the License, or
8 # (at your option) any later version.
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; see the file COPYING3. If not see
17 # <http://www.gnu.org/licenses/>.
19 # Convert a canonical host type into a BFD host type.
20 # Set shell variable targ to canonical target name, and run
21 # using ``. config.bfd''.
22 # Sets the following shell variables:
23 # targ_defvec Default vector for this target
24 # targ_selvecs Vectors to build for this target
25 # targ64_selvecs Vectors to build if --enable-64-bit-bfd is given
26 # or if host is 64 bit.
27 # targ_archs Architectures for this target
28 # targ_cflags $(CFLAGS) for this target (FIXME: pretty bogus)
29 # targ_underscore Whether underscores are used: yes or no
31 # Part of this file is processed by targmatch.sed to generate the
32 # targmatch.h file. The #ifdef and #endif lines that appear below are
33 # copied directly into targmatch.h.
35 # The binutils c++filt program wants to know whether underscores are
36 # stripped or not. That is why we set targ_underscore. c++filt uses
37 # this information to choose a default. This information is
38 # duplicated in the symbol_leading_char field of the BFD target
39 # vector, but c++filt does not deal with object files and is not
40 # linked against libbfd.a. It is not terribly important that c++filt
41 # get this right; it is just convenient.
49 # Catch obsolete configurations.
51 openrisc-*-* | or32-*-*)
52 echo "*** Configuration $targ is obsolete." >&2
53 echo "*** Use or1k-*-elf or or1k-*-linux as the target instead" >&2
57 if test "x$enable_obsolete" != xyes; then
58 echo "*** Configuration $targ is obsolete." >&2
59 echo "*** Specify --enable-obsolete to build it anyway." >&2
60 echo "*** Support will be REMOVED in the next major release of BINUTILS," >&2
61 echo "*** unless a maintainer comes forward." >&2
72 i[3-7]86*-*-rtemscoff* | \
80 powerpcle-*-rtems* | \
81 sparc*-*-rtemsaout* | \
85 echo "*** Configuration $targ is obsolete." >&2
86 echo "*** Support has been REMOVED." >&2
91 targ_cpu=`echo $targ | sed 's/^\([^-]*\)-\([^-]*\)-\(.*\)$/\1/'`
93 aarch64*) targ_archs="bfd_aarch64_arch bfd_arm_arch";;
94 alpha*) targ_archs=bfd_alpha_arch ;;
95 am34*|am33_2.0*) targ_archs=bfd_mn10300_arch ;;
96 arm*) targ_archs=bfd_arm_arch ;;
97 bfin*) targ_archs=bfd_bfin_arch ;;
98 c30*) targ_archs=bfd_tic30_arch ;;
99 c4x*) targ_archs=bfd_tic4x_arch ;;
100 c54x*) targ_archs=bfd_tic54x_arch ;;
101 cr16*) targ_archs=bfd_cr16_arch ;;
102 crisv32) targ_archs=bfd_cris_arch ;;
103 crx*) targ_archs=bfd_crx_arch ;;
104 dlx*) targ_archs=bfd_dlx_arch ;;
105 fido*) targ_archs=bfd_m68k_arch ;;
106 hppa*) targ_archs=bfd_hppa_arch ;;
107 i[3-7]86) targ_archs=bfd_i386_arch ;;
108 i370) targ_archs=bfd_i370_arch ;;
109 lm32) targ_archs=bfd_lm32_arch ;;
110 m6811*|m68hc11*) targ_archs="bfd_m68hc11_arch bfd_m68hc12_arch bfd_m9s12x_arch bfd_m9s12xg_arch" ;;
111 m6812*|m68hc12*) targ_archs="bfd_m68hc12_arch bfd_m68hc11_arch bfd_m9s12x_arch bfd_m9s12xg_arch" ;;
112 m68*) targ_archs=bfd_m68k_arch ;;
113 m88*) targ_archs=bfd_m88k_arch ;;
114 microblaze*) targ_archs=bfd_microblaze_arch ;;
115 mips*) targ_archs=bfd_mips_arch ;;
116 nds32*) targ_archs=bfd_nds32_arch ;;
117 nios2*) targ_archs=bfd_nios2_arch ;;
118 or1k*|or1knd*) targ_archs=bfd_or1k_arch ;;
119 pdp11*) targ_archs=bfd_pdp11_arch ;;
120 pj*) targ_archs="bfd_pj_arch bfd_i386_arch";;
121 powerpc*) targ_archs="bfd_rs6000_arch bfd_powerpc_arch" ;;
122 rs6000) targ_archs="bfd_rs6000_arch bfd_powerpc_arch" ;;
123 s390*) targ_archs=bfd_s390_arch ;;
124 sh*) targ_archs=bfd_sh_arch ;;
125 sparc*) targ_archs=bfd_sparc_arch ;;
126 spu*) targ_archs=bfd_spu_arch ;;
127 tilegx*) targ_archs=bfd_tilegx_arch ;;
128 tilepro*) targ_archs=bfd_tilepro_arch ;;
129 v850*) targ_archs="bfd_v850_arch bfd_v850_rh850_arch" ;;
130 visium*) targ_archs=bfd_visium_arch ;;
131 x86_64*) targ_archs=bfd_i386_arch ;;
132 xtensa*) targ_archs=bfd_xtensa_arch ;;
133 xgate) targ_archs=bfd_xgate_arch ;;
134 z80|r800) targ_archs=bfd_z80_arch ;;
135 z8k*) targ_archs=bfd_z8k_arch ;;
136 *) targ_archs=bfd_${targ_cpu}_arch ;;
140 # WHEN ADDING ENTRIES TO THIS MATRIX:
141 # Make sure that the left side always has two dashes. Otherwise you
142 # can get spurious matches. Even for unambiguous cases, do this as a
143 # convention, else the table becomes a real mess to understand and maintain.
145 # Keep obsolete entries above the START comment, to keep them out of
150 echo "This target is obsolete and has been removed."
155 echo "This target is obsolete and has been removed."
160 echo "This target is obsolete and has been removed."
165 targ_defvec=plugin_vec
166 targ_selvecs="plugin_vec"
169 # START OF targmatch.h
172 targ_defvec=aarch64_elf64_le_vec
173 targ_selvecs="aarch64_elf64_be_vec aarch64_elf32_le_vec aarch64_elf32_be_vec arm_elf32_le_vec arm_elf32_be_vec"
177 targ_defvec=aarch64_elf64_be_vec
178 targ_selvecs="aarch64_elf64_le_vec aarch64_elf32_le_vec aarch64_elf32_be_vec arm_elf32_be_vec arm_elf32_le_vec"
182 targ_defvec=aarch64_elf64_le_vec
183 targ_selvecs="aarch64_elf64_be_vec aarch64_elf32_le_vec aarch64_elf32_be_vec arm_elf32_le_vec arm_elf32_be_vec"
187 targ_defvec=aarch64_elf64_be_vec
188 targ_selvecs="aarch64_elf64_le_vec aarch64_elf32_le_vec aarch64_elf32_be_vec arm_elf32_be_vec arm_elf32_le_vec"
191 alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
192 targ_defvec=alpha_elf64_fbsd_vec
193 targ_selvecs="alpha_elf64_vec alpha_ecoff_le_vec"
195 # FreeBSD <= 4.0 supports only the old nonstandard way of ABI labelling.
197 alpha*-*-freebsd3* | alpha*-*-freebsd4 | alpha*-*-freebsd4.0*)
198 targ_cflags=-DOLD_FREEBSD_ABI_LABEL ;;
201 alpha*-*-netbsd* | alpha*-*-openbsd*)
202 targ_defvec=alpha_elf64_vec
203 targ_selvecs=alpha_ecoff_le_vec
207 targ_defvec=alpha_ecoff_le_vec
208 targ_selvecs=alpha_nlm32_vec
211 alpha*-*-linux*ecoff*)
212 targ_defvec=alpha_ecoff_le_vec
213 targ_selvecs=alpha_elf64_vec
216 alpha*-*-linux-* | alpha*-*-elf*)
217 targ_defvec=alpha_elf64_vec
218 targ_selvecs=alpha_ecoff_le_vec
222 targ_defvec=alpha_vms_vec
223 targ_selvecs=alpha_vms_lib_txt_vec
227 targ_defvec=alpha_ecoff_le_vec
230 ia64*-*-freebsd* | ia64*-*-netbsd* | ia64*-*-linux-* | ia64*-*-elf* | ia64*-*-kfreebsd*-gnu)
231 targ_defvec=ia64_elf64_le_vec
232 targ_selvecs="ia64_elf64_be_vec ia64_pei_vec"
236 targ_defvec=ia64_elf32_hpux_be_vec
237 targ_selvecs="ia64_elf64_hpux_be_vec"
241 targ_defvec=ia64_elf64_vms_vec
242 targ_selvecs=alpha_vms_lib_txt_vec
245 sparc64-*-freebsd* | sparc64-*-kfreebsd*-gnu)
246 targ_defvec=sparc_elf64_fbsd_vec
247 targ_selvecs="sparc_elf64_vec sparc_elf32_vec sparc_aout_sunos_be_vec"
249 sparc64-*-netbsd* | sparc64-*-openbsd*)
250 targ_defvec=sparc_elf64_vec
251 targ_selvecs="sparc_elf32_vec sparc_aout_sunos_be_vec"
256 am34-*-linux* | am33_2.0-*-linux*)
257 targ_defvec=am33_elf32_linux_vec
261 targ_defvec=arc_elf32_le_vec
262 targ_selvecs=arc_elf32_be_vec
266 targ_defvec=arm_elf32_nacl_le_vec
267 targ_selvecs="arm_elf32_nacl_be_vec i386_elf32_nacl_vec"
268 targ64_selvecs="x86_64_elf32_nacl_vec x86_64_elf64_nacl_vec"
269 targ_archs="$targ_archs bfd_i386_arch"
272 targ_defvec=arm_elf32_nacl_be_vec
273 targ_selvecs="arm_elf32_nacl_le_vec i386_elf32_nacl_vec"
274 targ64_selvecs="x86_64_elf32_nacl_vec x86_64_elf64_nacl_vec"
275 targ_archs="$targ_archs bfd_i386_arch"
278 targ_defvec=arm_elf32_be_vec
279 targ_selvecs="arm_elf32_le_vec arm_aout_nbsd_vec"
282 targ_defvec=arm_elf32_le_vec
283 targ_selvecs="arm_elf32_be_vec arm_aout_nbsd_vec"
285 arm-*-netbsd* | arm-*-openbsd*)
286 targ_defvec=arm_aout_nbsd_vec
287 targ_selvecs="arm_elf32_le_vec arm_elf32_be_vec"
290 arm-*-nto* | nto*arm*)
291 targ_defvec=arm_elf32_le_vec
292 targ_selvecs=arm_elf32_be_vec
293 targ_cflags=-D__QNXTARGET__
296 targ_defvec=arm_aout_riscix_vec
299 targ_defvec=arm_pe_epoc_le_vec
300 targ_selvecs="arm_pe_epoc_le_vec arm_pe_epoc_be_vec arm_pei_epoc_le_vec arm_pei_epoc_be_vec"
302 targ_cflags=-DARM_COFF_BUGFIX
304 arm-wince-pe | arm-*-wince | arm*-*-mingw32ce* | arm*-*-cegcc*)
305 targ_defvec=arm_pe_wince_le_vec
306 targ_selvecs="arm_pe_wince_le_vec arm_pe_wince_be_vec arm_pei_wince_le_vec arm_pei_wince_be_vec"
308 targ_cflags="-DARM_WINCE -DARM_COFF_BUGFIX"
311 targ_defvec=arm_pe_le_vec
312 targ_selvecs="arm_pe_le_vec arm_pe_be_vec arm_pei_le_vec arm_pei_be_vec"
315 arm-*-aout | armel-*-aout)
316 targ_defvec=arm_aout_le_vec
317 targ_selvecs=arm_aout_be_vec
320 targ_defvec=arm_aout_be_vec
321 targ_selvecs=arm_aout_le_vec
324 targ_defvec=arm_coff_le_vec
325 targ_selvecs=arm_coff_be_vec
329 targ_defvec=arm_elf32_le_vec
330 targ_selvecs=arm_elf32_be_vec
332 armeb-*-elf | arm*b-*-freebsd* | arm*b-*-linux-* | armeb-*-eabi*)
333 targ_defvec=arm_elf32_be_vec
334 targ_selvecs=arm_elf32_le_vec
337 targ_defvec=arm_elf32_le_vec
338 targ_selvecs=arm_elf32_be_vec
340 arm-*-elf | arm*-*-freebsd* | arm*-*-linux-* | arm*-*-conix* | \
341 arm*-*-uclinux* | arm-*-kfreebsd*-gnu | \
343 targ_defvec=arm_elf32_le_vec
344 targ_selvecs=arm_elf32_be_vec
346 arm*-*-vxworks | arm*-*-windiss)
347 targ_defvec=arm_elf32_vxworks_le_vec
348 targ_selvecs=arm_elf32_vxworks_be_vec
351 targ_defvec=arm_elf32_symbian_le_vec
352 targ_selvecs=arm_elf32_symbian_be_vec
355 targ_defvec=arm_elf32_le_vec
356 targ_selvecs=arm_elf32_be_vec
360 targ_defvec=avr_elf32_vec
364 targ_defvec=bfin_elf32_vec
365 targ_selvecs=bfin_elf32_fdpic_vec
369 c30-*-*aout* | tic30-*-*aout*)
370 targ_defvec=tic30_aout_vec
372 c30-*-*coff* | tic30-*-*coff*)
373 targ_defvec=tic30_coff_vec
376 c4x-*-*coff* | tic4x-*-*coff* | tic4x-*-rtems*)
377 targ_defvec=tic4x_coff1_vec
378 targ_selvecs="tic4x_coff1_beh_vec tic4x_coff2_vec tic4x_coff2_beh_vec tic4x_coff0_vec tic4x_coff0_beh_vec"
382 c54x*-*-*coff* | tic54x-*-*coff*)
383 targ_defvec=tic54x_coff1_vec
384 targ_selvecs="tic54x_coff1_beh_vec tic54x_coff2_vec tic54x_coff2_beh_vec tic54x_coff0_vec tic54x_coff0_beh_vec"
388 cr16-*-elf* | cr16*-*-uclinux*)
389 targ_defvec=cr16_elf32_vec
394 targ_defvec=cr16c_elf32_vec
398 cris-*-* | crisv32-*-*)
399 targ_defvec=cris_aout_vec
400 targ_selvecs="cris_elf32_us_vec cris_elf32_vec ieee_vec"
401 targ_underscore=yes # Note: not true for cris_elf32_vec.
405 targ_defvec=crx_elf32_vec
410 targ_defvec=d10v_elf32_vec
414 targ_defvec=dlx_elf32_be_vec
415 targ_selvecs="dlx_elf32_be_vec"
419 targ_defvec=d30v_elf32_vec
423 targ_defvec=epiphany_elf32_vec
427 targ_defvec=m68k_elf32_vec
428 targ_selvecs="m68k_coff_vec ieee_vec"
432 targ_defvec=fr30_elf32_vec
436 targ_defvec=frv_elf32_vec
437 targ_selvecs=frv_elf32_fdpic_vec
441 targ_defvec=frv_elf32_fdpic_vec
442 targ_selvecs=frv_elf32_vec
445 moxie-*-elf | moxie-*-rtems* | moxie-*-uclinux)
446 targ_defvec=moxie_elf32_be_vec
447 targ_selvecs=moxie_elf32_le_vec
451 targ_defvec=moxie_elf32_le_vec
455 targ_defvec=h8300_coff_vec
459 h8300*-*-elf | h8300*-*-rtems*)
460 targ_defvec=h8300_elf32_vec
465 targ_defvec=h8300_elf32_linux_vec
469 targ_defvec=h8300_coff_vec
474 targ_defvec=h8500_coff_vec
480 targ_defvec=hppa_elf64_linux_vec
481 targ_selvecs=hppa_elf64_vec
485 targ_defvec=hppa_elf64_vec
486 targ_selvecs=hppa_elf64_linux_vec
487 targ_cflags=-DHPUX_LARGE_AR_IDS
493 targ_defvec=hppa_elf32_linux_vec
494 targ_selvecs=hppa_elf32_vec
497 targ_defvec=hppa_elf32_nbsd_vec
498 targ_selvecs="hppa_elf32_vec hppa_elf32_linux_vec"
500 hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-sysv4* | hppa*-*-openbsd*)
501 targ_defvec=hppa_elf32_vec
502 targ_selvecs=hppa_elf32_linux_vec
506 targ_defvec=hppa_som_vec
507 targ_selvecs=hppa_elf32_vec
509 hppa*-*-hpux* | hppa*-*-hiux* | hppa*-*-mpeix*)
510 targ_defvec=hppa_som_vec
513 targ_defvec=hppa_som_vec
514 targ_selvecs=hppa_elf32_vec
518 targ_defvec=i370_elf32_vec
519 targ_selvecs="i370_elf32_vec"
521 i[3-7]86-*-sco3.2v5*coff)
522 targ_defvec=i386_coff_vec
523 targ_selvecs=i386_elf32_vec
525 i[3-7]86-*-sysv4* | i[3-7]86-*-unixware* | \
526 i[3-7]86-*-elf | i[3-7]86-*-sco3.2v5* | \
527 i[3-7]86-*-dgux* | i[3-7]86-*-sysv5*)
528 targ_defvec=i386_elf32_vec
529 targ_selvecs=i386_coff_vec
531 i[3-7]86-*-solaris2*)
532 targ_defvec=i386_elf32_sol2_vec
533 targ_selvecs="i386_coff_vec"
534 targ64_selvecs="x86_64_elf64_sol2_vec l1om_elf64_vec k1om_elf64_vec"
539 targ_defvec=i386_elf32_sol2_vec
540 targ_selvecs="x86_64_elf64_sol2_vec l1om_elf64_vec k1om_elf64_vec i386_coff_vec"
545 targ_defvec=i386_elf32_vec
546 targ_selvecs=i386_elf32_vec
549 targ_defvec=i386_elf32_vec
550 targ_selvecs=i386_coff_vec
553 targ_defvec=i386_elf32_vec
556 targ_defvec=i386_elf32_vec
559 targ_defvec=i386_elf32_vec
560 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
562 *-*-msdosdjgpp* | *-*-go32* )
563 targ_defvec=i386_coff_go32_vec
564 targ_selvecs="i386_coff_go32stubbed_vec i386_aout_vec"
566 i[3-7]86-*-sysv* | i[3-7]86-*-isc* | i[3-7]86-*-sco* | i[3-7]86-*-coff | \
568 targ_defvec=i386_coff_vec
571 targ_defvec=i386_elf32_vec
572 targ_selvecs="i386_coff_vec i386_aout_vec"
574 i[3-7]86-*-darwin* | i[3-7]86-*-macos10* | i[3-7]86-*-rhapsody*)
575 targ_defvec=i386_mach_o_vec
576 targ_selvecs="mach_o_le_vec mach_o_be_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
577 targ64_selvecs=x86_64_mach_o_vec
578 targ_archs="$targ_archs bfd_powerpc_arch bfd_rs6000_arch"
580 i[3-7]86-sequent-bsd*)
581 targ_defvec=i386_aout_dynix_vec
585 targ_defvec=i386_aout_bsd_vec
588 i[3-7]86-*-dragonfly*)
589 targ_defvec=i386_elf32_vec
590 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
592 i[3-7]86-*-freebsdaout* | i[3-7]86-*-freebsd[12].* | \
593 i[3-7]86-*-freebsd[12])
594 targ_defvec=i386_aout_fbsd_vec
595 targ_selvecs=i386_aout_bsd_vec
598 i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu)
599 targ_defvec=i386_elf32_fbsd_vec
600 targ_selvecs="i386_elf32_vec i386_pei_vec i386_coff_vec"
601 targ64_selvecs="x86_64_elf64_fbsd_vec x86_64_elf64_vec x86_64_pei_vec l1om_elf64_vec l1om_elf64_fbsd_vec k1om_elf64_vec k1om_elf64_fbsd_vec"
602 # FreeBSD <= 4.0 supports only the old nonstandard way of ABI labelling.
604 i[3-7]86-*-freebsd3* | i[3-7]86-*-freebsd4 | i[3-7]86-*-freebsd4.0*)
605 targ_cflags=-DOLD_FREEBSD_ABI_LABEL ;;
608 i[3-7]86-*-netbsdelf* | i[3-7]86-*-netbsd*-gnu* | i[3-7]86-*-knetbsd*-gnu)
609 targ_defvec=i386_elf32_vec
610 targ_selvecs=i386_aout_nbsd_vec
611 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
613 i[3-7]86-*-netbsdpe*)
614 targ_defvec=i386_pe_vec
615 targ_selvecs="i386_pe_vec i386_pei_vec i386_elf32_vec"
617 i[3-7]86-*-netbsdaout* | i[3-7]86-*-netbsd* | \
618 i[3-7]86-*-openbsd[0-2].* | i[3-7]86-*-openbsd3.[0-3])
619 targ_defvec=i386_aout_nbsd_vec
620 targ_selvecs="i386_elf32_vec i386_aout_bsd_vec"
624 targ_defvec=i386_elf32_vec
625 targ_selvecs=i386_aout_nbsd_vec
628 targ_defvec=i386_elf32_vec
629 targ_selvecs="i386_nlm32_vec i386_coff_vec i386_aout_vec"
631 i[3-7]86-*-linux*aout*)
632 targ_defvec=i386_aout_linux_vec
633 targ_selvecs=i386_elf32_vec
637 targ_defvec=i386_elf32_vec
638 targ_selvecs="i386_aout_linux_vec i386_pei_vec"
639 targ64_selvecs="x86_64_elf64_vec x86_64_elf32_vec x86_64_pei_vec l1om_elf64_vec k1om_elf64_vec"
642 targ_defvec=i386_elf32_nacl_vec
643 targ_selvecs="arm_elf32_nacl_be_vec arm_elf32_nacl_le_vec"
644 targ64_selvecs="x86_64_elf64_nacl_vec x86_64_elf32_nacl_vec"
645 targ_archs="$targ_archs bfd_arm_arch"
649 targ_defvec=x86_64_mach_o_vec
650 targ_selvecs="i386_mach_o_vec mach_o_le_vec mach_o_be_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
651 targ_archs="$targ_archs bfd_powerpc_arch bfd_rs6000_arch"
655 targ_defvec=x86_64_elf64_vec
656 targ_selvecs="i386_elf32_vec l1om_elf64_vec k1om_elf64_vec"
660 targ_defvec=x86_64_elf64_vec
661 targ_selvecs="i386_elf32_vec x86_64_elf32_vec l1om_elf64_vec k1om_elf64_vec"
665 targ_defvec=x86_64_elf64_vec
666 targ_selvecs="i386_elf32_vec l1om_elf64_vec k1om_elf64_vec"
669 x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu)
670 targ_defvec=x86_64_elf64_fbsd_vec
671 targ_selvecs="i386_elf32_fbsd_vec i386_coff_vec i386_pei_vec x86_64_pei_vec i386_elf32_vec x86_64_elf64_vec l1om_elf64_vec l1om_elf64_fbsd_vec k1om_elf64_vec k1om_elf64_fbsd_vec"
674 x86_64-*-netbsd* | x86_64-*-openbsd*)
675 targ_defvec=x86_64_elf64_vec
676 targ_selvecs="i386_elf32_vec i386_aout_nbsd_vec i386_coff_vec i386_pei_vec x86_64_pei_vec l1om_elf64_vec k1om_elf64_vec"
680 targ_defvec=x86_64_elf64_vec
681 targ_selvecs="i386_elf32_vec x86_64_elf32_vec i386_aout_linux_vec i386_pei_vec x86_64_pei_vec l1om_elf64_vec k1om_elf64_vec"
685 targ_defvec=x86_64_elf32_nacl_vec
686 targ_selvecs="i386_elf32_nacl_vec x86_64_elf64_nacl_vec arm_elf32_nacl_be_vec arm_elf32_nacl_le_vec"
687 targ_archs="$targ_archs bfd_arm_arch"
690 x86_64-*-mingw* | x86_64-*-pe | x86_64-*-pep | x86_64-*-cygwin)
691 targ_defvec=x86_64_pe_vec
692 targ_selvecs="x86_64_pe_vec x86_64_pei_vec x86_64_pe_be_vec x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec i386_pe_vec i386_pei_vec i386_elf32_vec"
697 targ_defvec=x86_64_elf64_vec
702 targ_defvec=i386_elf32_vec
703 targ_selvecs="i386_coff_lynx_vec i386_aout_lynx_vec"
706 targ_defvec=i386_elf32_vec
708 i[3-7]86-*-mach* | i[3-7]86-*-osf1mk*)
709 targ_defvec=i386_aout_mach3_vec
710 targ_cflags=-DSTAT_FOR_EXEC
714 targ_defvec=i386_aout_os9k_vec
717 targ_defvec=i386_aout_vec
718 targ_selvecs=i386_msdos_vec
721 targ_defvec=i386_elf32_vec
722 targ_selvecs="i386_msdos_vec i386_aout_vec"
725 targ_defvec=i386_pe_vec
726 targ_selvecs="i386_pe_vec i386_pei_vec"
728 i[3-7]86-*-beoself* | i[3-7]86-*-beos*)
729 targ_defvec=i386_elf32_vec
730 targ_selvecs="i386_pe_vec i386_pei_vec"
733 targ_defvec=i386_pei_vec
734 targ_selvecs="i386_pe_vec"
735 # FIXME: This should eventually be checked at runtime.
736 targ_cflags=-DSTRICT_PE_FORMAT
739 targ_defvec=i386_elf32_vec
740 targ_selvecs=i386_coff_vec
742 i[3-7]86-*-mingw32* | i[3-7]86-*-cygwin* | i[3-7]86-*-winnt | i[3-7]86-*-pe)
743 targ_defvec=i386_pe_vec
744 targ_selvecs="i386_pe_vec i386_pei_vec i386_elf32_vec"
748 targ_defvec=i386_coff_vec
750 i[3-7]86-*-aout* | i[3-7]86*-*-vsta*)
751 targ_defvec=i386_aout_vec
754 targ_defvec=i386_elf32_vxworks_vec
758 targ_defvec=i386_elf32_vec
759 targ_selfvecs=i386chaos_vec
762 i860-*-mach3* | i860-*-osf1* | i860-*-coff*)
763 targ_defvec=i860_coff_vec
765 i860-stardent-sysv4* | i860-stardent-elf*)
766 targ_defvec=i860_elf32_le_vec
767 targ_selvecs="i860_elf32_vec i860_elf32_le_vec"
769 i860-*-sysv4* | i860-*-elf*)
770 targ_defvec=i860_elf32_vec
773 i960-*-vxworks4* | i960-*-vxworks5.0)
774 targ_defvec=bout_le_vec
775 targ_selvecs="bout_be_vec icoff_le_vec icoff_be_vec ieee_vec"
778 i960-*-vxworks5.* | i960-*-coff* | i960-*-sysv*)
779 targ_defvec=icoff_le_vec
780 targ_selvecs="icoff_be_vec bout_le_vec bout_be_vec ieee_vec"
783 i960-*-vxworks* | i960-*-aout* | i960-*-bout* | i960-*-nindy*)
784 targ_defvec=bout_le_vec
785 targ_selvecs="bout_be_vec icoff_le_vec icoff_be_vec ieee_vec"
789 targ_defvec=i960_elf32_vec
790 targ_selvecs="icoff_le_vec icoff_be_vec"
794 targ_defvec=ip2k_elf32_vec
798 targ_defvec=iq2000_elf32_vec
801 lm32-*-elf | lm32-*-rtems*)
802 targ_defvec=lm32_elf32_vec
803 targ_selvecs=lm32_elf32_fdpic_vec
807 targ_defvec=lm32_elf32_fdpic_vec
808 targ_selvecs=lm32_elf32_vec
811 m32c-*-elf | m32c-*-rtems*)
812 targ_defvec=m32c_elf32_vec
816 targ_defvec=m32r_elf32_linux_le_vec
817 targ_selvecs="m32r_elf32_linux_vec m32r_elf32_linux_le_vec"
820 targ_defvec=m32r_elf32_linux_vec
821 targ_selvecs="m32r_elf32_linux_vec m32r_elf32_linux_le_vec"
824 targ_defvec=m32r_elf32_le_vec
825 targ_selvecs="m32r_elf32_vec m32r_elf32_le_vec"
828 targ_defvec=m32r_elf32_vec
831 m68hc11-*-* | m6811-*-*)
832 targ_defvec=m68hc11_elf32_vec
833 targ_selvecs="m68hc11_elf32_vec m68hc12_elf32_vec"
835 m68hc12-*-* | m6812-*-*)
836 targ_defvec=m68hc12_elf32_vec
837 targ_selvecs="m68hc11_elf32_vec m68hc12_elf32_vec"
841 targ_defvec=m68k_coff_sysv_vec
844 targ_defvec=m68k_aout_hp300bsd_vec
848 targ_defvec=aout0_be_vec
849 # We include core_cisco_be_vec here, rather than making a separate cisco
850 # configuration, so that cisco-core.c gets routinely tested at
851 # least for compilation.
852 targ_selvecs="core_cisco_be_vec ieee_vec"
855 m68*-*-elf* | m68*-*-sysv4* | m68*-*-uclinux*)
856 targ_defvec=m68k_elf32_vec
857 targ_selvecs="m68k_coff_vec ieee_vec"
860 targ_defvec=m68k_elf32_vec
861 targ_selvecs="m68k_coff_vec m68k_versados_vec ieee_vec aout0_be_vec"
863 m68*-*-coff* | m68*-*-sysv*)
864 targ_defvec=m68k_coff_vec
865 targ_selvecs="m68k_coff_vec m68k_versados_vec ieee_vec"
868 targ_defvec=m68k_aout_hp300hpux_vec
872 targ_defvec=m68k_aout_linux_vec
873 targ_selvecs=m68k_elf32_vec
877 targ_defvec=m68k_elf32_vec
878 targ_selvecs=m68k_aout_linux_vec
881 targ_defvec=m68k_elf32_vec
882 # targ_selvecs=m68kmach3_vec
883 # targ_cflags=-DSTAT_FOR_EXEC
886 targ_defvec=m68k_aout_4knbsd_vec
887 targ_selvecs="m68k_aout_nbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
891 targ_defvec=m68k_elf32_vec
892 targ_selvecs="m68k_aout_nbsd_vec m68k_aout_4knbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
894 m68*-*-netbsdaout* | m68*-*-netbsd*)
895 targ_defvec=m68k_aout_nbsd_vec
896 targ_selvecs="m68k_aout_4knbsd_vec m68k_elf32_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
900 targ_defvec=m68k_aout_nbsd_vec
901 targ_selvecs="m68k_aout_4knbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
904 m68*-*-sunos* | m68*-*-os68k* | m68*-*-vxworks* | m68*-netx-* | \
905 m68*-*-bsd* | m68*-*-vsta*)
906 targ_defvec=sparc_aout_sunos_be_vec
910 targ_defvec=sparc_aout_sunos_be_vec
911 targ_selvecs="m68k_coff_vec m68k_versados_vec tekhex_vec"
915 targ_defvec=m68k_elf32_vec
916 targ_selvecs=m68k_coff_vec
919 targ_defvec=m68k_elf32_vec
920 targ_selvecs=ieee_vec
924 m88*-harris-cxux* | m88*-*-dgux* | m88*-*-sysv4*)
925 targ_defvec=m88k_elf32_vec
926 targ_selvecs=m88k_coff_bcs_vec
929 targ_defvec=m88k_aout_mach3_vec
930 targ_cflags=-DSTAT_FOR_EXEC
933 targ_defvec=m88k_aout_obsd_vec
937 targ_defvec=m88k_coff_bcs_vec
942 targ_defvec=mcore_elf32_be_vec
943 targ_selvecs="mcore_elf32_be_vec mcore_elf32_le_vec"
946 targ_defvec=mcore_pe_be_vec
947 targ_selvecs="mcore_pe_be_vec mcore_pe_le_vec mcore_pei_be_vec mcore_pei_le_vec"
951 targ_defvec=mep_elf32_vec
952 targ_selvecs=mep_elf32_le_vec
956 targ_defvec=metag_elf32_vec
961 targ_defvec=microblaze_elf32_le_vec
962 targ_selvecs=microblaze_elf32_vec
966 targ_defvec=microblaze_elf32_vec
967 targ_selvecs=microblaze_elf32_le_vec
971 targ_defvec=mips_ecoff_be_vec
972 targ_selvecs=mips_ecoff_le_vec
976 targ_defvec=mips_elf32_trad_le_vec
977 targ_selvecs="mips_elf32_trad_be_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec mips_ecoff_le_vec mips_ecoff_be_vec"
980 targ_defvec=mips_elf32_trad_be_vec
981 targ_selvecs="mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
984 mips*-dec-* | mips*el-*-ecoff*)
985 targ_defvec=mips_ecoff_le_vec
986 targ_selvecs=mips_ecoff_be_vec
989 targ_defvec=mips_ecoff_be_vec
990 targ_selvecs=mips_ecoff_le_vec
994 targ_defvec=mips_elf32_n_be_vec
995 targ_selvecs="mips_elf32_n_le_vec mips_elf32_be_vec mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
998 targ_defvec=mips_elf32_n_le_vec
999 targ_selvecs="mips_elf32_n_le_vec mips_elf32_n_be_vec mips_elf32_be_vec mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
1002 targ_defvec=mips_elf32_le_vec
1003 targ_selvecs="mips_elf32_be_vec mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
1006 targ_defvec=mips_elf32_be_vec
1007 targ_selvecs="mips_elf32_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1010 mips*-sgi-* | mips*-*-bsd*)
1011 targ_defvec=mips_ecoff_be_vec
1012 targ_selvecs=mips_ecoff_le_vec
1015 targ_defvec=mips_ecoff_bele_vec
1016 targ_selvecs="mips_ecoff_le_vec mips_ecoff_be_vec"
1020 targ_defvec=mips_elf32_trad_be_vec
1021 targ_selvecs="mips_elf32_trad_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1024 mips*-*-sysv* | mips*-*-riscos*)
1025 targ_defvec=mips_ecoff_be_vec
1026 targ_selvecs=mips_ecoff_le_vec
1030 targ_defvec=mips_elf32_vxworks_le_vec
1031 targ_selvecs="mips_elf32_le_vec mips_elf32_vxworks_be_vec mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1034 targ_defvec=mips_elf32_vxworks_be_vec
1035 targ_selvecs="mips_elf32_be_vec mips_elf32_vxworks_le_vec mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1038 targ_defvec=mips_elf32_trad_le_vec
1039 targ_selvecs="mips_elf32_trad_be_vec mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
1041 mips*-sde-elf* | mips*-mti-elf* | mips*-img-elf*)
1042 targ_defvec=mips_elf32_trad_be_vec
1043 targ_selvecs="mips_elf32_trad_le_vec mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
1045 mips*el-*-elf* | mips*el-*-vxworks* | mips*-*-chorus*)
1046 targ_defvec=mips_elf32_le_vec
1047 targ_selvecs="mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1049 mips*-*-elf* | mips*-*-rtems* | mips*-*-vxworks | mips*-*-windiss)
1050 targ_defvec=mips_elf32_be_vec
1051 targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
1054 targ_defvec=mips_elf32_be_vec
1055 targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
1058 targ_defvec=mips_elf64_trad_be_vec
1059 targ_selvecs="mips_elf32_ntrad_le_vec mips_elf32_ntrad_be_vec mips_elf32_trad_le_vec mips_elf32_trad_be_vec mips_elf64_trad_le_vec"
1062 targ_defvec=mips_elf32_le_vec
1063 targ_selvecs="mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_le_vec mips_ecoff_be_vec"
1066 targ_defvec=mips_elf32_be_vec
1067 targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1070 targ_defvec=mips_elf32_ntrad_le_vec
1071 targ_selvecs="mips_elf32_ntrad_be_vec mips_elf32_trad_le_vec mips_elf32_trad_be_vec mips_elf64_trad_le_vec mips_elf64_trad_be_vec"
1074 targ_defvec=mips_elf32_ntrad_be_vec
1075 targ_selvecs="mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
1078 targ_defvec=mips_elf32_trad_le_vec
1079 targ_selvecs="mips_elf32_trad_be_vec mips_ecoff_le_vec mips_ecoff_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_le_vec mips_elf32_ntrad_be_vec mips_elf64_trad_be_vec"
1082 targ_defvec=mips_elf32_trad_be_vec
1083 targ_selvecs="mips_elf32_trad_le_vec mips_ecoff_be_vec mips_ecoff_le_vec mips_elf32_ntrad_be_vec mips_elf64_trad_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_le_vec"
1085 mips64*el-*-freebsd* | mips64*el-*-kfreebsd*-gnu)
1087 targ_defvec=mips_elf32_ntradfbsd_le_vec
1088 targ_selvecs="mips_elf32_ntradfbsd_be_vec mips_elf32_tradfbsd_le_vec mips_elf32_tradfbsd_be_vec mips_elf64_tradfbsd_le_vec mips_elf64_tradfbsd_be_vec"
1090 targ_selvecs="${targ_selvecs} mips_elf32_ntrad_le_vec mips_elf32_ntrad_be_vec mips_elf32_trad_le_vec mips_elf32_trad_be_vec mips_elf64_trad_le_vec mips_elf64_trad_be_vec"
1092 mips64*-*-freebsd* | mips64*-*-kfreebsd*-gnu)
1094 targ_defvec=mips_elf32_ntradfbsd_be_vec
1095 targ_selvecs="mips_elf32_ntradfbsd_le_vec mips_elf32_tradfbsd_be_vec mips_elf32_tradfbsd_le_vec mips_elf64_tradfbsd_be_vec mips_elf64_tradfbsd_le_vec"
1097 targ_selvecs="${targ_selvecs} mips_elf32_ntrad_be_vec mips_elf32_ntrad_le_vec mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf64_trad_be_vec mips_elf64_trad_le_vec"
1099 mips*el-*-freebsd* | mips*el-*-kfreebsd*-gnu)
1101 targ_defvec=mips_elf32_tradfbsd_le_vec
1102 targ_selvecs="mips_elf32_tradfbsd_be_vec mips_elf32_ntradfbsd_le_vec mips_elf64_tradfbsd_le_vec mips_elf32_ntradfbsd_be_vec mips_elf64_tradfbsd_be_vec"
1104 targ_selvecs="${targ_selvecs} mips_elf32_trad_le_vec mips_elf32_trad_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_le_vec mips_elf32_ntrad_be_vec mips_elf64_trad_be_vec"
1106 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu)
1108 targ_defvec=mips_elf32_tradfbsd_be_vec
1109 targ_selvecs="mips_elf32_tradfbsd_le_vec mips_elf32_ntradfbsd_be_vec mips_elf64_tradfbsd_be_vec mips_elf32_ntradfbsd_le_vec mips_elf64_tradfbsd_le_vec"
1111 targ_selvecs="${targ_selvecs} mips_elf32_trad_be_vec mips_elf32_trad_le_vec mips_elf32_ntrad_be_vec mips_elf64_trad_be_vec mips_elf32_ntrad_le_vec mips_elf64_trad_le_vec"
1114 targ_defvec=mmix_elf64_vec
1115 targ_selvecs=mmix_mmo_vec
1120 targ_defvec=mn10200_elf32_vec
1124 targ_defvec=mn10300_elf32_vec
1129 targ_defvec=mt_elf32_vec
1133 targ_defvec=msp430_elf32_vec
1134 targ_selvecs=msp430_elf32_ti_vec
1138 targ_defvec=nds32_elf32_linux_le_vec
1139 targ_selvecs=nds32_elf32_linux_be_vec
1143 targ_defvec=nds32_elf32_linux_be_vec
1144 targ_selvecs=nds32_elf32_linux_le_vec
1148 targ_defvec=nds32_elf32_le_vec
1149 targ_selvecs=nds32_elf32_be_vec
1153 targ_defvec=nds32_elf32_be_vec
1154 targ_selvecs=nds32_elf32_le_vec
1157 ns32k-pc532-mach* | ns32k-pc532-ux*)
1158 targ_defvec=ns32k_aout_pc532mach_vec
1161 ns32k-*-netbsd* | ns32k-*-lites* | ns32k-*-openbsd*)
1162 targ_defvec=ns32k_aout_pc532nbsd_vec
1167 targ_defvec=nios2_elf32_be_vec
1168 targ_selvecs=nios2_elf32_le_vec
1172 targ_defvec=nios2_elf32_le_vec
1173 targ_selvecs=nios2_elf32_be_vec
1177 targ_defvec=nios2_elf32_le_vec
1178 targ_selvecs=nios2_elf32_be_vec
1181 or1k-*-elf | or1k-*-linux* | or1k-*-rtems*)
1182 targ_defvec=or1k_elf32_vec
1185 or1knd-*-elf | or1knd-*-linux* | or1knd-*-rtems*)
1186 targ_defvec=or1k_elf32_vec
1190 targ_defvec=pdp11_aout_vec
1195 targ_defvec=pj_elf32_vec
1196 targ_selvecs="pj_elf32_vec pj_elf32_le_vec"
1200 targ_defvec=pj_elf32_le_vec
1201 targ_selvecs="pj_elf32_le_vec pj_elf32_vec i386_elf32_vec"
1204 powerpc-*-aix5.[01] | rs6000-*-aix5.[01])
1205 targ_defvec=rs6000_xcoff_vec
1206 targ_selvecs="rs6000_xcoff64_aix_vec"
1210 powerpc64-*-aix5.[01] | rs6000-*-aix5.[01])
1211 targ_defvec=rs6000_xcoff64_aix_vec
1212 targ_selvecs="rs6000_xcoff_vec"
1216 powerpc-*-aix[5-9]* | rs6000-*-aix[5-9]*)
1217 targ_cflags=-DAIX_WEAK_SUPPORT
1218 targ_defvec=rs6000_xcoff_vec
1219 targ_selvecs="rs6000_xcoff64_aix_vec"
1223 powerpc64-*-aix[5-9]* | rs6000-*-aix[5-9]*)
1224 targ_cflags=-DAIX_WEAK_SUPPORT
1225 targ_defvec=rs6000_xcoff64_aix_vec
1226 targ_selvecs="rs6000_xcoff_vec"
1231 powerpc-*-aix* | powerpc-*-beos* | rs6000-*-*)
1232 targ_defvec=rs6000_xcoff_vec
1233 targ64_selvecs=rs6000_xcoff64_vec
1235 *-*-aix4.[3456789]* | *-*-aix[56789]*)
1238 targ_cflags=-DSMALL_ARCHIVE;;
1243 targ_defvec=rs6000_xcoff64_vec
1244 targ_selvecs=rs6000_xcoff_vec
1247 powerpc64-*-freebsd*)
1248 targ_defvec=powerpc_elf64_fbsd_vec
1249 targ_selvecs="powerpc_elf64_vec powerpc_elf32_vec powerpc_elf32_fbsd_vec powerpc_elf32_le_vec rs6000_xcoff_vec rs6000_xcoff64_vec rs6000_xcoff64_aix_vec"
1252 powerpc64-*-elf* | powerpc-*-elf64* | powerpc64-*-linux* | \
1254 targ_defvec=powerpc_elf64_vec
1255 targ_selvecs="powerpc_elf64_le_vec powerpc_elf32_vec powerpc_elf32_le_vec rs6000_xcoff_vec rs6000_xcoff64_vec rs6000_xcoff64_aix_vec"
1258 powerpc64le-*-elf* | powerpcle-*-elf64* | powerpc64le-*-linux* | \
1259 powerpc64le-*-*bsd*)
1260 targ_defvec=powerpc_elf64_le_vec
1261 targ_selvecs="powerpc_elf64_vec powerpc_elf32_le_vec powerpc_elf32_vec rs6000_xcoff_vec rs6000_xcoff64_vec rs6000_xcoff64_aix_vec"
1265 powerpc-*-*freebsd*)
1266 targ_defvec=powerpc_elf32_fbsd_vec
1267 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_elf32_le_vec powerpc_boot_vec"
1268 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec powerpc_elf64_fbsd_vec"
1270 powerpc-*-*bsd* | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | \
1271 powerpc-*-solaris2* | powerpc-*-linux-* | powerpc-*-rtems* | \
1273 targ_defvec=powerpc_elf32_vec
1274 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_le_vec powerpc_boot_vec"
1275 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1278 targ_defvec=powerpc_elf32_vec
1279 targ_selvecs="powerpc_elf32_le_vec powerpc_boot_vec"
1280 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1282 powerpc-*-darwin* | powerpc-*-macos10* | powerpc-*-rhapsody*)
1283 targ_defvec=mach_o_be_vec
1284 targ_selvecs="mach_o_be_vec mach_o_le_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
1285 targ_archs="$targ_archs bfd_i386_arch"
1288 targ_defvec=powerpc_xcoff_vec
1291 targ_defvec=powerpc_elf32_vec
1292 targ_selvecs="rs6000_xcoff_vec"
1293 targ_cflags=-DSMALL_ARCHIVE
1296 targ_defvec=powerpc_elf32_vec
1297 targ_selvecs="powerpc_nlm32_vec rs6000_xcoff_vec"
1300 targ_defvec=powerpc_elf32_vec
1301 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_le_vec powerpc_boot_vec"
1303 powerpc-*-vxworks* | powerpc-*-windiss*)
1304 targ_defvec=powerpc_elf32_vxworks_vec
1305 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_elf32_le_vec powerpc_boot_vec"
1306 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1309 targ_defvec=powerpc_elf32_le_vec
1310 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_boot_vec"
1312 powerpcle-*-elf* | powerpcle-*-sysv4* | powerpcle-*-eabi* | \
1313 powerpcle-*-solaris2* | powerpcle-*-linux-* | powerpcle-*-vxworks*)
1314 targ_defvec=powerpc_elf32_le_vec
1315 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_boot_vec"
1316 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1318 powerpcle-*-pe | powerpcle-*-winnt* | powerpcle-*-cygwin*)
1319 targ_defvec=powerpc_pe_le_vec
1320 targ_selvecs="powerpc_pei_le_vec powerpc_pei_vec powerpc_pe_le_vec powerpc_pe_vec"
1324 targ_defvec=rl78_elf32_vec
1328 targ_defvec=rx_elf32_le_vec
1329 targ_selvecs="rx_elf32_be_vec rx_elf32_le_vec rx_elf32_be_ns_vec"
1333 targ_defvec=s390_elf32_vec
1334 targ64_selvecs=s390_elf64_vec
1339 targ_defvec=s390_elf64_vec
1340 targ_selvecs=s390_elf32_vec
1344 targ_defvec=s390_elf64_vec
1349 targ_defvec=score_elf32_be_vec
1350 targ_selvecs=score_elf32_le_vec
1354 targ_defvec=sh64_elf32_le_vec
1355 targ_selvecs="sh64_elf32_vec sh64_elf64_le_vec sh64_elf64_vec sh_elf32_le_vec sh_elf32_vec"
1360 targ_defvec=sh64_elf32_vec
1361 targ_selvecs="sh64_elf32_le_vec sh64_elf64_vec sh64_elf64_le_vec sh_elf32_vec sh_elf32_le_vec"
1366 targ_defvec=sh64_elf32_linux_be_vec
1367 targ_selvecs="sh64_elf32_linux_vec sh64_elf64_linux_be_vec sh64_elf64_linux_vec sh_elf32_linux_be_vec sh_elf32_linux_vec"
1371 targ_defvec=sh64_elf32_linux_vec
1372 targ_selvecs="sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec sh_elf32_linux_vec sh_elf32_linux_be_vec"
1376 targ_defvec=sh_elf32_linux_be_vec
1377 targ_selvecs="sh_elf32_linux_vec sh64_elf32_linux_vec sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec"
1383 targ_defvec=sh_elf32_linux_be_vec
1384 targ_selvecs=sh_elf32_linux_vec
1387 targ_defvec=sh_elf32_linux_vec
1388 targ_selvecs=sh_elf32_linux_be_vec
1391 sh-*-uclinux* | sh[12]-*-uclinux*)
1392 targ_defvec=sh_elf32_vec
1393 targ_selvecs="sh_elf32_le_vec sh_elf32_linux_be_vec sh_elf32_linux_vec sh_elf32_fdpic_le_vec sh_elf32_fdpic_be_vec"
1395 targ_selvecs="${targ_selvecs} sh64_elf32_linux_vec sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec"
1401 targ_defvec=sh64_elf32_nbsd_le_vec
1402 targ_selvecs="sh64_elf32_nbsd_vec sh64_elf64_nbsd_le_vec sh64_elf64_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1406 targ_defvec=sh64_elf32_nbsd_vec
1407 targ_selvecs="sh64_elf32_nbsd_le_vec sh64_elf64_nbsd_le_vec sh64_elf64_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1412 targ_defvec=sh64_elf64_nbsd_le_vec
1413 targ_selvecs="sh64_elf64_nbsd_vec sh64_elf32_nbsd_le_vec sh64_elf32_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1417 targ_defvec=sh64_elf64_nbsd_vec
1418 targ_selvecs="sh64_elf64_nbsd_le_vec sh64_elf32_nbsd_le_vec sh64_elf32_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1423 targ_defvec=sh_elf32_nbsd_le_vec
1424 targ_selvecs="sh_elf32_nbsd_vec sh_coff_vec sh_coff_le_vec sh64_elf32_nbsd_le_vec sh64_elf32_nbsd_vec sh64_elf64_nbsd_le_vec sh64_elf64_nbsd_vec"
1428 targ_defvec=sh_elf32_nbsd_vec
1429 targ_selvecs="sh_elf32_nbsd_le_vec sh_coff_vec sh_coff_le_vec sh64_elf32_nbsd_le_vec sh64_elf32_nbsd_vec sh64_elf64_nbsd_le_vec sh64_elf64_nbsd_vec"
1435 targ_defvec=sh_elf32_nbsd_vec
1436 targ_selvecs="sh_elf32_nbsd_le_vec sh_coff_vec sh_coff_le_vec"
1439 targ_defvec=sh_elf32_symbian_le_vec
1440 targ_selvecs="sh_coff_le_vec sh_coff_small_le_vec"
1445 shl*-*-elf* | sh[1234]l*-*-elf* | sh3el*-*-elf* | shl*-*-kaos*)
1446 targ_defvec=sh_elf32_le_vec
1447 targ_selvecs="sh_elf32_vec sh_coff_le_vec sh_coff_vec sh_coff_small_le_vec sh_coff_small_vec sh64_elf32_vec sh64_elf32_le_vec sh64_elf64_vec sh64_elf64_le_vec"
1454 targ_defvec=sh_coff_vec
1455 targ_selvecs="sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1460 sh-*-elf* | sh[1234]*-elf* | sh-*-rtems* | sh-*-kaos*)
1461 targ_defvec=sh_elf32_vec
1462 targ_selvecs="sh_elf32_le_vec sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec sh64_elf32_vec sh64_elf32_le_vec sh64_elf64_vec sh64_elf64_le_vec"
1469 targ_defvec=sh_elf32_vec
1470 targ_selvecs="sh_elf32_le_vec sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1474 targ_defvec=sh_elf32_nbsd_le_vec
1475 targ_selvecs="sh_elf32_nbsd_vec sh_coff_vec sh_coff_le_vec"
1478 targ_defvec=sh_pe_le_vec
1479 targ_selvecs="sh_pe_le_vec sh_pei_le_vec"
1483 targ_defvec=sh_elf32_vxworks_vec
1484 targ_selvecs="sh_elf32_vxworks_le_vec"
1485 # FIXME None of the following are actually used on this target, but
1486 # they're necessary for coff-sh.c (which is unconditionally used) to be
1487 # compiled correctly.
1488 targ_selvecs="$targ_selvecs sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1492 targ_defvec=sh_coff_vec
1493 targ_selvecs="sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1498 targ_defvec=sparc_aout_sunos_be_vec
1499 targ_selvecs=sparc_aout_le_vec
1503 targ_defvec=sparc_aout_sunos_be_vec
1506 sparclite-*-elf* | sparc86x-*-elf*)
1507 targ_defvec=sparc_elf32_vec
1510 targ_defvec=sparc_elf32_vec
1512 sparc-*-linux*aout*)
1513 targ_defvec=sparc_aout_linux_vec
1514 targ_selvecs="sparc_elf32_vec sparc_aout_sunos_be_vec"
1517 sparc-*-linux-* | sparcv*-*-linux-*)
1518 targ_defvec=sparc_elf32_vec
1519 targ_selvecs="sparc_aout_linux_vec sparc_elf64_vec sparc_aout_sunos_be_vec"
1522 targ_defvec=sparc_elf32_vec
1523 targ_selvecs=sparc_aout_nbsd_vec
1525 sparc-*-netbsdaout* | sparc-*-netbsd*)
1526 targ_defvec=sparc_aout_nbsd_vec
1527 targ_selvecs=sparc_elf32_vec
1530 sparc-*-openbsd[0-2].* | sparc-*-openbsd3.[0-1])
1531 targ_defvec=sparc_aout_nbsd_vec
1535 targ_defvec=sparc_elf32_vec
1536 targ_selvecs=sparc_aout_nbsd_vec
1539 targ_defvec=sparc_elf32_vec
1540 targ_selvecs=sparc_aout_sunos_be_vec
1542 sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
1543 targ_defvec=sparc_elf32_sol2_vec
1544 targ_selvecs=sparc_aout_sunos_be_vec
1547 sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
1548 targ_defvec=sparc_elf32_sol2_vec
1549 targ_selvecs="sparc_elf64_sol2_vec sparc_aout_sunos_be_vec"
1554 targ_defvec=sparc_elf32_vec
1557 targ_defvec=sparc_elf32_vxworks_vec
1558 targ_selvecs="sparc_elf32_vec sparc_aout_sunos_be_vec"
1561 targ_defvec=sparc_elf32_vec
1562 targ_selvecs="sparc_nlm32_vec sparc_aout_sunos_be_vec"
1566 targ_defvec=sparc_aout_sunos_be_vec
1571 targ_defvec=sparc_elf64_vec
1572 targ_selvecs="sparc_elf32_vec sparc_aout_linux_vec sparc_aout_sunos_be_vec"
1575 sparc64-*-elf* | sparc64-*-rtems* )
1576 targ_defvec=sparc_elf64_vec
1577 targ_selvecs=sparc_elf32_vec
1582 targ_defvec=sparc_coff_vec
1585 targ_defvec=sparc_elf32_vec
1586 targ_selvecs="sparc_aout_sunos_be_vec sparc_coff_vec"
1589 targ_defvec=sparc_aout_sunos_be_vec
1594 targ_defvec=spu_elf32_vec
1600 targ_defvec=aout_vec
1606 targ_defvec=tic6x_elf32_c6000_le_vec
1607 targ_selvecs="tic6x_elf32_c6000_be_vec tic6x_elf32_le_vec tic6x_elf32_be_vec"
1611 targ_defvec=tic6x_elf32_linux_le_vec
1612 targ_selvecs="tic6x_elf32_linux_be_vec tic6x_elf32_le_vec tic6x_elf32_be_vec"
1616 targ_defvec=tic80_coff_vec
1622 targ_defvec=tilegx_elf64_le_vec
1623 targ_selvecs="tilegx_elf64_be_vec tilegx_elf32_be_vec tilegx_elf32_le_vec"
1626 targ_defvec=tilegx_elf64_be_vec
1627 targ_selvecs="tilegx_elf64_le_vec tilegx_elf32_be_vec tilegx_elf32_le_vec"
1632 targ_defvec=tilepro_elf32_vec
1636 targ_defvec=ft32_elf32_vec
1640 targ_defvec=v850_elf32_vec
1641 targ_selvecs="v800_elf32_vec"
1645 targ_defvec=vax_elf32_vec
1646 targ_selvecs="vax_aout_nbsd_vec vax_aout_1knbsd_vec"
1649 vax-*-netbsdaout* | vax-*-netbsd*)
1650 targ_defvec=vax_aout_nbsd_vec
1651 targ_selvecs="vax_elf32_vec vax_aout_1knbsd_vec"
1655 vax-*-bsd* | vax-*-ultrix*)
1656 targ_defvec=vax_aout_bsd_vec
1661 targ_defvec=vax_aout_nbsd_vec
1666 targ_defvec=vax_elf32_vec
1670 targ_defvec=visium_elf32_vec
1674 targ_defvec=we32k_coff_vec
1678 targ_defvec=w65_coff_vec
1682 targ_defvec=xgate_elf32_vec
1683 targ_selvecs="xgate_elf32_vec"
1687 targ_defvec=xstormy16_elf32_vec
1691 targ_defvec=xtensa_elf32_le_vec
1692 targ_selvecs=xtensa_elf32_be_vec
1695 targ_defvec=xc16x_elf32_vec
1699 targ_defvec=z80_coff_vec
1704 targ_defvec=z8k_coff_vec
1709 targ_defvec=ieee_vec
1713 targ_defvec=aout_adobe_vec
1718 targ_defvec=m68k_aout_newsos3_vec
1723 targ_defvec=m68k_coff_vec
1724 targ_selvecs=ieee_vec
1726 # END OF targmatch.h
1728 echo 1>&2 "*** BFD does not support target ${targ}."
1729 echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
1734 # All MIPS ELF targets need a 64-bit bfd_vma.
1735 case "${targ_defvec} ${targ_selvecs}" in
1741 case "${host64}${want64}" in
1743 targ_selvecs="${targ_selvecs} ${targ64_selvecs}"
1747 # If we support any ELF target, then automatically add support for the
1748 # generic ELF targets. This permits an objdump with some ELF support
1749 # to be used on an arbitrary ELF file for anything other than
1750 # relocation information.
1751 case "${targ_defvec} ${targ_selvecs}" in
1752 *elf64* | *mips_elf32_n*)
1753 targ_selvecs="${targ_selvecs} elf64_le_vec elf64_be_vec elf32_le_vec elf32_be_vec"
1756 targ_selvecs="${targ_selvecs} elf32_le_vec elf32_be_vec"
1760 # If we support Intel L1OM target, then add support for bfd_l1om_arch.
1761 case "${targ_defvec} ${targ_selvecs}" in
1763 targ_archs="$targ_archs bfd_l1om_arch"
1767 # If we support Intel K1OM target, then add support for bfd_k1om_arch.
1768 case "${targ_defvec} ${targ_selvecs}" in
1770 targ_archs="$targ_archs bfd_k1om_arch"