]>
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* | \ | |
132 | i[345]86-*-elf) | |
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 | ;; | |
198 | i[345]86-*-win32 | 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 | |
218 | targ_selvecs="b_out_vec_big_host icoff_little_vec icoff_big_vec" | |
219 | targ_underscore=yes | |
220 | ;; | |
221 | i960-*-vxworks5.* | i960-*-coff* | i960-*-sysv*) | |
222 | targ_defvec=icoff_little_vec | |
223 | targ_selvecs="icoff_big_vec b_out_vec_little_host b_out_vec_big_host" | |
224 | targ_underscore=yes | |
225 | ;; | |
226 | i960-*-vxworks* | i960-*-aout* | i960-*-bout* | i960-*-nindy*) | |
227 | targ_defvec=b_out_vec_little_host | |
228 | targ_selvecs="b_out_vec_big_host icoff_little_vec icoff_big_vec" | |
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 | |
245 | # We include this here, rather than making a separate cisco | |
246 | # configuration, so that cisco-core.c gets routinely tested at | |
247 | # least for compilation. | |
248 | targ_selvecs=cisco_core_vec | |
249 | targ_underscore=yes | |
250 | ;; | |
767f22d5 | 251 | m68*-*-elf* | m68*-*-sysv4*) |
2b79a104 ILT |
252 | targ_defvec=bfd_elf32_m68k_vec |
253 | targ_selvecs=m68kcoff_vec | |
254 | ;; | |
255 | m68*-*-coff* | m68*-*-sysv*) | |
256 | targ_defvec=m68kcoff_vec | |
257 | targ_selvecs="m68kcoff_vec versados_vec" | |
258 | ;; | |
259 | m68*-*-hpux*) | |
260 | targ_defvec=hp300hpux_vec | |
261 | targ_underscore=yes | |
262 | ;; | |
263 | m68*-*-lynxos*) | |
264 | targ_defvec=m68klynx_coff_vec | |
265 | targ_selvecs=m68klynx_aout_vec | |
266 | ;; | |
11ab6da4 NH |
267 | m68*-hp*-netbsd*) |
268 | targ_defvec=m68k4knetbsd_vec | |
269 | targ_selvecs="m68knetbsd_vec hp300bsd_vec sunos_big_vec" | |
270 | targ_underscore=yes | |
271 | ;; | |
2b79a104 ILT |
272 | m68*-*-netbsd*) |
273 | targ_defvec=m68knetbsd_vec | |
11ab6da4 | 274 | targ_selvecs="m68k4knetbsd_vec hp300bsd_vec sunos_big_vec" |
2b79a104 ILT |
275 | targ_underscore=yes |
276 | ;; | |
277 | m68*-*-sunos* | m68*-*-os68k* | m68*-*-vxworks* | m68*-netx-* | \ | |
278 | m68*-*-bsd* | m68*-*-vsta*) | |
279 | targ_defvec=sunos_big_vec | |
280 | targ_underscore=yes | |
281 | ;; | |
282 | m68*-ericsson-*) | |
283 | targ_defvec=sunos_big_vec | |
284 | targ_selvecs="m68kcoff_vec tekhex_vec" | |
285 | targ_underscore=yes | |
286 | ;; | |
767f22d5 FF |
287 | m68*-cbm-*) |
288 | targ_defvec=bfd_elf32_m68k_vec | |
289 | targ_selvecs=m68kcoff_vec | |
290 | ;; | |
2b79a104 ILT |
291 | |
292 | m88*-harris-cxux* | m88*-*-dgux* | m88*-*-sysv4*) | |
293 | targ_defvec=bfd_elf32_m88k_vec | |
294 | targ_selvecs=m88kbcs_vec | |
295 | ;; | |
296 | m88*-*-mach3*) | |
297 | targ_defvec=m88kmach3_vec | |
298 | targ_cflags=-DSTAT_FOR_EXEC | |
299 | ;; | |
300 | m88*-*-*) | |
301 | targ_defvec=m88kbcs_vec | |
302 | targ_underscore=yes | |
303 | ;; | |
304 | ||
305 | mips*-big-*) | |
306 | targ_defvec=ecoff_big_vec | |
307 | targ_selvecs=ecoff_little_vec | |
308 | ;; | |
049df0a8 ILT |
309 | mips-dec-netbsd*) |
310 | targ_defvec=bfd_elf32_littlemips_vec | |
311 | targ_selvecs=bfd_elf32_bigmips_vec | |
312 | ;; | |
2b79a104 ILT |
313 | mips*-dec-bsd*) |
314 | targ_defvec=aout_mips_little_vec | |
315 | targ_underscore=yes | |
316 | ;; | |
317 | mips*-dec-mach3*) | |
318 | targ_defvec=aout_mips_little_vec | |
319 | targ_cflags=-DSTAT_FOR_EXEC | |
320 | ;; | |
321 | mips*-dec-* | mips*el-*-ecoff*) | |
322 | targ_defvec=ecoff_little_vec | |
323 | targ_selvecs=ecoff_big_vec | |
324 | ;; | |
d6d44ef9 SG |
325 | # start-sanitize-gm |
326 | mips*-*-magic*) | |
327 | targ_defvec=ecoff_big_vec | |
bf917766 | 328 | targ_selvecs=bfd_elf32_bigmips_vec |
d6d44ef9 SG |
329 | ;; |
330 | # end-sanitize-gm | |
2b79a104 ILT |
331 | mips*-*-ecoff*) |
332 | targ_defvec=ecoff_big_vec | |
333 | targ_selvecs=ecoff_little_vec | |
334 | ;; | |
335 | mips*-*-irix5*) | |
336 | targ_defvec=bfd_elf32_bigmips_vec | |
337 | targ_selvecs="bfd_elf32_littlemips_vec ecoff_big_vec ecoff_little_vec" | |
338 | ;; | |
339 | mips*-sgi-* | mips*-*-bsd*) | |
340 | targ_defvec=ecoff_big_vec | |
341 | targ_selvecs=ecoff_little_vec | |
342 | ;; | |
343 | mips*-*-mach3*) | |
344 | targ_defvec=aout_mips_little_vec | |
345 | targ_cflags=-DSTAT_FOR_EXEC | |
346 | ;; | |
347 | mips*-*-sysv4*) | |
348 | targ_defvec=bfd_elf32_bigmips_vec | |
349 | targ_selvecs="bfd_elf32_littlemips_vec ecoff_big_vec ecoff_little_vec" | |
350 | ;; | |
351 | mips*-*-sysv* | mips*-*-riscos*) | |
352 | targ_defvec=ecoff_big_vec | |
353 | targ_selvecs=ecoff_little_vec | |
354 | ;; | |
355 | mips*el-*-elf*) | |
356 | targ_defvec=bfd_elf32_littlemips_vec | |
357 | targ_selvecs=bfd_elf32_bigmips_vec | |
358 | ;; | |
359 | mips*-*-elf*) | |
360 | targ_defvec=bfd_elf32_bigmips_vec | |
361 | targ_selvecs=bfd_elf32_littlemips_vec | |
362 | ;; | |
363 | ||
2a01c351 | 364 | ns32k-pc532-mach* | ns32k-pc532-ux*) |
2b79a104 ILT |
365 | targ_defvec=pc532machaout_vec |
366 | targ_underscore=yes | |
367 | ;; | |
2a01c351 | 368 | ns32k-*-netbsd* | ns32k-*-lites*) |
2b79a104 ILT |
369 | targ_defvec=pc532netbsd_vec |
370 | targ_underscore=yes | |
371 | ;; | |
372 | ||
373 | powerpc-*-aix*) | |
374 | targ_defvec=rs6000coff_vec | |
375 | ;; | |
376 | powerpc-*-elf* | powerpc-*-sysv4* | powerpc-*-eabi* | powerpc-*-solaris2*) | |
377 | targ_defvec=bfd_elf32_powerpc_vec | |
6bd9ffdb | 378 | 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 | 379 | ;; |
2a01c351 KR |
380 | powerpc-*-macos* | powerpc-*-mpw*) |
381 | targ_defvec=pmac_xcoff_vec | |
382 | ;; | |
2b79a104 ILT |
383 | powerpc-*-netware*) |
384 | targ_defvec=bfd_elf32_powerpc_vec | |
385 | targ_selvecs="nlm32_powerpc_vec rs6000coff_vec" | |
386 | ;; | |
387 | powerpcle-*-elf* | powerpcle-*-sysv4* | powerpcle-*-eabi* | \ | |
388 | powerpcle-*-solaris2*) | |
389 | targ_defvec=bfd_elf32_powerpcle_vec | |
6bd9ffdb | 390 | 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 |
391 | ;; |
392 | ||
e0c10737 KK |
393 | powerpcle-*-pe | powerpcle-*-winnt*) |
394 | targ_defvec=bfd_powerpcle_pe_vec | |
395 | targ_selvecs="bfd_powerpcle_pei_vec bfd_powerpc_pei_vec bfd_powerpcle_pe_vec bfd_powerpc_pe_vec" | |
396 | ;; | |
397 | ||
398 | powerpc-*-pe | powerpc-*-winnt*) | |
399 | targ_defvec=bfd_powerpc_pe_vec | |
400 | targ_selvecs="bfd_powerpcle_pei_vec bfd_powerpc_pei_vec bfd_powerpcle_pe_vec bfd_powerpc_pe_vec" | |
401 | ;; | |
402 | ||
2b79a104 ILT |
403 | rs6000-*-*) |
404 | targ_defvec=rs6000coff_vec | |
405 | ;; | |
406 | ||
407 | sparc-*-lynxos*) | |
408 | targ_defvec=sparclynx_coff_vec | |
409 | targ_selvecs=sparclynx_aout_vec | |
410 | ;; | |
411 | sparc-*-netbsd*) | |
412 | targ_defvec=sparcnetbsd_vec | |
413 | targ_underscore=yes | |
414 | ;; | |
767f22d5 | 415 | sparc-*-elf* | sparc-*-sysv4* | sparc-*-solaris2*) |
2b79a104 ILT |
416 | targ_defvec=bfd_elf32_sparc_vec |
417 | targ_selvecs=sunos_big_vec | |
418 | ;; | |
767f22d5 FF |
419 | sparc64-*-aout*) |
420 | targ_defvec=sunos_big_vec | |
421 | targ_underscore=yes | |
422 | ;; | |
5bc513b4 DE |
423 | sparc64-*-elf*) |
424 | targ_defvec=bfd_elf64_sparc_vec | |
425 | targ_selvecs=bfd_elf32_sparc_vec | |
426 | ;; | |
427 | sparc64-*-solaris2* | sparc64-*-sysv4*) | |
428 | targ_defvec=bfd_elf32_sparc_vec | |
72c513bc DE |
429 | # Adding 64 bit support by default causes things like objdump to |
430 | # print addresses as 64 bits. | |
431 | #targ_selvecs=bfd_elf64_sparc_vec | |
5bc513b4 | 432 | ;; |
2b79a104 ILT |
433 | sparc-*-netware*) |
434 | targ_defvec=bfd_elf32_sparc_vec | |
435 | targ_selvecs="nlm32_sparc_vec sunos_big_vec" | |
436 | ;; | |
437 | sparc*-*-coff*) | |
438 | targ_defvec=sparccoff_vec | |
439 | ;; | |
440 | sparc*-*-*) | |
441 | targ_defvec=sunos_big_vec | |
442 | targ_underscore=yes | |
443 | ;; | |
444 | ||
445 | tahoe-*-*) | |
446 | targ_defvec=host_aout_vec | |
447 | targ_underscore=yes | |
448 | ;; | |
449 | ||
450 | vax-*-vms*) | |
451 | echo 1>&2 "*** BFD does not support target ${targ}." | |
452 | echo 1>&2 "*** Look in bfd/config.bfd for supported targets." | |
453 | exit 1 | |
454 | ;; | |
455 | vax-*-*) | |
456 | targ_defvec=host_aout_vec | |
457 | targ_underscore=yes | |
458 | ;; | |
459 | ||
460 | we32k-*-*) | |
461 | targ_defvec=we32kcoff_vec | |
462 | ;; | |
463 | ||
464 | w65-*-*) | |
465 | targ_defvec=w65_vec | |
466 | ;; | |
467 | ||
468 | z8k*-*-*) | |
469 | targ_defvec=z8kcoff_vec | |
470 | targ_underscore=yes | |
471 | ;; | |
472 | ||
473 | *-*-ieee*) | |
474 | targ_defvec=ieee_vec | |
475 | ;; | |
476 | ||
477 | *-adobe-*) | |
478 | targ_defvec=a_aout_adobe_vec | |
479 | targ_underscore=yes | |
480 | ;; | |
481 | ||
482 | *-sony-*) | |
483 | targ_defvec=newsos3_vec | |
484 | targ_underscore=yes | |
485 | ;; | |
486 | ||
487 | *-tandem-*) | |
488 | targ_defvec=m68kcoff_vec | |
489 | targ_selvecs=ieee_vec | |
490 | ;; | |
491 | ||
492 | *) | |
493 | echo 1>&2 "*** BFD does not support target ${targ}." | |
494 | echo 1>&2 "*** Look in bfd/config.bfd for supported targets." | |
495 | exit 1 | |
496 | ;; | |
497 | esac |