]>
Commit | Line | Data |
---|---|---|
49df10b1 DM |
1 | # config.bfd |
2 | # Convert a canonical host type into a BFD host type. | |
2b79a104 ILT |
3 | # Set shell variable targ to canonical target name, and run |
4 | # using ``. config.bfd''. | |
5 | # Sets the following shell variables: | |
6 | # targ_defvec Default vector for this target | |
7 | # targ_selvecs Vectors to build for this target | |
8 | # targ_archs Architectures for this target | |
9 | # targ_cflags $(CFLAGS) for this target (FIXME: pretty bogus) | |
10 | # targ_undercore Whether underscores are used: yes or no | |
49df10b1 | 11 | |
1fb83be6 | 12 | # The binutils c++filt program wants to know whether underscores are |
2b79a104 ILT |
13 | # stripped or not. That is why we set targ_underscore. c++filt uses |
14 | # this information to choose a default. This information is | |
15 | # duplicated in the symbol_leading_char field of the BFD target | |
16 | # vector, but c++filt does not deal with object files and is not | |
17 | # linked against libbfd.a. It is not terribly important that c++filt | |
18 | # get this right; it is just convenient. | |
19 | ||
20 | targ_defvec= | |
21 | targ_selvecs= | |
22 | targ_cflags= | |
23 | targ_underscore=no | |
24 | ||
25 | targ_cpu=`echo $targ | sed 's/^\(.*\)-\(.*\)-\(.*\)$/\1/'` | |
26 | case "${targ_cpu}" in | |
27 | arm*) targ_archs=bfd_arm_arch ;; | |
28 | hppa*) targ_archs=bfd_hppa_arch ;; | |
29 | i[345]86) targ_archs=bfd_i386_arch ;; | |
30 | m68*) targ_archs=bfd_m68k_arch ;; | |
31 | m88*) targ_archs=bfd_m88k_arch ;; | |
32 | mips*) targ_archs=bfd_mips_arch ;; | |
33 | powerpc*) targ_archs="bfd_rs6000_arch bfd_powerpc_arch" ;; | |
34 | rs6000) targ_archs="bfd_rs6000_arch bfd_powerpc_arch" ;; | |
35 | sparc*) targ_archs=bfd_sparc_arch ;; | |
36 | z8k*) targ_archs=bfd_z8k_arch ;; | |
37 | *) targ_archs=bfd_${targ_cpu}_arch ;; | |
38 | esac | |
1fb83be6 | 39 | |
49df10b1 DM |
40 | # WHEN ADDING ENTRIES TO THIS MATRIX: |
41 | # Make sure that the left side always has two dashes. Otherwise you | |
42 | # can get spurious matches. Even for unambiguous cases, do this as a | |
43 | # convention, else the table becomes a real mess to understand and maintain. | |
44 | ||
2b79a104 ILT |
45 | case "${targ}" in |
46 | alpha-*-netware*) | |
47 | targ_defvec=ecoffalpha_little_vec | |
48 | targ_selvecs=nlm32_alpha_vec | |
49 | ;; | |
50 | alpha-*-*) | |
51 | targ_defvec=ecoffalpha_little_vec | |
52 | ;; | |
53 | ||
e18ecf7a | 54 | # start-sanitize-arc |
2b79a104 ILT |
55 | arc-*-elf*) |
56 | targ_defvec=bfd_elf32_littlearc_vec | |
57 | targ_selvecs=bfd_elf32_bigarg_vec | |
58 | ;; | |
e18ecf7a | 59 | # end-sanitize-arc |
2b79a104 ILT |
60 | |
61 | arm-*-riscix*) | |
62 | targ_defvec=riscix_vec | |
63 | ;; | |
64 | arm-*-pe*) | |
65 | targ_defvec=armpe_little_vec | |
66 | targ_selvecs="armpe_little_vec armpe_big_vec armpei_little_vec armpei_big_vec" | |
67 | targ_underscore=yes | |
68 | ;; | |
bd676d26 | 69 | arm-*-aout | armel-*-aout) |
2b79a104 ILT |
70 | targ_defvec=aout_arm_little_vec |
71 | targ_selvecs=aout_arm_big_vec | |
72 | ;; | |
73 | armeb-*-aout) | |
74 | targ_defvec=aout_arm_big_vec | |
75 | targ_selvecs=aout_arm_little_vec | |
76 | ;; | |
a11e10fe DE |
77 | arm-*-coff) |
78 | targ_defvec=armcoff_little_vec | |
79 | targ_selvecs=armcoff_big_vec | |
80 | targ_underscore=yes | |
81 | ;; | |
2b79a104 ILT |
82 | |
83 | a29k-*-ebmon* | a29k-*-udi* | a29k-*-coff* | a29k-*-sym1* | \ | |
84 | a29k-*-vxworks* | a29k-*-sysv*) | |
85 | targ_defvec=a29kcoff_big_vec | |
86 | targ_selvecs=sunos_big_vec | |
87 | targ_underscore=yes | |
88 | ;; | |
89 | a29k-*-aout* | a29k-*-bsd* | a29k-*-vsta*) | |
90 | targ_defvec=sunos_big_vec | |
91 | targ_underscore=yes | |
92 | ;; | |
93 | ||
94 | h8300*-*-*) | |
95 | targ_defvec=h8300coff_vec | |
96 | targ_underscore=yes | |
97 | ;; | |
98 | ||
99 | h8500-*-*) | |
100 | targ_defvec=h8500coff_vec | |
101 | targ_underscore=yes | |
102 | ;; | |
103 | ||
104 | sh-*-*) | |
767f22d5 | 105 | targ_defvec=shcoff_vec |
2b79a104 ILT |
106 | targ_selvecs="shcoff_vec shlcoff_vec" |
107 | targ_underscore=yes | |
108 | ;; | |
109 | ||
03c4ce2f | 110 | # start-sanitize-rce |
2b79a104 ILT |
111 | rce-*-aout*) |
112 | targ_defvec=rce_aout_vec | |
113 | ;; | |
114 | ||
03c4ce2f | 115 | # end-sanitize-rce |
2b79a104 ILT |
116 | hppa*-*-*elf* | hppa*-*-lites* | hppa*-*-sysv4*) |
117 | targ_defvec=bfd_elf32_hppa_vec | |
118 | ;; | |
119 | hppa*-*-bsd*) | |
120 | targ_defvec=som_vec | |
121 | targ_selvecs=bfd_elf32_hppa_vec | |
122 | ;; | |
123 | hppa*-*-hpux* | hppa*-*-hiux*) | |
124 | targ_defvec=som_vec | |
125 | ;; | |
126 | hppa*-*-osf*) | |
127 | targ_defvec=som_vec | |
128 | targ_selvecs=bfd_elf32_hppa_vec | |
129 | ;; | |
130 | ||
131 | i[345]86-*-sysv4* | i[345]86-*-unixware | i[345]86-*-solaris2* | \ | |
d19df9b5 | 132 | i[345]86-*-elf | i[345]86-*-sco*elf*) |
2b79a104 ILT |
133 | targ_defvec=bfd_elf32_i386_vec |
134 | targ_selvecs=i386coff_vec | |
135 | ;; | |
136 | i[345]86-*-sysv* | i[345]86-*-isc* | i[345]86-*-sco* | i[345]86-*-coff | \ | |
137 | i[345]86-*-aix* | i[345]86-*-go32*) | |
138 | targ_defvec=i386coff_vec | |
139 | ;; | |
140 | i[345]86-sequent-bsd*) | |
141 | targ_defvec=i386dynix_vec | |
142 | targ_underscore=yes | |
143 | ;; | |
767f22d5 | 144 | i[345]86-*-bsd*) |
2b79a104 ILT |
145 | targ_defvec=i386bsd_vec |
146 | targ_underscore=yes | |
147 | ;; | |
767f22d5 FF |
148 | i[345]86-*-freebsd*) |
149 | targ_defvec=i386freebsd_vec | |
150 | targ_selvecs=i386bsd_vec | |
151 | targ_underscore=yes | |
152 | ;; | |
2b79a104 ILT |
153 | i[345]86-*-netbsd*) |
154 | targ_defvec=i386netbsd_vec | |
155 | targ_selvecs=i386bsd_vec | |
156 | targ_underscore=yes | |
157 | ;; | |
158 | i[345]86-*-netware*) | |
159 | targ_defvec=bfd_elf32_i386_vec | |
160 | targ_selvecs="nlm32_i386_vec i386coff_vec i386aout_vec" | |
161 | ;; | |
162 | i[345]86-*-linuxaout*) | |
163 | targ_defvec=i386linux_vec | |
164 | targ_selvecs=bfd_elf32_i386_vec | |
165 | targ_underscore=yes | |
166 | ;; | |
167 | i[345]86-*-linux*) | |
168 | targ_defvec=bfd_elf32_i386_vec | |
169 | targ_selvecs=i386linux_vec | |
170 | targ_underscore=yes | |
171 | ;; | |
172 | i[345]86-*-lynxos*) | |
173 | targ_defvec=i386lynx_coff_vec | |
174 | targ_selvecs=i386lynx_aout_vec | |
175 | ;; | |
176 | i[345]86-*-gnu*) | |
177 | targ_defvec=bfd_elf32_i386_vec | |
178 | targ_selvecs=i386mach3_vec | |
179 | targ_cflags=-DSTAT_FOR_EXEC | |
180 | targ_underscore=yes | |
181 | ;; | |
182 | i[345]86-*-mach* | i[345]86-*-osf1mk*) | |
183 | targ_defvec=i386mach3_vec | |
184 | targ_cflags=-DSTAT_FOR_EXEC | |
185 | targ_underscore=yes | |
186 | ;; | |
187 | i[345]86-*-os9k) | |
188 | targ_defvec=i386os9k_vec | |
189 | ;; | |
190 | i[345]86-*-msdos*) | |
191 | targ_defvec=i386aout_vec | |
192 | targ_selvecs=i386msdos_vec | |
193 | ;; | |
194 | i[345]86-*-moss*) | |
195 | targ_defvec=bfd_elf32_i386_vec | |
196 | targ_selvecs="i386msdos_vec i386aout_vec" | |
197 | ;; | |
3998d526 | 198 | i[345]86-*-cygwin32 | i[345]86-*-winnt | i[345]86-*-pe) |
049df0a8 | 199 | targ_defvec=i386pe_vec |
2b79a104 ILT |
200 | targ_selvecs="i386pe_vec i386pei_vec" |
201 | ;; | |
202 | i[345]86-none-*) | |
203 | targ_defvec=i386coff_vec | |
204 | ;; | |
205 | i[345]86-*-aout* | i[345]86*-*-vsta*) | |
588512c6 | 206 | targ_defvec=i386aout_vec |
2b79a104 ILT |
207 | ;; |
208 | ||
767f22d5 FF |
209 | i860-*-mach3* | i860-*-osf1* | i860-*-coff*) |
210 | targ_defvec=i860coff_vec | |
211 | ;; | |
212 | i860-*-sysv4* | i860-*-elf*) | |
2b79a104 ILT |
213 | targ_defvec=bfd_elf32_i860_vec |
214 | ;; | |
215 | ||
216 | i960-*-vxworks4* | i960-*-vxworks5.0) | |
217 | targ_defvec=b_out_vec_little_host | |
3998d526 | 218 | targ_selvecs="b_out_vec_big_host icoff_little_vec icoff_big_vec ieee_vec" |
2b79a104 ILT |
219 | targ_underscore=yes |
220 | ;; | |
221 | i960-*-vxworks5.* | i960-*-coff* | i960-*-sysv*) | |
222 | targ_defvec=icoff_little_vec | |
3998d526 | 223 | targ_selvecs="icoff_big_vec b_out_vec_little_host b_out_vec_big_host ieee_vec" |
2b79a104 ILT |
224 | targ_underscore=yes |
225 | ;; | |
226 | i960-*-vxworks* | i960-*-aout* | i960-*-bout* | i960-*-nindy*) | |
227 | targ_defvec=b_out_vec_little_host | |
3998d526 | 228 | targ_selvecs="b_out_vec_big_host icoff_little_vec icoff_big_vec ieee_vec" |
2b79a104 ILT |
229 | targ_underscore=yes |
230 | ;; | |
49df10b1 | 231 | |
2b79a104 ILT |
232 | m68*-apollo-*) |
233 | targ_defvec=apollocoff_vec | |
234 | ;; | |
235 | m68*-bull-sysv*) | |
236 | targ_defvec=m68kcoffun_vec | |
237 | targ_underscore=yes | |
238 | ;; | |
239 | m68*-hp-bsd*) | |
240 | targ_defvec=hp300bsd_vec | |
241 | targ_underscore=yes | |
242 | ;; | |
243 | m68*-*-aout*) | |
244 | targ_defvec=aout0_big_vec | |
3998d526 | 245 | # We include cisco_core_vec here, rather than making a separate cisco |
2b79a104 ILT |
246 | # configuration, so that cisco-core.c gets routinely tested at |
247 | # least for compilation. | |
3998d526 | 248 | targ_selvecs="cisco_core_vec ieee_vec" |
2b79a104 ILT |
249 | targ_underscore=yes |
250 | ;; | |
767f22d5 | 251 | m68*-*-elf* | m68*-*-sysv4*) |
2b79a104 | 252 | targ_defvec=bfd_elf32_m68k_vec |
3998d526 | 253 | targ_selvecs="m68kcoff_vec ieee_vec" |
2b79a104 ILT |
254 | ;; |
255 | m68*-*-coff* | m68*-*-sysv*) | |
256 | targ_defvec=m68kcoff_vec | |
3998d526 | 257 | targ_selvecs="m68kcoff_vec versados_vec ieee_vec" |
2b79a104 ILT |
258 | ;; |
259 | m68*-*-hpux*) | |
260 | targ_defvec=hp300hpux_vec | |
261 | targ_underscore=yes | |
262 | ;; | |
3998d526 ILT |
263 | m68*-*-linuxaout*) |
264 | targ_defvec=m68klinux_vec | |
265 | targ_selvecs=bfd_elf32_m68k_vec | |
266 | targ_underscore=yes | |
267 | ;; | |
268 | m68*-*-linux*) | |
269 | targ_defvec=bfd_elf32_m68k_vec | |
270 | targ_selvecs=m68klinux_vec | |
271 | ;; | |
2b79a104 ILT |
272 | m68*-*-lynxos*) |
273 | targ_defvec=m68klynx_coff_vec | |
274 | targ_selvecs=m68klynx_aout_vec | |
275 | ;; | |
11ab6da4 NH |
276 | m68*-hp*-netbsd*) |
277 | targ_defvec=m68k4knetbsd_vec | |
278 | targ_selvecs="m68knetbsd_vec hp300bsd_vec sunos_big_vec" | |
279 | targ_underscore=yes | |
280 | ;; | |
2b79a104 ILT |
281 | m68*-*-netbsd*) |
282 | targ_defvec=m68knetbsd_vec | |
11ab6da4 | 283 | targ_selvecs="m68k4knetbsd_vec hp300bsd_vec sunos_big_vec" |
2b79a104 ILT |
284 | targ_underscore=yes |
285 | ;; | |
286 | m68*-*-sunos* | m68*-*-os68k* | m68*-*-vxworks* | m68*-netx-* | \ | |
287 | m68*-*-bsd* | m68*-*-vsta*) | |
288 | targ_defvec=sunos_big_vec | |
289 | targ_underscore=yes | |
290 | ;; | |
291 | m68*-ericsson-*) | |
292 | targ_defvec=sunos_big_vec | |
293 | targ_selvecs="m68kcoff_vec tekhex_vec" | |
294 | targ_underscore=yes | |
295 | ;; | |
767f22d5 FF |
296 | m68*-cbm-*) |
297 | targ_defvec=bfd_elf32_m68k_vec | |
298 | targ_selvecs=m68kcoff_vec | |
299 | ;; | |
d19df9b5 ILT |
300 | m68*-apple-aux*) |
301 | targ_defvec=m68kaux_coff_vec | |
302 | ;; | |
3998d526 ILT |
303 | m68*-*-psos*) |
304 | targ_defvec=bfd_elf32_m68k_vec | |
305 | targ_selvecs=ieee_vec | |
306 | targ_underscore=yes | |
307 | ;; | |
2b79a104 ILT |
308 | |
309 | m88*-harris-cxux* | m88*-*-dgux* | m88*-*-sysv4*) | |
310 | targ_defvec=bfd_elf32_m88k_vec | |
311 | targ_selvecs=m88kbcs_vec | |
312 | ;; | |
313 | m88*-*-mach3*) | |
314 | targ_defvec=m88kmach3_vec | |
315 | targ_cflags=-DSTAT_FOR_EXEC | |
316 | ;; | |
317 | m88*-*-*) | |
318 | targ_defvec=m88kbcs_vec | |
319 | targ_underscore=yes | |
320 | ;; | |
321 | ||
322 | mips*-big-*) | |
323 | targ_defvec=ecoff_big_vec | |
324 | targ_selvecs=ecoff_little_vec | |
325 | ;; | |
049df0a8 ILT |
326 | mips-dec-netbsd*) |
327 | targ_defvec=bfd_elf32_littlemips_vec | |
328 | targ_selvecs=bfd_elf32_bigmips_vec | |
329 | ;; | |
2b79a104 ILT |
330 | mips*-dec-bsd*) |
331 | targ_defvec=aout_mips_little_vec | |
332 | targ_underscore=yes | |
333 | ;; | |
334 | mips*-dec-mach3*) | |
335 | targ_defvec=aout_mips_little_vec | |
336 | targ_cflags=-DSTAT_FOR_EXEC | |
337 | ;; | |
338 | mips*-dec-* | mips*el-*-ecoff*) | |
339 | targ_defvec=ecoff_little_vec | |
340 | targ_selvecs=ecoff_big_vec | |
341 | ;; | |
d6d44ef9 SG |
342 | # start-sanitize-gm |
343 | mips*-*-magic*) | |
344 | targ_defvec=ecoff_big_vec | |
bf917766 | 345 | targ_selvecs=bfd_elf32_bigmips_vec |
d6d44ef9 SG |
346 | ;; |
347 | # end-sanitize-gm | |
2b79a104 ILT |
348 | mips*-*-ecoff*) |
349 | targ_defvec=ecoff_big_vec | |
350 | targ_selvecs=ecoff_little_vec | |
351 | ;; | |
352 | mips*-*-irix5*) | |
353 | targ_defvec=bfd_elf32_bigmips_vec | |
354 | targ_selvecs="bfd_elf32_littlemips_vec ecoff_big_vec ecoff_little_vec" | |
355 | ;; | |
356 | mips*-sgi-* | mips*-*-bsd*) | |
357 | targ_defvec=ecoff_big_vec | |
358 | targ_selvecs=ecoff_little_vec | |
359 | ;; | |
360 | mips*-*-mach3*) | |
361 | targ_defvec=aout_mips_little_vec | |
362 | targ_cflags=-DSTAT_FOR_EXEC | |
363 | ;; | |
364 | mips*-*-sysv4*) | |
365 | targ_defvec=bfd_elf32_bigmips_vec | |
366 | targ_selvecs="bfd_elf32_littlemips_vec ecoff_big_vec ecoff_little_vec" | |
367 | ;; | |
368 | mips*-*-sysv* | mips*-*-riscos*) | |
369 | targ_defvec=ecoff_big_vec | |
370 | targ_selvecs=ecoff_little_vec | |
371 | ;; | |
372 | mips*el-*-elf*) | |
373 | targ_defvec=bfd_elf32_littlemips_vec | |
374 | targ_selvecs=bfd_elf32_bigmips_vec | |
375 | ;; | |
376 | mips*-*-elf*) | |
377 | targ_defvec=bfd_elf32_bigmips_vec | |
378 | targ_selvecs=bfd_elf32_littlemips_vec | |
379 | ;; | |
380 | ||
2a01c351 | 381 | ns32k-pc532-mach* | ns32k-pc532-ux*) |
2b79a104 ILT |
382 | targ_defvec=pc532machaout_vec |
383 | targ_underscore=yes | |
384 | ;; | |
2a01c351 | 385 | ns32k-*-netbsd* | ns32k-*-lites*) |
2b79a104 ILT |
386 | targ_defvec=pc532netbsd_vec |
387 | targ_underscore=yes | |
388 | ;; | |
389 | ||
390 | powerpc-*-aix*) | |
391 | targ_defvec=rs6000coff_vec | |
392 | ;; | |
393 | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | powerpc-*-solaris2*) | |
394 | targ_defvec=bfd_elf32_powerpc_vec | |
6bd9ffdb | 395 | targ_selvecs="rs6000coff_vec bfd_elf32_powerpcle_vec bfd_powerpcle_pei_vec bfd_powerpc_pei_vec bfd_powerpcle_pe_vec bfd_powerpc_pe_vec" |
2b79a104 | 396 | ;; |
2a01c351 KR |
397 | powerpc-*-macos* | powerpc-*-mpw*) |
398 | targ_defvec=pmac_xcoff_vec | |
399 | ;; | |
2b79a104 ILT |
400 | powerpc-*-netware*) |
401 | targ_defvec=bfd_elf32_powerpc_vec | |
402 | targ_selvecs="nlm32_powerpc_vec rs6000coff_vec" | |
403 | ;; | |
404 | powerpcle-*-elf* | powerpcle-*-sysv4* | powerpcle-*-eabi* | \ | |
405 | powerpcle-*-solaris2*) | |
406 | targ_defvec=bfd_elf32_powerpcle_vec | |
6bd9ffdb | 407 | targ_selvecs="rs6000coff_vec bfd_elf32_powerpc_vec bfd_powerpcle_pei_vec bfd_powerpc_pei_vec bfd_powerpcle_pe_vec bfd_powerpc_pe_vec" |
2b79a104 ILT |
408 | ;; |
409 | ||
3998d526 | 410 | powerpcle-*-pe | powerpcle-*-winnt* | powerpcle-*-cygwin32) |
e0c10737 KK |
411 | targ_defvec=bfd_powerpcle_pe_vec |
412 | targ_selvecs="bfd_powerpcle_pei_vec bfd_powerpc_pei_vec bfd_powerpcle_pe_vec bfd_powerpc_pe_vec" | |
413 | ;; | |
414 | ||
2b79a104 ILT |
415 | rs6000-*-*) |
416 | targ_defvec=rs6000coff_vec | |
417 | ;; | |
418 | ||
419 | sparc-*-lynxos*) | |
420 | targ_defvec=sparclynx_coff_vec | |
421 | targ_selvecs=sparclynx_aout_vec | |
422 | ;; | |
423 | sparc-*-netbsd*) | |
424 | targ_defvec=sparcnetbsd_vec | |
425 | targ_underscore=yes | |
426 | ;; | |
767f22d5 | 427 | sparc-*-elf* | sparc-*-sysv4* | sparc-*-solaris2*) |
2b79a104 ILT |
428 | targ_defvec=bfd_elf32_sparc_vec |
429 | targ_selvecs=sunos_big_vec | |
430 | ;; | |
767f22d5 FF |
431 | sparc64-*-aout*) |
432 | targ_defvec=sunos_big_vec | |
433 | targ_underscore=yes | |
434 | ;; | |
5bc513b4 DE |
435 | sparc64-*-elf*) |
436 | targ_defvec=bfd_elf64_sparc_vec | |
437 | targ_selvecs=bfd_elf32_sparc_vec | |
438 | ;; | |
2b79a104 ILT |
439 | sparc-*-netware*) |
440 | targ_defvec=bfd_elf32_sparc_vec | |
441 | targ_selvecs="nlm32_sparc_vec sunos_big_vec" | |
442 | ;; | |
443 | sparc*-*-coff*) | |
444 | targ_defvec=sparccoff_vec | |
445 | ;; | |
446 | sparc*-*-*) | |
447 | targ_defvec=sunos_big_vec | |
448 | targ_underscore=yes | |
449 | ;; | |
450 | ||
451 | tahoe-*-*) | |
452 | targ_defvec=host_aout_vec | |
453 | targ_underscore=yes | |
454 | ;; | |
455 | ||
456 | vax-*-vms*) | |
457 | echo 1>&2 "*** BFD does not support target ${targ}." | |
458 | echo 1>&2 "*** Look in bfd/config.bfd for supported targets." | |
459 | exit 1 | |
460 | ;; | |
461 | vax-*-*) | |
462 | targ_defvec=host_aout_vec | |
463 | targ_underscore=yes | |
464 | ;; | |
465 | ||
466 | we32k-*-*) | |
467 | targ_defvec=we32kcoff_vec | |
468 | ;; | |
469 | ||
470 | w65-*-*) | |
471 | targ_defvec=w65_vec | |
472 | ;; | |
473 | ||
474 | z8k*-*-*) | |
475 | targ_defvec=z8kcoff_vec | |
476 | targ_underscore=yes | |
477 | ;; | |
478 | ||
479 | *-*-ieee*) | |
480 | targ_defvec=ieee_vec | |
481 | ;; | |
482 | ||
483 | *-adobe-*) | |
484 | targ_defvec=a_aout_adobe_vec | |
485 | targ_underscore=yes | |
486 | ;; | |
487 | ||
488 | *-sony-*) | |
489 | targ_defvec=newsos3_vec | |
490 | targ_underscore=yes | |
491 | ;; | |
492 | ||
493 | *-tandem-*) | |
494 | targ_defvec=m68kcoff_vec | |
495 | targ_selvecs=ieee_vec | |
496 | ;; | |
497 | ||
498 | *) | |
499 | echo 1>&2 "*** BFD does not support target ${targ}." | |
500 | echo 1>&2 "*** Look in bfd/config.bfd for supported targets." | |
501 | exit 1 | |
502 | ;; | |
503 | esac |