3 # Copyright (C) 2012-2014 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_coff_vec
470 targ_defvec=h8500_coff_vec
476 targ_defvec=hppa_elf64_linux_vec
477 targ_selvecs=hppa_elf64_vec
481 targ_defvec=hppa_elf64_vec
482 targ_selvecs=hppa_elf64_linux_vec
483 targ_cflags=-DHPUX_LARGE_AR_IDS
489 targ_defvec=hppa_elf32_linux_vec
490 targ_selvecs=hppa_elf32_vec
493 targ_defvec=hppa_elf32_nbsd_vec
494 targ_selvecs="hppa_elf32_vec hppa_elf32_linux_vec"
496 hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-sysv4* | hppa*-*-openbsd*)
497 targ_defvec=hppa_elf32_vec
498 targ_selvecs=hppa_elf32_linux_vec
502 targ_defvec=hppa_som_vec
503 targ_selvecs=hppa_elf32_vec
505 hppa*-*-hpux* | hppa*-*-hiux* | hppa*-*-mpeix*)
506 targ_defvec=hppa_som_vec
509 targ_defvec=hppa_som_vec
510 targ_selvecs=hppa_elf32_vec
514 targ_defvec=i370_elf32_vec
515 targ_selvecs="i370_elf32_vec"
517 i[3-7]86-*-sco3.2v5*coff)
518 targ_defvec=i386_coff_vec
519 targ_selvecs=i386_elf32_vec
521 i[3-7]86-*-sysv4* | i[3-7]86-*-unixware* | \
522 i[3-7]86-*-elf | i[3-7]86-*-sco3.2v5* | \
523 i[3-7]86-*-dgux* | i[3-7]86-*-sysv5*)
524 targ_defvec=i386_elf32_vec
525 targ_selvecs=i386_coff_vec
527 i[3-7]86-*-solaris2*)
528 targ_defvec=i386_elf32_sol2_vec
529 targ_selvecs="i386_coff_vec"
530 targ64_selvecs="x86_64_elf64_sol2_vec l1om_elf64_vec k1om_elf64_vec"
535 targ_defvec=i386_elf32_sol2_vec
536 targ_selvecs="x86_64_elf64_sol2_vec l1om_elf64_vec k1om_elf64_vec i386_coff_vec"
541 targ_defvec=i386_elf32_vec
542 targ_selvecs=i386_elf32_vec
545 targ_defvec=i386_elf32_vec
546 targ_selvecs=i386_coff_vec
549 targ_defvec=i386_elf32_vec
552 targ_defvec=i386_elf32_vec
555 targ_defvec=i386_elf32_vec
556 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
558 *-*-msdosdjgpp* | *-*-go32* )
559 targ_defvec=i386_coff_go32_vec
560 targ_selvecs="i386_coff_go32stubbed_vec i386_aout_vec"
562 i[3-7]86-*-sysv* | i[3-7]86-*-isc* | i[3-7]86-*-sco* | i[3-7]86-*-coff | \
564 targ_defvec=i386_coff_vec
567 targ_defvec=i386_elf32_vec
568 targ_selvecs="i386_coff_vec i386_aout_vec"
570 i[3-7]86-*-darwin* | i[3-7]86-*-macos10* | i[3-7]86-*-rhapsody*)
571 targ_defvec=i386_mach_o_vec
572 targ_selvecs="mach_o_le_vec mach_o_be_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
573 targ64_selvecs=x86_64_mach_o_vec
574 targ_archs="$targ_archs bfd_powerpc_arch bfd_rs6000_arch"
576 i[3-7]86-sequent-bsd*)
577 targ_defvec=i386_aout_dynix_vec
581 targ_defvec=i386_aout_bsd_vec
584 i[3-7]86-*-dragonfly*)
585 targ_defvec=i386_elf32_vec
586 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
588 i[3-7]86-*-freebsdaout* | i[3-7]86-*-freebsd[12].* | \
589 i[3-7]86-*-freebsd[12])
590 targ_defvec=i386_aout_fbsd_vec
591 targ_selvecs=i386_aout_bsd_vec
594 i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu)
595 targ_defvec=i386_elf32_fbsd_vec
596 targ_selvecs="i386_elf32_vec i386_pei_vec i386_coff_vec"
597 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"
598 # FreeBSD <= 4.0 supports only the old nonstandard way of ABI labelling.
600 i[3-7]86-*-freebsd3* | i[3-7]86-*-freebsd4 | i[3-7]86-*-freebsd4.0*)
601 targ_cflags=-DOLD_FREEBSD_ABI_LABEL ;;
604 i[3-7]86-*-netbsdelf* | i[3-7]86-*-netbsd*-gnu* | i[3-7]86-*-knetbsd*-gnu)
605 targ_defvec=i386_elf32_vec
606 targ_selvecs=i386_aout_nbsd_vec
607 targ64_selvecs="x86_64_elf64_vec l1om_elf64_vec k1om_elf64_vec"
609 i[3-7]86-*-netbsdpe*)
610 targ_defvec=i386_pe_vec
611 targ_selvecs="i386_pe_vec i386_pei_vec i386_elf32_vec"
613 i[3-7]86-*-netbsdaout* | i[3-7]86-*-netbsd* | \
614 i[3-7]86-*-openbsd[0-2].* | i[3-7]86-*-openbsd3.[0-3])
615 targ_defvec=i386_aout_nbsd_vec
616 targ_selvecs="i386_elf32_vec i386_aout_bsd_vec"
620 targ_defvec=i386_elf32_vec
621 targ_selvecs=i386_aout_nbsd_vec
624 targ_defvec=i386_elf32_vec
625 targ_selvecs="i386_nlm32_vec i386_coff_vec i386_aout_vec"
627 i[3-7]86-*-linux*aout*)
628 targ_defvec=i386_aout_linux_vec
629 targ_selvecs=i386_elf32_vec
633 targ_defvec=i386_elf32_vec
634 targ_selvecs="i386_aout_linux_vec i386_pei_vec"
635 targ64_selvecs="x86_64_elf64_vec x86_64_elf32_vec x86_64_pei_vec l1om_elf64_vec k1om_elf64_vec"
638 targ_defvec=i386_elf32_nacl_vec
639 targ_selvecs="arm_elf32_nacl_be_vec arm_elf32_nacl_le_vec"
640 targ64_selvecs="x86_64_elf64_nacl_vec x86_64_elf32_nacl_vec"
641 targ_archs="$targ_archs bfd_arm_arch"
645 targ_defvec=x86_64_mach_o_vec
646 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"
647 targ_archs="$targ_archs bfd_powerpc_arch bfd_rs6000_arch"
651 targ_defvec=x86_64_elf64_vec
652 targ_selvecs="i386_elf32_vec l1om_elf64_vec k1om_elf64_vec"
656 targ_defvec=x86_64_elf64_vec
657 targ_selvecs="i386_elf32_vec x86_64_elf32_vec l1om_elf64_vec k1om_elf64_vec"
661 targ_defvec=x86_64_elf64_vec
662 targ_selvecs="i386_elf32_vec l1om_elf64_vec k1om_elf64_vec"
665 x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu)
666 targ_defvec=x86_64_elf64_fbsd_vec
667 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"
670 x86_64-*-netbsd* | x86_64-*-openbsd*)
671 targ_defvec=x86_64_elf64_vec
672 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"
676 targ_defvec=x86_64_elf64_vec
677 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"
681 targ_defvec=x86_64_elf32_nacl_vec
682 targ_selvecs="i386_elf32_nacl_vec x86_64_elf64_nacl_vec arm_elf32_nacl_be_vec arm_elf32_nacl_le_vec"
683 targ_archs="$targ_archs bfd_arm_arch"
686 x86_64-*-mingw* | x86_64-*-pe | x86_64-*-pep | x86_64-*-cygwin)
687 targ_defvec=x86_64_pe_vec
688 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"
693 targ_defvec=x86_64_elf64_vec
698 targ_defvec=i386_elf32_vec
699 targ_selvecs="i386_coff_lynx_vec i386_aout_lynx_vec"
702 targ_defvec=i386_elf32_vec
704 i[3-7]86-*-mach* | i[3-7]86-*-osf1mk*)
705 targ_defvec=i386_aout_mach3_vec
706 targ_cflags=-DSTAT_FOR_EXEC
710 targ_defvec=i386_aout_os9k_vec
713 targ_defvec=i386_aout_vec
714 targ_selvecs=i386_msdos_vec
717 targ_defvec=i386_elf32_vec
718 targ_selvecs="i386_msdos_vec i386_aout_vec"
721 targ_defvec=i386_pe_vec
722 targ_selvecs="i386_pe_vec i386_pei_vec"
724 i[3-7]86-*-beoself* | i[3-7]86-*-beos*)
725 targ_defvec=i386_elf32_vec
726 targ_selvecs="i386_pe_vec i386_pei_vec"
729 targ_defvec=i386_pei_vec
730 targ_selvecs="i386_pe_vec"
731 # FIXME: This should eventually be checked at runtime.
732 targ_cflags=-DSTRICT_PE_FORMAT
735 targ_defvec=i386_elf32_vec
736 targ_selvecs=i386_coff_vec
738 i[3-7]86-*-mingw32* | i[3-7]86-*-cygwin* | i[3-7]86-*-winnt | i[3-7]86-*-pe)
739 targ_defvec=i386_pe_vec
740 targ_selvecs="i386_pe_vec i386_pei_vec i386_elf32_vec"
744 targ_defvec=i386_coff_vec
746 i[3-7]86-*-aout* | i[3-7]86*-*-vsta*)
747 targ_defvec=i386_aout_vec
750 targ_defvec=i386_elf32_vxworks_vec
754 targ_defvec=i386_elf32_vec
755 targ_selfvecs=i386chaos_vec
758 i860-*-mach3* | i860-*-osf1* | i860-*-coff*)
759 targ_defvec=i860_coff_vec
761 i860-stardent-sysv4* | i860-stardent-elf*)
762 targ_defvec=i860_elf32_le_vec
763 targ_selvecs="i860_elf32_vec i860_elf32_le_vec"
765 i860-*-sysv4* | i860-*-elf*)
766 targ_defvec=i860_elf32_vec
769 i960-*-vxworks4* | i960-*-vxworks5.0)
770 targ_defvec=bout_le_vec
771 targ_selvecs="bout_be_vec icoff_le_vec icoff_be_vec ieee_vec"
774 i960-*-vxworks5.* | i960-*-coff* | i960-*-sysv*)
775 targ_defvec=icoff_le_vec
776 targ_selvecs="icoff_be_vec bout_le_vec bout_be_vec ieee_vec"
779 i960-*-vxworks* | i960-*-aout* | i960-*-bout* | i960-*-nindy*)
780 targ_defvec=bout_le_vec
781 targ_selvecs="bout_be_vec icoff_le_vec icoff_be_vec ieee_vec"
785 targ_defvec=i960_elf32_vec
786 targ_selvecs="icoff_le_vec icoff_be_vec"
790 targ_defvec=ip2k_elf32_vec
794 targ_defvec=iq2000_elf32_vec
797 lm32-*-elf | lm32-*-rtems*)
798 targ_defvec=lm32_elf32_vec
799 targ_selvecs=lm32_elf32_fdpic_vec
803 targ_defvec=lm32_elf32_fdpic_vec
804 targ_selvecs=lm32_elf32_vec
807 m32c-*-elf | m32c-*-rtems*)
808 targ_defvec=m32c_elf32_vec
812 targ_defvec=m32r_elf32_linux_le_vec
813 targ_selvecs="m32r_elf32_linux_vec m32r_elf32_linux_le_vec"
816 targ_defvec=m32r_elf32_linux_vec
817 targ_selvecs="m32r_elf32_linux_vec m32r_elf32_linux_le_vec"
820 targ_defvec=m32r_elf32_le_vec
821 targ_selvecs="m32r_elf32_vec m32r_elf32_le_vec"
824 targ_defvec=m32r_elf32_vec
827 m68hc11-*-* | m6811-*-*)
828 targ_defvec=m68hc11_elf32_vec
829 targ_selvecs="m68hc11_elf32_vec m68hc12_elf32_vec"
831 m68hc12-*-* | m6812-*-*)
832 targ_defvec=m68hc12_elf32_vec
833 targ_selvecs="m68hc11_elf32_vec m68hc12_elf32_vec"
837 targ_defvec=m68k_coff_sysv_vec
840 targ_defvec=m68k_aout_hp300bsd_vec
844 targ_defvec=aout0_be_vec
845 # We include core_cisco_be_vec here, rather than making a separate cisco
846 # configuration, so that cisco-core.c gets routinely tested at
847 # least for compilation.
848 targ_selvecs="core_cisco_be_vec ieee_vec"
851 m68*-*-elf* | m68*-*-sysv4* | m68*-*-uclinux*)
852 targ_defvec=m68k_elf32_vec
853 targ_selvecs="m68k_coff_vec ieee_vec"
856 targ_defvec=m68k_elf32_vec
857 targ_selvecs="m68k_coff_vec m68k_versados_vec ieee_vec aout0_be_vec"
859 m68*-*-coff* | m68*-*-sysv*)
860 targ_defvec=m68k_coff_vec
861 targ_selvecs="m68k_coff_vec m68k_versados_vec ieee_vec"
864 targ_defvec=m68k_aout_hp300hpux_vec
868 targ_defvec=m68k_aout_linux_vec
869 targ_selvecs=m68k_elf32_vec
873 targ_defvec=m68k_elf32_vec
874 targ_selvecs=m68k_aout_linux_vec
877 targ_defvec=m68k_elf32_vec
878 # targ_selvecs=m68kmach3_vec
879 # targ_cflags=-DSTAT_FOR_EXEC
882 targ_defvec=m68k_aout_4knbsd_vec
883 targ_selvecs="m68k_aout_nbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
887 targ_defvec=m68k_elf32_vec
888 targ_selvecs="m68k_aout_nbsd_vec m68k_aout_4knbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
890 m68*-*-netbsdaout* | m68*-*-netbsd*)
891 targ_defvec=m68k_aout_nbsd_vec
892 targ_selvecs="m68k_aout_4knbsd_vec m68k_elf32_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
896 targ_defvec=m68k_aout_nbsd_vec
897 targ_selvecs="m68k_aout_4knbsd_vec m68k_aout_hp300bsd_vec sparc_aout_sunos_be_vec"
900 m68*-*-sunos* | m68*-*-os68k* | m68*-*-vxworks* | m68*-netx-* | \
901 m68*-*-bsd* | m68*-*-vsta*)
902 targ_defvec=sparc_aout_sunos_be_vec
906 targ_defvec=sparc_aout_sunos_be_vec
907 targ_selvecs="m68k_coff_vec m68k_versados_vec tekhex_vec"
911 targ_defvec=m68k_elf32_vec
912 targ_selvecs=m68k_coff_vec
915 targ_defvec=m68k_elf32_vec
916 targ_selvecs=ieee_vec
920 m88*-harris-cxux* | m88*-*-dgux* | m88*-*-sysv4*)
921 targ_defvec=m88k_elf32_vec
922 targ_selvecs=m88k_coff_bcs_vec
925 targ_defvec=m88k_aout_mach3_vec
926 targ_cflags=-DSTAT_FOR_EXEC
929 targ_defvec=m88k_aout_obsd_vec
933 targ_defvec=m88k_coff_bcs_vec
938 targ_defvec=mcore_elf32_be_vec
939 targ_selvecs="mcore_elf32_be_vec mcore_elf32_le_vec"
942 targ_defvec=mcore_pe_be_vec
943 targ_selvecs="mcore_pe_be_vec mcore_pe_le_vec mcore_pei_be_vec mcore_pei_le_vec"
947 targ_defvec=mep_elf32_vec
948 targ_selvecs=mep_elf32_le_vec
952 targ_defvec=metag_elf32_vec
957 targ_defvec=microblaze_elf32_le_vec
958 targ_selvecs=microblaze_elf32_vec
962 targ_defvec=microblaze_elf32_vec
963 targ_selvecs=microblaze_elf32_le_vec
967 targ_defvec=mips_ecoff_be_vec
968 targ_selvecs=mips_ecoff_le_vec
972 targ_defvec=mips_elf32_trad_le_vec
973 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"
976 targ_defvec=mips_elf32_trad_be_vec
977 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"
980 mips*-dec-* | mips*el-*-ecoff*)
981 targ_defvec=mips_ecoff_le_vec
982 targ_selvecs=mips_ecoff_be_vec
985 targ_defvec=mips_ecoff_be_vec
986 targ_selvecs=mips_ecoff_le_vec
990 targ_defvec=mips_elf32_n_be_vec
991 targ_selvecs="mips_elf32_n_le_vec mips_elf32_be_vec mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
994 targ_defvec=mips_elf32_n_le_vec
995 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"
998 targ_defvec=mips_elf32_le_vec
999 targ_selvecs="mips_elf32_be_vec mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
1002 targ_defvec=mips_elf32_be_vec
1003 targ_selvecs="mips_elf32_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1006 mips*-sgi-* | mips*-*-bsd*)
1007 targ_defvec=mips_ecoff_be_vec
1008 targ_selvecs=mips_ecoff_le_vec
1011 targ_defvec=mips_ecoff_bele_vec
1012 targ_selvecs="mips_ecoff_le_vec mips_ecoff_be_vec"
1016 targ_defvec=mips_elf32_trad_be_vec
1017 targ_selvecs="mips_elf32_trad_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1020 mips*-*-sysv* | mips*-*-riscos*)
1021 targ_defvec=mips_ecoff_be_vec
1022 targ_selvecs=mips_ecoff_le_vec
1026 targ_defvec=mips_elf32_vxworks_le_vec
1027 targ_selvecs="mips_elf32_le_vec mips_elf32_vxworks_be_vec mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1030 targ_defvec=mips_elf32_vxworks_be_vec
1031 targ_selvecs="mips_elf32_be_vec mips_elf32_vxworks_le_vec mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1034 targ_defvec=mips_elf32_trad_le_vec
1035 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"
1037 mips*-sde-elf* | mips*-mti-elf* | mips*-img-elf*)
1038 targ_defvec=mips_elf32_trad_be_vec
1039 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"
1041 mips*el-*-elf* | mips*el-*-vxworks* | mips*-*-chorus*)
1042 targ_defvec=mips_elf32_le_vec
1043 targ_selvecs="mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec"
1045 mips*-*-elf* | mips*-*-rtems* | mips*-*-vxworks | mips*-*-windiss)
1046 targ_defvec=mips_elf32_be_vec
1047 targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec"
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_elf64_trad_be_vec
1055 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"
1058 targ_defvec=mips_elf32_le_vec
1059 targ_selvecs="mips_elf32_be_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_le_vec mips_ecoff_be_vec"
1062 targ_defvec=mips_elf32_be_vec
1063 targ_selvecs="mips_elf32_le_vec mips_elf64_be_vec mips_elf64_le_vec mips_ecoff_be_vec mips_ecoff_le_vec"
1066 targ_defvec=mips_elf32_ntrad_le_vec
1067 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"
1070 targ_defvec=mips_elf32_ntrad_be_vec
1071 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"
1074 targ_defvec=mips_elf32_trad_le_vec
1075 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"
1078 targ_defvec=mips_elf32_trad_be_vec
1079 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"
1081 mips64*el-*-freebsd* | mips64*el-*-kfreebsd*-gnu)
1083 targ_defvec=mips_elf32_ntradfbsd_le_vec
1084 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"
1086 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"
1088 mips64*-*-freebsd* | mips64*-*-kfreebsd*-gnu)
1090 targ_defvec=mips_elf32_ntradfbsd_be_vec
1091 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"
1093 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"
1095 mips*el-*-freebsd* | mips*el-*-kfreebsd*-gnu)
1097 targ_defvec=mips_elf32_tradfbsd_le_vec
1098 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"
1100 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"
1102 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu)
1104 targ_defvec=mips_elf32_tradfbsd_be_vec
1105 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"
1107 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"
1110 targ_defvec=mmix_elf64_vec
1111 targ_selvecs=mmix_mmo_vec
1116 targ_defvec=mn10200_elf32_vec
1120 targ_defvec=mn10300_elf32_vec
1125 targ_defvec=mt_elf32_vec
1129 targ_defvec=msp430_elf32_vec
1130 targ_selvecs=msp430_elf32_ti_vec
1134 targ_defvec=nds32_elf32_linux_le_vec
1135 targ_selvecs=nds32_elf32_linux_be_vec
1139 targ_defvec=nds32_elf32_linux_be_vec
1140 targ_selvecs=nds32_elf32_linux_le_vec
1144 targ_defvec=nds32_elf32_le_vec
1145 targ_selvecs=nds32_elf32_be_vec
1149 targ_defvec=nds32_elf32_be_vec
1150 targ_selvecs=nds32_elf32_le_vec
1153 ns32k-pc532-mach* | ns32k-pc532-ux*)
1154 targ_defvec=ns32k_aout_pc532mach_vec
1157 ns32k-*-netbsd* | ns32k-*-lites* | ns32k-*-openbsd*)
1158 targ_defvec=ns32k_aout_pc532nbsd_vec
1163 targ_defvec=nios2_elf32_be_vec
1164 targ_selvecs=nios2_elf32_le_vec
1168 targ_defvec=nios2_elf32_le_vec
1169 targ_selvecs=nios2_elf32_be_vec
1173 targ_defvec=nios2_elf32_le_vec
1174 targ_selvecs=nios2_elf32_be_vec
1177 or1k-*-elf | or1k-*-linux* | or1k-*-rtems*)
1178 targ_defvec=or1k_elf32_vec
1181 or1knd-*-elf | or1knd-*-linux* | or1knd-*-rtems*)
1182 targ_defvec=or1k_elf32_vec
1186 targ_defvec=pdp11_aout_vec
1191 targ_defvec=pj_elf32_vec
1192 targ_selvecs="pj_elf32_vec pj_elf32_le_vec"
1196 targ_defvec=pj_elf32_le_vec
1197 targ_selvecs="pj_elf32_le_vec pj_elf32_vec i386_elf32_vec"
1200 powerpc-*-aix5.[01] | rs6000-*-aix5.[01])
1201 targ_defvec=rs6000_xcoff_vec
1202 targ_selvecs="rs6000_xcoff64_aix_vec"
1206 powerpc64-*-aix5.[01] | rs6000-*-aix5.[01])
1207 targ_defvec=rs6000_xcoff64_aix_vec
1208 targ_selvecs="rs6000_xcoff_vec"
1212 powerpc-*-aix[5-9]* | rs6000-*-aix[5-9]*)
1213 targ_cflags=-DAIX_WEAK_SUPPORT
1214 targ_defvec=rs6000_xcoff_vec
1215 targ_selvecs="rs6000_xcoff64_aix_vec"
1219 powerpc64-*-aix[5-9]* | rs6000-*-aix[5-9]*)
1220 targ_cflags=-DAIX_WEAK_SUPPORT
1221 targ_defvec=rs6000_xcoff64_aix_vec
1222 targ_selvecs="rs6000_xcoff_vec"
1227 powerpc-*-aix* | powerpc-*-beos* | rs6000-*-*)
1228 targ_defvec=rs6000_xcoff_vec
1229 targ64_selvecs=rs6000_xcoff64_vec
1231 *-*-aix4.[3456789]* | *-*-aix[56789]*)
1234 targ_cflags=-DSMALL_ARCHIVE;;
1239 targ_defvec=rs6000_xcoff64_vec
1240 targ_selvecs=rs6000_xcoff_vec
1243 powerpc64-*-freebsd*)
1244 targ_defvec=powerpc_elf64_fbsd_vec
1245 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"
1248 powerpc64-*-elf* | powerpc-*-elf64* | powerpc64-*-linux* | \
1250 targ_defvec=powerpc_elf64_vec
1251 targ_selvecs="powerpc_elf64_le_vec powerpc_elf32_vec powerpc_elf32_le_vec rs6000_xcoff_vec rs6000_xcoff64_vec rs6000_xcoff64_aix_vec"
1254 powerpc64le-*-elf* | powerpcle-*-elf64* | powerpc64le-*-linux* | \
1255 powerpc64le-*-*bsd*)
1256 targ_defvec=powerpc_elf64_le_vec
1257 targ_selvecs="powerpc_elf64_vec powerpc_elf32_le_vec powerpc_elf32_vec rs6000_xcoff_vec rs6000_xcoff64_vec rs6000_xcoff64_aix_vec"
1261 powerpc-*-*freebsd*)
1262 targ_defvec=powerpc_elf32_fbsd_vec
1263 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_elf32_le_vec powerpc_boot_vec"
1264 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec powerpc_elf64_fbsd_vec"
1266 powerpc-*-*bsd* | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | \
1267 powerpc-*-solaris2* | powerpc-*-linux-* | powerpc-*-rtems* | \
1269 targ_defvec=powerpc_elf32_vec
1270 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_le_vec powerpc_boot_vec"
1271 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1274 targ_defvec=powerpc_elf32_vec
1275 targ_selvecs="powerpc_elf32_le_vec powerpc_boot_vec"
1276 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1278 powerpc-*-darwin* | powerpc-*-macos10* | powerpc-*-rhapsody*)
1279 targ_defvec=mach_o_be_vec
1280 targ_selvecs="mach_o_be_vec mach_o_le_vec mach_o_fat_vec pef_vec pef_xlib_vec sym_vec"
1281 targ_archs="$targ_archs bfd_i386_arch"
1284 targ_defvec=powerpc_xcoff_vec
1287 targ_defvec=powerpc_elf32_vec
1288 targ_selvecs="rs6000_xcoff_vec"
1289 targ_cflags=-DSMALL_ARCHIVE
1292 targ_defvec=powerpc_elf32_vec
1293 targ_selvecs="powerpc_nlm32_vec rs6000_xcoff_vec"
1296 targ_defvec=powerpc_elf32_vec
1297 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_le_vec powerpc_boot_vec"
1299 powerpc-*-vxworks* | powerpc-*-windiss*)
1300 targ_defvec=powerpc_elf32_vxworks_vec
1301 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_elf32_le_vec powerpc_boot_vec"
1302 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1305 targ_defvec=powerpc_elf32_le_vec
1306 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_boot_vec"
1308 powerpcle-*-elf* | powerpcle-*-sysv4* | powerpcle-*-eabi* | \
1309 powerpcle-*-solaris2* | powerpcle-*-linux-* | powerpcle-*-vxworks*)
1310 targ_defvec=powerpc_elf32_le_vec
1311 targ_selvecs="rs6000_xcoff_vec powerpc_elf32_vec powerpc_boot_vec"
1312 targ64_selvecs="powerpc_elf64_vec powerpc_elf64_le_vec"
1314 powerpcle-*-pe | powerpcle-*-winnt* | powerpcle-*-cygwin*)
1315 targ_defvec=powerpc_pe_le_vec
1316 targ_selvecs="powerpc_pei_le_vec powerpc_pei_vec powerpc_pe_le_vec powerpc_pe_vec"
1320 targ_defvec=rl78_elf32_vec
1324 targ_defvec=rx_elf32_le_vec
1325 targ_selvecs="rx_elf32_be_vec rx_elf32_le_vec rx_elf32_be_ns_vec"
1329 targ_defvec=s390_elf32_vec
1330 targ64_selvecs=s390_elf64_vec
1335 targ_defvec=s390_elf64_vec
1336 targ_selvecs=s390_elf32_vec
1340 targ_defvec=s390_elf64_vec
1345 targ_defvec=score_elf32_be_vec
1346 targ_selvecs=score_elf32_le_vec
1350 targ_defvec=sh64_elf32_le_vec
1351 targ_selvecs="sh64_elf32_vec sh64_elf64_le_vec sh64_elf64_vec sh_elf32_le_vec sh_elf32_vec"
1356 targ_defvec=sh64_elf32_vec
1357 targ_selvecs="sh64_elf32_le_vec sh64_elf64_vec sh64_elf64_le_vec sh_elf32_vec sh_elf32_le_vec"
1362 targ_defvec=sh64_elf32_linux_be_vec
1363 targ_selvecs="sh64_elf32_linux_vec sh64_elf64_linux_be_vec sh64_elf64_linux_vec sh_elf32_linux_be_vec sh_elf32_linux_vec"
1367 targ_defvec=sh64_elf32_linux_vec
1368 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"
1372 targ_defvec=sh_elf32_linux_be_vec
1373 targ_selvecs="sh_elf32_linux_vec sh64_elf32_linux_vec sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec"
1379 targ_defvec=sh_elf32_linux_be_vec
1380 targ_selvecs=sh_elf32_linux_vec
1383 targ_defvec=sh_elf32_linux_vec
1384 targ_selvecs=sh_elf32_linux_be_vec
1387 sh-*-uclinux* | sh[12]-*-uclinux*)
1388 targ_defvec=sh_elf32_vec
1389 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"
1391 targ_selvecs="${targ_selvecs} sh64_elf32_linux_vec sh64_elf32_linux_be_vec sh64_elf64_linux_vec sh64_elf64_linux_be_vec"
1397 targ_defvec=sh64_elf32_nbsd_le_vec
1398 targ_selvecs="sh64_elf32_nbsd_vec sh64_elf64_nbsd_le_vec sh64_elf64_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1402 targ_defvec=sh64_elf32_nbsd_vec
1403 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"
1408 targ_defvec=sh64_elf64_nbsd_le_vec
1409 targ_selvecs="sh64_elf64_nbsd_vec sh64_elf32_nbsd_le_vec sh64_elf32_nbsd_vec sh_elf32_nbsd_vec sh_elf32_nbsd_le_vec"
1413 targ_defvec=sh64_elf64_nbsd_vec
1414 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"
1419 targ_defvec=sh_elf32_nbsd_le_vec
1420 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"
1424 targ_defvec=sh_elf32_nbsd_vec
1425 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"
1431 targ_defvec=sh_elf32_nbsd_vec
1432 targ_selvecs="sh_elf32_nbsd_le_vec sh_coff_vec sh_coff_le_vec"
1435 targ_defvec=sh_elf32_symbian_le_vec
1436 targ_selvecs="sh_coff_le_vec sh_coff_small_le_vec"
1441 shl*-*-elf* | sh[1234]l*-*-elf* | sh3el*-*-elf* | shl*-*-kaos*)
1442 targ_defvec=sh_elf32_le_vec
1443 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"
1450 targ_defvec=sh_coff_vec
1451 targ_selvecs="sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1456 sh-*-elf* | sh[1234]*-elf* | sh-*-rtems* | sh-*-kaos*)
1457 targ_defvec=sh_elf32_vec
1458 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"
1465 targ_defvec=sh_elf32_vec
1466 targ_selvecs="sh_elf32_le_vec sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1470 targ_defvec=sh_elf32_nbsd_le_vec
1471 targ_selvecs="sh_elf32_nbsd_vec sh_coff_vec sh_coff_le_vec"
1474 targ_defvec=sh_pe_le_vec
1475 targ_selvecs="sh_pe_le_vec sh_pei_le_vec"
1479 targ_defvec=sh_elf32_vxworks_vec
1480 targ_selvecs="sh_elf32_vxworks_le_vec"
1481 # FIXME None of the following are actually used on this target, but
1482 # they're necessary for coff-sh.c (which is unconditionally used) to be
1483 # compiled correctly.
1484 targ_selvecs="$targ_selvecs sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1488 targ_defvec=sh_coff_vec
1489 targ_selvecs="sh_coff_vec sh_coff_le_vec sh_coff_small_vec sh_coff_small_le_vec"
1494 targ_defvec=sparc_aout_sunos_be_vec
1495 targ_selvecs=sparc_aout_le_vec
1499 targ_defvec=sparc_aout_sunos_be_vec
1502 sparclite-*-elf* | sparc86x-*-elf*)
1503 targ_defvec=sparc_elf32_vec
1506 targ_defvec=sparc_elf32_vec
1508 sparc-*-linux*aout*)
1509 targ_defvec=sparc_aout_linux_vec
1510 targ_selvecs="sparc_elf32_vec sparc_aout_sunos_be_vec"
1513 sparc-*-linux-* | sparcv*-*-linux-*)
1514 targ_defvec=sparc_elf32_vec
1515 targ_selvecs="sparc_aout_linux_vec sparc_elf64_vec sparc_aout_sunos_be_vec"
1518 targ_defvec=sparc_elf32_vec
1519 targ_selvecs=sparc_aout_nbsd_vec
1521 sparc-*-netbsdaout* | sparc-*-netbsd*)
1522 targ_defvec=sparc_aout_nbsd_vec
1523 targ_selvecs=sparc_elf32_vec
1526 sparc-*-openbsd[0-2].* | sparc-*-openbsd3.[0-1])
1527 targ_defvec=sparc_aout_nbsd_vec
1531 targ_defvec=sparc_elf32_vec
1532 targ_selvecs=sparc_aout_nbsd_vec
1535 targ_defvec=sparc_elf32_vec
1536 targ_selvecs=sparc_aout_sunos_be_vec
1538 sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
1539 targ_defvec=sparc_elf32_sol2_vec
1540 targ_selvecs=sparc_aout_sunos_be_vec
1543 sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
1544 targ_defvec=sparc_elf32_sol2_vec
1545 targ_selvecs="sparc_elf64_sol2_vec sparc_aout_sunos_be_vec"
1550 targ_defvec=sparc_elf32_vec
1553 targ_defvec=sparc_elf32_vxworks_vec
1554 targ_selvecs="sparc_elf32_vec sparc_aout_sunos_be_vec"
1557 targ_defvec=sparc_elf32_vec
1558 targ_selvecs="sparc_nlm32_vec sparc_aout_sunos_be_vec"
1562 targ_defvec=sparc_aout_sunos_be_vec
1567 targ_defvec=sparc_elf64_vec
1568 targ_selvecs="sparc_elf32_vec sparc_aout_linux_vec sparc_aout_sunos_be_vec"
1571 sparc64-*-elf* | sparc64-*-rtems* )
1572 targ_defvec=sparc_elf64_vec
1573 targ_selvecs=sparc_elf32_vec
1578 targ_defvec=sparc_coff_vec
1581 targ_defvec=sparc_elf32_vec
1582 targ_selvecs="sparc_aout_sunos_be_vec sparc_coff_vec"
1585 targ_defvec=sparc_aout_sunos_be_vec
1590 targ_defvec=spu_elf32_vec
1596 targ_defvec=aout_vec
1602 targ_defvec=tic6x_elf32_c6000_le_vec
1603 targ_selvecs="tic6x_elf32_c6000_be_vec tic6x_elf32_le_vec tic6x_elf32_be_vec"
1607 targ_defvec=tic6x_elf32_linux_le_vec
1608 targ_selvecs="tic6x_elf32_linux_be_vec tic6x_elf32_le_vec tic6x_elf32_be_vec"
1612 targ_defvec=tic80_coff_vec
1618 targ_defvec=tilegx_elf64_le_vec
1619 targ_selvecs="tilegx_elf64_be_vec tilegx_elf32_be_vec tilegx_elf32_le_vec"
1622 targ_defvec=tilegx_elf64_be_vec
1623 targ_selvecs="tilegx_elf64_le_vec tilegx_elf32_be_vec tilegx_elf32_le_vec"
1628 targ_defvec=tilepro_elf32_vec
1632 targ_defvec=v850_elf32_vec
1633 targ_selvecs="v800_elf32_vec"
1637 targ_defvec=vax_elf32_vec
1638 targ_selvecs="vax_aout_nbsd_vec vax_aout_1knbsd_vec"
1641 vax-*-netbsdaout* | vax-*-netbsd*)
1642 targ_defvec=vax_aout_nbsd_vec
1643 targ_selvecs="vax_elf32_vec vax_aout_1knbsd_vec"
1647 vax-*-bsd* | vax-*-ultrix*)
1648 targ_defvec=vax_aout_bsd_vec
1653 targ_defvec=vax_aout_nbsd_vec
1658 targ_defvec=vax_elf32_vec
1662 targ_defvec=visium_elf32_vec
1666 targ_defvec=we32k_coff_vec
1670 targ_defvec=w65_coff_vec
1674 targ_defvec=xgate_elf32_vec
1675 targ_selvecs="xgate_elf32_vec"
1679 targ_defvec=xstormy16_elf32_vec
1683 targ_defvec=xtensa_elf32_le_vec
1684 targ_selvecs=xtensa_elf32_be_vec
1687 targ_defvec=xc16x_elf32_vec
1691 targ_defvec=z80_coff_vec
1696 targ_defvec=z8k_coff_vec
1701 targ_defvec=ieee_vec
1705 targ_defvec=aout_adobe_vec
1710 targ_defvec=m68k_aout_newsos3_vec
1715 targ_defvec=m68k_coff_vec
1716 targ_selvecs=ieee_vec
1718 # END OF targmatch.h
1720 echo 1>&2 "*** BFD does not support target ${targ}."
1721 echo 1>&2 "*** Look in bfd/config.bfd for supported targets."
1726 # All MIPS ELF targets need a 64-bit bfd_vma.
1727 case "${targ_defvec} ${targ_selvecs}" in
1733 case "${host64}${want64}" in
1735 targ_selvecs="${targ_selvecs} ${targ64_selvecs}"
1739 # If we support any ELF target, then automatically add support for the
1740 # generic ELF targets. This permits an objdump with some ELF support
1741 # to be used on an arbitrary ELF file for anything other than
1742 # relocation information.
1743 case "${targ_defvec} ${targ_selvecs}" in
1744 *elf64* | *mips_elf32_n*)
1745 targ_selvecs="${targ_selvecs} elf64_le_vec elf64_be_vec elf32_le_vec elf32_be_vec"
1748 targ_selvecs="${targ_selvecs} elf32_le_vec elf32_be_vec"
1752 # If we support Intel L1OM target, then add support for bfd_l1om_arch.
1753 case "${targ_defvec} ${targ_selvecs}" in
1755 targ_archs="$targ_archs bfd_l1om_arch"
1759 # If we support Intel K1OM target, then add support for bfd_k1om_arch.
1760 case "${targ_defvec} ${targ_selvecs}" in
1762 targ_archs="$targ_archs bfd_k1om_arch"