]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blob - ld/configure.tgt
pdb build fixes
[thirdparty/binutils-gdb.git] / ld / configure.tgt
1 # configure.tgt
2 #
3 # Copyright (C) 2013-2022 Free Software Foundation, Inc.
4 #
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.
9 #
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.
14 #
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/>.
18
19 # This is the linker target specific file. This is invoked by the
20 # autoconf generated configure script. Putting it in a separate shell
21 # file lets us skip running autoconf when modifying target specific
22 # information.
23
24 # This file switches on the shell variable ${targ}, and sets the
25 # following shell variables:
26 # targ_emul name of linker emulation to use
27 # targ_extra_emuls additional linker emulations to provide
28 # targ_extra_libpath additional linker emulations using LIB_PATH
29 # targ_extra_ofiles additional host-compiled objects needed by the emulation
30 # targ64_extra_emuls additional linker emulations to provide if
31 # --enable-64-bit-bfd is given or if host is 64 bit.
32 # targ64_extra_libpath additional linker emulations using LIB_PATH if
33 # --enable-64-bit-bfd is given or if host is 64 bit.
34 # NATIVE_LIB_DIRS library directories to search on this host
35 # (if we are a native or sysrooted linker)
36
37 targ_extra_emuls=
38 targ_extra_libpath=
39 targ_extra_ofiles="ldelf.o ldelfgen.o"
40 targ64_extra_emuls=
41 targ64_extra_libpath=
42
43 # By default the linker will generate warnings if it is creating an
44 # executable stack or a segment with all three of read, write and
45 # execute permissions. These settings are not appropriate for all
46 # targets however, so we can change them here:
47
48 if test "${ac_default_ld_warn_rwx_segments}" = unset; then
49 case "${targ}" in
50 # The CRIS and V850 default linker scripts yields just one segment
51 # as intended, so a rwx segment warning is not helpful.
52 # The HPPA's and SPARC's PLT sections use a constructed trampoline
53 # hence it needs to have a RWX segment.
54 # Many MIPS targets use executable segments.
55 cris-*-* | crisv32-*-* | \
56 hppa*-*-* | \
57 mips*-*-* | \
58 sparc*-*-* | \
59 v850*-*-*)
60 ac_default_ld_warn_rwx_segments=0
61 ;;
62 *)
63 ;;
64 esac
65 fi
66
67 if test "${ac_default_ld_warn_execstack}" = 2; then
68 case "${targ}" in
69 # The HPPA port needs to support older kernels that
70 # use executable stacks for signals and syscalls.
71 # Many MIPS targets use executable stacks.
72 hppa*-*-* | \
73 mips*-*-*)
74 ac_default_ld_warn_execstack=0
75 ;;
76 *)
77 ;;
78 esac
79 fi
80
81 # Please try to keep this table more or less in alphabetic order - it
82 # makes it much easier to lookup a specific archictecture.
83 case "${targ}" in
84 aarch64_be-*-elf) targ_emul=aarch64elfb
85 targ_extra_emuls="aarch64elf aarch64elf32 aarch64elf32b armelfb armelf"
86 ;;
87 aarch64-*-elf | aarch64-*-rtems* | aarch64-*-genode*)
88 targ_emul=aarch64elf
89 targ_extra_emuls="aarch64elf32 aarch64elf32b aarch64elfb armelf armelfb"
90 ;;
91 aarch64-*-cloudabi*) targ_emul=aarch64cloudabi
92 targ_extra_emuls=aarch64cloudabib
93 ;;
94 aarch64-*-freebsd*) targ_emul=aarch64fbsd
95 targ_extra_emuls="aarch64fbsdb aarch64elf"
96 ;;
97 aarch64-*-fuchsia*) targ_emul=aarch64elf
98 targ_extra_emuls="aarch64elfb armelf armelfb"
99 ;;
100 aarch64_be-*-linux-gnu_ilp32)
101 targ_emul=aarch64linux32b
102 targ_extra_libpath="aarch64linuxb aarch64linux aarch64linux32 armelfb_linux_eabi armelf_linux_eabi"
103 targ_extra_emuls="aarch64elfb aarch64elf aarch64elf32 aarch64elf32b armelfb armelf $targ_extra_libpath"
104 ;;
105 aarch64-*-linux-gnu_ilp32)
106 targ_emul=aarch64linux32
107 targ_extra_libpath="aarch64linux aarch64linuxb aarch64linux32b armelfb_linux_eabi armelf_linux_eabi"
108 targ_extra_emuls="aarch64elf aarch64elf32 aarch64elf32b aarch64elfb armelf armelfb $targ_extra_libpath"
109 ;;
110 aarch64_be-*-linux*) targ_emul=aarch64linuxb
111 targ_extra_libpath="aarch64linux aarch64linux32 aarch64linux32b armelfb_linux_eabi armelf_linux_eabi"
112 targ_extra_emuls="aarch64elfb aarch64elf aarch64elf32 aarch64elf32b armelfb armelf $targ_extra_libpath"
113 ;;
114 aarch64-*-linux*) targ_emul=aarch64linux
115 targ_extra_libpath="aarch64linuxb aarch64linux32 aarch64linux32b armelfb_linux_eabi armelf_linux_eabi"
116 targ_extra_emuls="aarch64elf aarch64elf32 aarch64elf32b aarch64elfb armelf armelfb $targ_extra_libpath"
117 ;;
118 aarch64-*-haiku*) targ_emul=aarch64haiku
119 targ_extra_emuls="aarch64elf aarch64elf32 aarch64elf32b aarch64elfb armelf armelfb armelf_haiku $targ_extra_libpath"
120 ;;
121 aarch64-*-pe*)
122 targ_emul=aarch64pe
123 targ_extra_ofiles="deffilep.o pep-dll-aarch64.o"
124 ;;
125 alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
126 targ_emul=elf64alpha_fbsd
127 targ_extra_emuls="elf64alpha alpha"
128 tdir_alpha=`echo ${targ_alias} | sed -e 's/freebsd/freebsdecoff/'`
129 ;;
130 alpha*-*-linux*ecoff*) targ_emul=alpha
131 targ_extra_emuls=elf64alpha
132 tdir_elf64alpha=`echo ${targ_alias} | sed -e 's/ecoff//'`
133 ;;
134 alpha*-*-linux-*) targ_emul=elf64alpha
135 targ_extra_emuls=alpha
136 tdir_alpha=`echo ${targ_alias} | sed -e 's/linux\(-gnu\)*/linux\1ecoff/'`
137 ;;
138 alpha*-*-osf*) targ_emul=alpha
139 targ_extra_ofiles=
140 ;;
141 alpha*-*-gnu*) targ_emul=elf64alpha
142 ;;
143 alpha*-*-netbsd*) targ_emul=elf64alpha_nbsd
144 ;;
145 alpha*-*-openbsd*) targ_emul=elf64alpha
146 ;;
147 alpha*-*-*vms*) targ_emul=alphavms
148 targ_extra_ofiles=
149 ;;
150 am33_2.0-*-linux*) targ_emul=elf32am33lin # mn10300 variant
151 ;;
152 arc*-*-elf*) targ_emul=arcelf
153 targ_extra_emuls="arclinux arclinux_nps arcv2elf arcv2elfx"
154 ;;
155 arc*-*-linux*) case "${with_cpu}" in
156 nps400) targ_emul=arclinux_nps
157 targ_extra_emuls=arclinux
158 ;;
159 *) targ_emul=arclinux
160 targ_extra_emuls=arclinux_nps
161 ;;
162 esac
163 targ_extra_emuls="${targ_extra_emuls} arcelf arcv2elf arcv2elfx"
164 ;;
165 arm*-*-cegcc*) targ_emul=arm_wince_pe
166 targ_extra_ofiles="deffilep.o pe-dll.o"
167 LIB_PATH='${tooldir}/lib/w32api'
168 ;;
169 arm-wince-pe | arm-*-wince | arm*-*-mingw32ce*)
170 targ_emul=arm_wince_pe
171 targ_extra_ofiles="deffilep.o pe-dll.o"
172 ;;
173 arm-*-pe) targ_emul=armpe
174 targ_extra_ofiles="deffilep.o pe-dll.o"
175 ;;
176 arm*b-*-freebsd*) targ_emul=armelfb_fbsd
177 targ_extra_emuls="armelf_fbsd armelf"
178 ;;
179 arm*-*-freebsd* | arm-*-kfreebsd*-gnu)
180 targ_emul=armelf_fbsd
181 targ_extra_emuls="armelfb_fbsd armelf"
182 ;;
183 armeb-*-netbsd*) targ_emul=armelfb_nbsd;
184 targ_extra_emuls="armelf_nbsd armelf"
185 ;;
186 arm-*-netbsd*) targ_emul=armelf_nbsd;
187 targ_extra_emuls="armelfb_nbsd armelf"
188 ;;
189 arm-*-nto*) targ_emul=armnto
190 ;;
191 arm-*-phoenix*) targ_emul=armelf
192 ;;
193 armeb-*-elf | armeb-*-eabi*)
194 targ_emul=armelfb
195 ;;
196 arm-*-elf | arm*-*-eabi* | arm-*-rtems* | arm-*-genode*)
197 targ_emul=armelf
198 ;;
199 arm-*-kaos*) targ_emul=armelf
200 ;;
201 arm9e-*-elf) targ_emul=armelf
202 ;;
203 arm*b-*-linux-*eabi*) targ_emul=armelfb_linux_eabi
204 targ_extra_emuls=armelf_linux_eabi
205 targ_extra_libpath=$targ_extra_emuls
206 ;;
207 arm*b-*-linux-*) targ_emul=armelfb_linux
208 targ_extra_emuls="armelfb armelf armelf_linux"
209 targ_extra_libpath="armelf_linux"
210 ;;
211 arm*-*-linux-*eabi*) targ_emul=armelf_linux_eabi
212 targ_extra_emuls="armelfb_linux_eabi"
213 targ_extra_libpath=$targ_extra_emuls
214 ;;
215 arm*-*-uclinuxfdpiceabi)
216 targ_emul=armelf_linux_eabi
217 targ_extra_emuls="armelfb_linux_eabi armelf_linux_fdpiceabi armelfb_linux_fdpiceabi"
218 targ_extra_libpath=$targ_extra_emuls
219 ;;
220 arm*-*-linux-*) targ_emul=armelf_linux
221 targ_extra_emuls="armelf armelfb armelfb_linux"
222 targ_extra_libpath="armelfb_linux"
223 ;;
224 arm*b-*-nacl*) targ_emul=armelfb_nacl
225 targ_extra_emuls="armelf_nacl"
226 targ_extra_libpath=$targ_extra_emuls
227 ;;
228 arm*-*-nacl*) targ_emul=armelf_nacl
229 targ_extra_emuls="armelfb_nacl"
230 targ_extra_libpath=$targ_extra_emuls
231 ;;
232 arm*-*-uclinux*eabi*) targ_emul=armelf_linux_eabi
233 targ_extra_emuls=armelfb_linux_eabi
234 targ_extra_libpath=$targ_extra_emuls
235 ;;
236 arm*-*-uclinux*) targ_emul=armelf_linux
237 targ_extra_emuls="armelf armelfb armelfb_linux"
238 targ_extra_libpath="armelfb_linux"
239 ;;
240 arm-*-vxworks) targ_emul=armelf_vxworks
241 ;;
242 arm*-*-conix*) targ_emul=armelf
243 ;;
244 arm*-*-fuchsia*) targ_emul=armelf_fuchsia
245 targ_extra_emuls="armelfb_fuchsia armelf armelfb"
246 ;;
247 arm*-*-haiku*) targ_emul=armelf_haiku
248 targ_extra_emuls=armelf
249 ;;
250 avr-*-*) targ_emul=avr2
251 targ_extra_emuls="avr1 avr25 avr3 avr31 avr35 avr4 avr5 avr51 avr6 avrxmega1 avrxmega2 avrxmega3 avrxmega4 avrxmega5 avrxmega6 avrxmega7 avrtiny"
252 ;;
253 bfin-*-elf | bfin-*-rtems*)
254 targ_emul=elf32bfin
255 targ_extra_emuls="elf32bfinfd"
256 targ_extra_libpath=$targ_extra_emuls
257 ;;
258 bfin-*-uclinux*) targ_emul=elf32bfin;
259 targ_extra_emuls="elf32bfinfd"
260 targ_extra_libpath=$targ_extra_emuls
261 ;;
262 bfin-*-linux-uclibc*) targ_emul=elf32bfinfd;
263 targ_extra_emuls="elf32bfin"
264 targ_extra_libpath=$targ_extra_emuls
265 ;;
266 bpf-*-*) targ_emul=elf64bpf
267 ;;
268 cr16-*-elf*) targ_emul=elf32cr16
269 ;;
270 cris-*-*aout*) targ_emul=crisaout
271 targ_extra_emuls="criself crislinux"
272 targ_extra_libpath=$targ_extra_emuls
273 ;;
274 cris-*-linux-* | crisv32-*-linux-*)
275 targ_emul=crislinux
276 ;;
277 cris-*-* | crisv32-*-*) targ_emul=criself
278 targ_extra_emuls="crisaout crislinux"
279 targ_extra_libpath=$targ_extra_emuls
280 ;;
281 crx-*-elf*) targ_emul=elf32crx
282 ;;
283
284 csky-*-elf*) targ_emul=cskyelf
285 ;;
286 csky-*-linux*) targ_emul=cskyelf_linux
287 ;;
288
289 d10v-*-*) targ_emul=d10velf
290 ;;
291 d30v-*-*ext*) targ_emul=d30v_e
292 targ_extra_emuls="d30velf d30v_o"
293 targ_extra_ofiles=ldelfgen.o
294 ;;
295 d30v-*-*onchip*) targ_emul=d30v_o
296 targ_extra_emuls="d30velf d30v_e"
297 targ_extra_ofiles=ldelfgen.o
298 ;;
299 d30v-*-*) targ_emul=d30velf
300 targ_extra_emuls="d30v_e d30v_o"
301 targ_extra_ofiles=ldelfgen.o
302 ;;
303 dlx-*-elf*) targ_emul=elf32_dlx
304 targ_extra_ofiles=ldelfgen.o
305 ;;
306 epiphany-*-*) targ_emul=elf32epiphany
307 targ_extra_emuls="elf32epiphany_4x4"
308 ;;
309 fido*-*-elf*) targ_emul=m68kelf
310 ;;
311 fr30-*-*) targ_emul=elf32fr30
312 targ_extra_ofiles=ldelfgen.o
313 ;;
314 frv-*-*linux*) targ_emul=elf32frvfd
315 ;;
316 frv-*-*) targ_emul=elf32frv
317 targ_extra_emuls="elf32frvfd"
318 ;;
319 ft32-*-*) targ_emul=elf32ft32
320 targ_extra_ofiles=ldelfgen.o
321 ;;
322 h8300-*-elf* | h8300-*-rtems*)
323 targ_emul=h8300elf;
324 targ_extra_emuls="h8300helf h8300self h8300hnelf h8300snelf h8300sxelf h8300sxnelf"
325 ;;
326 h8300-*-linux*)
327 targ_emul=h8300elf_linux;
328 targ_extra_emuls="h8300helf_linux h8300self_linux h8300sxelf_linux"
329 ;;
330 hppa*64*-*-linux-*) targ_emul=hppa64linux
331 ;;
332 hppa*64*-hpux*) targ_emul=elf64hppa
333 ;;
334 hppa*-*-linux-*) targ_emul=hppalinux
335 ;;
336 hppa*-*-*elf*) targ_emul=hppaelf
337 ;;
338 hppa*-*-lites*) targ_emul=hppaelf
339 ;;
340 hppa*-*-netbsd*) targ_emul=hppanbsd
341 ;;
342 hppa*-*-openbsd*) targ_emul=hppaobsd
343 ;;
344 i[3-7]86-*-nto-qnx*) targ_emul=i386nto
345 ;;
346 i[3-7]86-*-go32) targ_emul=i386go32
347 targ_extra_ofiles=
348 ;;
349 i[3-7]86-*-msdosdjgpp*) targ_emul=i386go32
350 targ_extra_ofiles=
351 ;;
352 i[3-7]86-*-lynxos*) targ_emul=i386lynx
353 ;;
354 i[3-7]86-*-aros*) targ_emul=elf_i386
355 targ_extra_emuls=elf_iamcu
356 ;;
357 i[3-7]86-*-rdos*) targ_emul=elf_i386
358 targ_extra_emuls=elf_iamcu
359 ;;
360 i[3-7]86-*-bsd) targ_emul=i386bsd
361 targ_extra_ofiles=
362 ;;
363 i[3-7]86-*-bsd386) targ_emul=i386bsd
364 targ_extra_ofiles=
365 ;;
366 i[3-7]86-*-bsdi*) targ_emul=i386bsd
367 targ_extra_ofiles=
368 ;;
369 i[3-7]86-*-linux-*) targ_emul=elf_i386
370 targ_extra_emuls="elf_iamcu"
371 targ64_extra_emuls="elf_x86_64 elf32_x86_64"
372 targ64_extra_libpath="elf_x86_64 elf32_x86_64"
373 ;;
374 i[3-7]86-*-redox*) targ_emul=elf_i386
375 targ_extra_emuls=elf_x86_64
376 ;;
377 i[3-7]86-*-sysv[45]*) targ_emul=elf_i386
378 targ_extra_emuls=elf_iamcu
379 ;;
380 i[3-7]86-*-solaris2*) targ_emul=elf_i386_sol2
381 targ_extra_emuls="elf_i386_ldso elf_i386 elf_iamcu elf_x86_64_sol2 elf_x86_64"
382 targ_extra_libpath=$targ_extra_emuls
383 ;;
384 i[3-7]86-*-unixware) targ_emul=elf_i386
385 targ_extra_emuls=elf_iamcu
386 ;;
387 i[3-7]86-*-solaris*) targ_emul=elf_i386_ldso
388 targ_extra_emuls="elf_i386"
389 targ_extra_libpath=$targ_extra_emuls
390 ;;
391 i[3-7]86-*-netbsdpe*) targ_emul=i386pe
392 targ_extra_ofiles="deffilep.o pe-dll.o"
393 ;;
394 i[3-7]86-*-netbsd* | \
395 i[3-7]86-*-netbsd*-gnu* | \
396 i[3-7]86-*-knetbsd*-gnu | \
397 i[3-7]86-*-openbsd*)
398 targ_emul=elf_i386
399 targ_extra_emuls="elf_iamcu"
400 ;;
401 i[3-7]86-*-elfiamcu) targ_emul=elf_iamcu
402 targ_extra_emuls=elf_i386
403 ;;
404 i[3-7]86-*-elf* | i[3-7]86-*-rtems* | i[3-7]86-*-genode*)
405 targ_emul=elf_i386
406 targ_extra_emuls=elf_iamcu
407 ;;
408 i[3-7]86-*-dragonfly*) targ_emul=elf_i386
409 targ_extra_emuls="elf_iamcu i386bsd"
410 ;;
411 i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu)
412 targ_emul=elf_i386_fbsd
413 targ_extra_emuls="elf_i386 elf_iamcu i386bsd"
414 ;;
415 i[3-7]86-*-gnu*) targ_emul=elf_i386
416 targ_extra_emuls=elf_iamcu
417 ;;
418 i[3-7]86-*-msdos*) targ_emul=i386msdos
419 targ_extra_emuls=i386aout
420 targ_extra_ofiles=
421 ;;
422 i[3-7]86-*-moss*) targ_emul=i386moss
423 targ_extra_emuls=i386msdos
424 ;;
425 i[3-7]86-*-winnt*) targ_emul=i386pe ;
426 targ_extra_ofiles="deffilep.o pdb.o pe-dll.o"
427 ;;
428 i[3-7]86-*-pe) targ_emul=i386pe ;
429 targ_extra_ofiles="deffilep.o pdb.o pe-dll.o"
430 ;;
431 i[3-7]86-*-cygwin*) targ_emul=i386pe ;
432 targ_extra_ofiles="deffilep.o pdb.o pe-dll.o" ;
433 test "$targ" != "$host" && LIB_PATH='${tooldir}/lib/w32api'
434 ;;
435 i[3-7]86-*-mingw32*) targ_emul=i386pe ;
436 targ_extra_ofiles="deffilep.o pdb.o pe-dll.o"
437 ;;
438 i[3-7]86-*-interix*) targ_emul=i386pe_posix;
439 targ_extra_ofiles="deffilep.o pe-dll.o"
440 ;;
441 i[3-7]86-*-beospe*) targ_emul=i386beos
442 targ_extra_ofiles=
443 ;;
444 i[3-7]86-*-beos*) targ_emul=elf_i386_be
445 ;;
446 i[3-7]86-*-haiku*) targ_emul=elf_i386_haiku
447 ;;
448 i[3-7]86-*-vxworks*) targ_emul=elf_i386_vxworks
449 ;;
450 i[3-7]86-*-chaos) targ_emul=elf_i386_chaos
451 ;;
452 ia16-*-elf*) targ_emul=elf_i386
453 targ_extra_emuls=i386msdos
454 ;;
455 ia64-*-elf*) targ_emul=elf64_ia64
456 ;;
457 ia64-*-freebsd* | ia64-*-kfreebsd*-gnu)
458 targ_emul=elf64_ia64_fbsd
459 targ_extra_emuls="elf64_ia64"
460 ;;
461 ia64-*-netbsd*) targ_emul=elf64_ia64
462 ;;
463 ia64-*-linux*) targ_emul=elf64_ia64
464 ;;
465 ia64-*-*vms*) targ_emul=elf64_ia64_vms
466 targ_extra_ofiles=ldelfgen.o
467 ;;
468 ia64-*-aix*) targ_emul=elf64_aix
469 ;;
470 ip2k-*-elf) targ_emul=elf32ip2k
471 ;;
472 iq2000-*-elf) targ_emul=elf32iq2000
473 targ_extra_emuls="elf32iq10"
474 targ_extra_ofiles=ldelfgen.o
475 ;;
476 lm32-*-*linux*) targ_emul=elf32lm32fd
477 ;;
478 lm32-*-*) targ_emul=elf32lm32
479 targ_extra_emuls="elf32lm32fd"
480 ;;
481 m32c-*-elf)
482 targ_emul=elf32m32c
483 ;;
484 m32r*le-*-elf*) targ_emul=m32rlelf
485 ;;
486 m32r*-*-elf*)
487 targ_emul=m32relf
488 ;;
489 m32r*le-*-linux-*) targ_emul=m32rlelf_linux
490 ;;
491 m32r*-*-linux-*) targ_emul=m32relf_linux
492 ;;
493 m68hc11-*-*|m6811-*-*) targ_emul=m68hc11elf
494 targ_extra_emuls="m68hc11elfb m68hc12elf m68hc12elfb"
495 ;;
496 m68hc12-*-*|m6812-*-*) targ_emul=m68hc12elf
497 targ_extra_emuls="m68hc12elfb m68hc11elf m68hc11elfb"
498 ;;
499 m68*-*-netbsd*) targ_emul=m68kelfnbsd
500 ;;
501 m68*-*-haiku*) targ_emul=m68kelf
502 ;;
503 m68*-*-*) targ_emul=m68kelf
504 ;;
505 mcore-*-pe) targ_emul=mcorepe ;
506 targ_extra_ofiles="deffilep.o pe-dll.o"
507 ;;
508 mcore-*-elf) targ_emul=elf32mcore
509 ;;
510 mep-*-elf) targ_emul=elf32mep
511 ;;
512 metag-*-*) targ_emul=elf32metag
513 ;;
514 microblazeel*-linux*) targ_emul="elf32mbel_linux"
515 targ_extra_emuls="elf32mb_linux"
516 ;;
517 microblaze*-linux*) targ_emul="elf32mb_linux"
518 targ_extra_emuls="elf32mbel_linux"
519 ;;
520 microblazeel*) targ_emul=elf32microblazeel
521 targ_extra_emuls=elf32microblaze
522 ;;
523 microblaze*) targ_emul=elf32microblaze
524 targ_extra_emuls=elf32microblazeel
525 ;;
526 mips*-sgi-irix5*) targ_emul=elf32bsmip
527 ;;
528 mips*-sgi-irix6*) targ_emul=elf32bmipn32
529 targ_extra_emuls="elf32bsmip elf64bmip"
530 targ_extra_libpath=$targ_extra_emuls
531 ;;
532 mips*el-*-haiku*) targ_emul=elf_mipsel_haiku
533 targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"
534 ;;
535 mips*el-*-netbsd*) targ_emul=elf32ltsmip
536 targ_extra_emuls="elf32btsmip elf64ltsmip elf64btsmip"
537 ;;
538 mips*-*-netbsd*) targ_emul=elf32btsmip
539 targ_extra_emuls="elf32ltsmip elf64btsmip elf64ltsmip"
540 ;;
541 mips64el-*-openbsd*) targ_emul=elf64ltsmip
542 targ_extra_emuls=elf64btsmip
543 ;;
544 mips64-*-openbsd*) targ_emul=elf64btsmip
545 targ_extra_emuls=elf64ltsmip
546 ;;
547 mips*vr4300el-*-elf*) targ_emul=elf32l4300
548 ;;
549 mips*vr4300-*-elf*) targ_emul=elf32b4300
550 ;;
551 mips*vr4100el-*-elf*) targ_emul=elf32l4300
552 ;;
553 mips*vr4100-*-elf*) targ_emul=elf32b4300
554 ;;
555 mips*vr5000el-*-elf*) targ_emul=elf32l4300
556 ;;
557 mips*vr5000-*-elf*) targ_emul=elf32b4300
558 ;;
559 mips*el-sde-elf* | mips*el-mti-elf* | mips*el-img-elf*)
560 targ_emul=elf32ltsmip
561 targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"
562 ;;
563 mips*-sde-elf* | mips*-mti-elf* | mips*-img-elf*)
564 targ_emul=elf32btsmip
565 targ_extra_emuls="elf32ltsmip elf32btsmipn32 elf64btsmip elf32ltsmipn32 elf64ltsmip"
566 ;;
567 mips64*el-ps2-elf*) targ_emul=elf32lr5900n32
568 targ_extra_emuls="elf32lr5900"
569 targ_extra_libpath=$targ_extra_emuls
570 ;;
571 mips*el-ps2-elf*) targ_emul=elf32lr5900
572 targ_extra_emuls="elf32lr5900n32"
573 targ_extra_libpath=$targ_extra_emuls
574 ;;
575 mips*el-*-elf*) targ_emul=elf32elmip
576 ;;
577 mips*-*-elf* | mips*-*-rtems*)
578 targ_emul=elf32ebmip
579 ;;
580 mips*el-*-vxworks*) targ_emul=elf32elmipvxworks
581 targ_extra_emuls="elf32ebmipvxworks"
582 ;;
583 mips*-*-vxworks*) targ_emul=elf32ebmipvxworks
584 targ_extra_emuls="elf32elmipvxworks"
585 ;;
586 mips*-*-windiss) targ_emul=elf32mipswindiss
587 ;;
588 mips64*el-*-linux-*) targ_emul=elf32ltsmipn32
589 targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip"
590 targ_extra_libpath=$targ_extra_emuls
591 ;;
592 mips64*-*-linux-*) targ_emul=elf32btsmipn32
593 targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip"
594 targ_extra_libpath=$targ_extra_emuls
595 ;;
596 mips*el-*-linux-*) targ_emul=elf32ltsmip
597 targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip"
598 targ_extra_libpath=$targ_extra_emuls
599 ;;
600 mips*-*-linux-*) targ_emul=elf32btsmip
601 targ_extra_emuls="elf32ltsmip elf32btsmipn32 elf64btsmip elf32ltsmipn32 elf64ltsmip"
602 targ_extra_libpath=$targ_extra_emuls
603 ;;
604 mips64*el-*-freebsd* | mips64*el-*-kfreebsd*-gnu)
605 targ_emul=elf32ltsmipn32_fbsd
606 targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmip_fbsd elf32btsmip_fbsd elf32btsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
607 targ_extra_libpath=$targ_extra_emuls
608 ;;
609 mips64*-*-freebsd* | mips64*-*-kfreebsd*-gnu)
610 targ_emul=elf32btsmipn32_fbsd
611 targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmip_fbsd elf32btsmip_fbsd elf32ltsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
612 targ_extra_libpath=$targ_extra_emuls
613 ;;
614 mips*el-*-freebsd* | mips*el-*-kfreebsd*-gnu)
615 targ_emul=elf32ltsmip_fbsd
616 targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmipn32_fbsd elf32btsmip_fbsd elf32btsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
617 targ_extra_libpath=$targ_extra_emuls
618 ;;
619 mips*-*-freebsd* | mips*-*-kfreebsd*-gnu)
620 targ_emul=elf32btsmip_fbsd
621 targ_extra_emuls="elf32ltsmip elf32btsmip elf32ltsmipn32 elf32btsmipn32 elf64ltsmip elf64btsmip elf32ltsmip_fbsd elf32btsmipn32_fbsd elf32ltsmipn32_fbsd elf64ltsmip_fbsd elf64btsmip_fbsd"
622 targ_extra_libpath=$targ_extra_emuls
623 ;;
624 mips*-*-sysv4*) targ_emul=elf32btsmip
625 ;;
626 mmix-*-*) targ_emul=mmo
627 targ_extra_emuls=elf64mmix
628 ;;
629 mn10200-*-*) targ_emul=mn10200
630 targ_extra_ofiles=ldelfgen.o
631 ;;
632 mn10300-*-*) targ_emul=mn10300
633 ;;
634 moxie-*-moxiebox*) targ_emul=moxiebox
635 targ_extra_ofiles=ldelfgen.o
636 ;;
637 moxie-*-*) targ_emul=elf32moxie
638 ;;
639 msp430-*-*) targ_emul=msp430elf
640 targ_extra_emuls="msp430X"
641 targ_extra_ofiles=ldelfgen.o
642 ;;
643 mt-*elf) targ_emul=elf32mt
644 targ_extra_ofiles=ldelfgen.o
645 ;;
646 nds32*le-*-elf*) targ_emul=nds32elf
647 targ_extra_emuls="nds32elf16m nds32belf nds32belf16m"
648 ;;
649 nds32*be-*-elf*) targ_emul=nds32belf
650 targ_extra_emuls="nds32elf nds32elf16m nds32belf16m"
651 ;;
652 nds32*le-*-linux-gnu*) targ_emul=nds32elf_linux
653 ;;
654 nds32*be-*-linux-gnu*) targ_emul=nds32belf_linux
655 ;;
656 nios2*-*-linux*) targ_emul=nios2linux
657 ;;
658 nios2*-*-*) targ_emul=nios2elf
659 ;;
660 ns32k-pc532-mach* | ns32k-pc532-ux*) targ_emul=pc532macha
661 targ_extra_ofiles=
662 ;;
663 ns32k-*-*bsd* | ns32k-pc532-lites*) targ_emul=ns32knbsd
664 targ_extra_ofiles=
665 ;;
666 or1k-*-elf | or1knd-*-elf | or1k-*-rtems* | or1knd-*-rtems*)
667 targ_emul=elf32or1k
668 ;;
669 or1k-*-linux* | or1knd-*-linux*) targ_emul=elf32or1k_linux
670 ;;
671 pdp11-*-*) targ_emul=pdp11
672 targ_extra_ofiles=
673 ;;
674 pjl*-*-*) targ_emul=pjlelf
675 targ_extra_emuls="elf_i386 elf_iamcu"
676 ;;
677 pj*-*-*) targ_emul=pjelf
678 targ_extra_ofiles=ldelfgen.o
679 ;;
680 powerpc-*-freebsd* | powerpc-*-kfreebsd*-gnu)
681 targ_emul=elf32ppc_fbsd
682 targ_extra_emuls="elf32ppc elf32ppcsim"
683 targ_extra_libpath=elf32ppc;
684 tdir_elf32ppcsim=`echo ${targ_alias} | sed -e 's/ppc/ppcsim/'`
685 ;;
686 powerpc64-*-freebsd*)
687 targ_emul=elf64ppc_fbsd
688 targ_extra_emuls="elf64ppc elf32ppc_fbsd elf32ppc"
689 targ_extra_libpath="elf32ppc_fbsd elf32ppc"
690 tdir_elf32ppc=`echo "${targ_alias}" | sed -e 's/64//'`
691 tdir_elf32ppc_fbsd=$tdir_elf32ppc
692 ;;
693 powerpc64le-*-freebsd*)
694 targ_emul=elf64lppc_fbsd
695 targ_extra_emuls="elf64lppc"
696 ;;
697 powerpc-*-vxworks*)
698 targ_emul=elf32ppcvxworks
699 targ_extra_emuls="elf32ppc elf32ppclinux elf32ppcsim"
700 ;;
701 powerpc*-*-elf* | powerpc*-*-eabi* | powerpc*-*-sysv* \
702 | powerpc*-*-linux* | powerpc*-*-netbsd* | powerpc*-*-openbsd* \
703 | powerpc*-*-rtems* \
704 | powerpc*-*-solaris* | powerpc*-*-kaos* | powerpc*-*-vxworks*)
705 case "${targ}" in
706 powerpc64*)
707 targ_emul=elf64ppc
708 targ_extra_emuls="elf32ppc elf32ppclinux elf32ppcsim"
709 targ_extra_libpath="elf32ppc elf32ppclinux" ;;
710 *linux*)
711 targ_emul=elf32ppclinux
712 targ_extra_emuls="elf32ppc elf32ppcsim"
713 targ_extra_libpath=elf32ppc
714 targ64_extra_emuls=elf64ppc
715 targ64_extra_libpath=elf64ppc ;;
716 *)
717 targ_emul=elf32ppc
718 targ_extra_emuls="elf32ppclinux elf32ppcsim"
719 targ_extra_libpath=elf32ppclinux
720 targ64_extra_emuls=elf64ppc
721 targ64_extra_libpath=elf64ppc ;;
722 esac
723 td=tdir_elf32ppc
724 td64=tdir_elf64ppc
725 s=s/ppc/lppc/g
726 case "${targ}" in
727 powerpcle-* | powerpc64le-*)
728 for z in td td64 targ_emul targ_extra_emuls \
729 targ_extra_libpath targ64_extra_emuls \
730 targ64_extra_libpath
731 do
732 eval ${z}=\"\`echo \$${z} \| sed -e $s\`\"
733 done
734 s=s/lppc/ppc/g ;;
735 esac
736 # Why oh why did we set tooldir based on target_alias
737 # rather than on target?
738 eval tdir_${targ_emul}="${targ_alias}"
739 cpu=`echo "${targ_alias}" | sed -e 's/-.*//'`
740 rest=`echo "${targ_alias}" | sed -e 's/^[^-]*//'`
741 le=le
742 case "${cpu}" in
743 *little) le=little
744 esac
745 ta32=`echo "${cpu}" | sed -e s/64//`"${rest}"
746 ta64=`echo "${cpu}" | sed -e 's/64//;s/$/64/;s/'${le}'64$/64'${le}'/;s/be64$/64be/'`"${rest}"
747 eval test -n \"\$${td}\" || eval ${td}="${ta32}"
748 eval test -n \"\$${td}linux\" || eval ${td}linux="${ta32}"
749 eval test -n \"\$${td}sim\" || eval ${td}sim="${ta32}"
750 eval test -n \"\$${td64}\" || eval ${td64}="${ta64}"
751 # Now provide the other endian
752 for z in targ_extra_emuls targ_extra_libpath
753 do
754 eval ${z}=\"\$${z} \`echo ${targ_emul} \$${z} \| sed -e $s\`\"
755 done
756 for z in targ64_extra_emuls targ64_extra_libpath
757 do
758 eval ${z}=\"\$${z} \`echo \$${z} \| sed -e $s\`\"
759 done
760 td=`echo "${td}" | sed -e $s`
761 td64=`echo "${td64}" | sed -e $s`
762 case "${targ}" in
763 powerpcle-* | powerpc64le-*)
764 cpu=`echo "${cpu}" | sed -e s/${le}\$//` ;;
765 *)
766 cpu=`echo "${cpu}" | sed -e s/be\$//`${le} ;;
767 esac
768 ta32=`echo "${cpu}" | sed -e s/64//`"${rest}"
769 ta64=`echo "${cpu}" | sed -e 's/64//;s/$/64/;s/'${le}'64$/64'${le}/`"${rest}"
770 eval test -n \"\$${td}\" || eval ${td}="${ta32}"
771 eval test -n \"\$${td}linux\" || eval ${td}linux="${ta32}"
772 eval test -n \"\$${td}sim\" || eval ${td}sim="${ta32}"
773 eval test -n \"\$${td64}\" || eval ${td64}="${ta64}"
774 ;;
775 powerpc-*-nto*) targ_emul=elf32ppcnto
776 ;;
777 powerpcle-*-nto*) targ_emul=elf32lppcnto
778 ;;
779 powerpc-*-macos*) targ_emul=ppcmacos
780 targ_extra_ofiles=
781 ;;
782 powerpc-*-aix[5-9]*) targ_emul=aix5ppc
783 targ_extra_ofiles=
784 ;;
785 powerpc-*-aix*) targ_emul=aixppc
786 targ_extra_ofiles=
787 ;;
788 powerpc-*-beos*) targ_emul=aixppc
789 targ_extra_ofiles=
790 ;;
791 powerpc-*-haiku*) targ_emul=elf32ppchaiku
792 ;;
793 powerpc-*-windiss*) targ_emul=elf32ppcwindiss
794 ;;
795 pru*-*-*) targ_emul=pruelf
796 ;;
797 riscv32be*-*-linux*) targ_emul=elf32briscv
798 targ_extra_emuls="elf32briscv_ilp32f elf32briscv_ilp32 elf64briscv elf64briscv_lp64f elf64briscv_lp64 elf32lriscv elf32lriscv_ilp32f elf32lriscv_ilp32 elf64lriscv elf64lriscv_lp64f elf64lriscv_lp64"
799 targ_extra_libpath=$targ_extra_emuls
800 ;;
801 riscv32*-*-linux*) targ_emul=elf32lriscv
802 targ_extra_emuls="elf32lriscv_ilp32f elf32lriscv_ilp32 elf64lriscv elf64lriscv_lp64f elf64lriscv_lp64 elf32briscv elf32briscv_ilp32f elf32briscv_ilp32 elf64briscv elf64briscv_lp64f elf64briscv_lp64"
803 targ_extra_libpath=$targ_extra_emuls
804 ;;
805 riscvbe-*-* | riscv32be*-*-*)
806 targ_emul=elf32briscv
807 targ_extra_emuls="elf64briscv elf32lriscv elf64lriscv"
808 targ_extra_libpath=$targ_extra_emuls
809 ;;
810 riscv-*-* | riscv32*-*-*)
811 targ_emul=elf32lriscv
812 targ_extra_emuls="elf64lriscv elf32briscv elf64briscv"
813 targ_extra_libpath=$targ_extra_emuls
814 ;;
815 riscv64be*-*-linux*) targ_emul=elf64briscv
816 targ_extra_emuls="elf64briscv_lp64f elf64briscv_lp64 elf32briscv elf32briscv_ilp32f elf32briscv_ilp32 elf64lriscv elf64lriscv_lp64f elf64lriscv_lp64 elf32lriscv elf32lriscv_ilp32f elf32lriscv_ilp32"
817 targ_extra_libpath=$targ_extra_emuls
818 ;;
819 riscv64*-*-linux*) targ_emul=elf64lriscv
820 targ_extra_emuls="elf64lriscv_lp64f elf64lriscv_lp64 elf32lriscv elf32lriscv_ilp32f elf32lriscv_ilp32 elf64briscv elf64briscv_lp64f elf64briscv_lp64 elf32briscv elf32briscv_ilp32f elf32briscv_ilp32"
821 targ_extra_libpath=$targ_extra_emuls
822 ;;
823 riscv64be*-*-*) targ_emul=elf64briscv
824 targ_extra_emuls="elf32briscv elf64lriscv elf32lriscv"
825 targ_extra_libpath=$targ_extra_emuls
826 ;;
827 riscv64*-*-*) targ_emul=elf64lriscv
828 targ_extra_emuls="elf32lriscv elf64briscv elf32briscv"
829 targ_extra_libpath=$targ_extra_emuls
830 ;;
831 rs6000-*-aix[5-9]*) targ_emul=aix5rs6
832 targ_extra_ofiles=
833 ;;
834 rs6000-*-aix*) targ_emul=aixrs6
835 targ_extra_ofiles=
836 ;;
837 rl78-*-*) targ_emul=elf32rl78
838 ;;
839 rx-*-linux*) targ_emul=elf32rx_linux
840 ;;
841 rx-*-*) targ_emul=elf32rx
842 ;;
843 s12z-*-*) targ_emul=m9s12zelf
844 targ_extra_ofiles=ldelfgen.o
845 ;;
846 s390x-*-linux*) targ_emul=elf64_s390
847 targ_extra_emuls=elf_s390
848 targ_extra_libpath=$targ_extra_emuls
849 tdir_elf_s390=`echo ${targ_alias} | sed -e 's/s390x/s390/'`
850 ;;
851 s390x-*-tpf*) targ_emul=elf64_s390
852 tdir_elf_s390=`echo ${targ_alias} | sed -e 's/s390x/s390/'`
853 ;;
854 s390-*-linux*) targ_emul=elf_s390
855 targ64_extra_emuls=elf64_s390
856 targ64_extra_libpath=elf64_s390
857 tdir_elf64_s390=`echo ${targ_alias} | sed -e 's/s390/s390x/'`
858 ;;
859 score-*-elf) targ_emul=score7_elf
860 targ_extra_emuls=score3_elf
861 ;;
862 sh-*-linux*) targ_emul=shlelf_linux
863 targ_extra_emuls="shelf_linux shlelf_fd shelf_fd"
864 targ_extra_libpath=shelf_linux
865 ;;
866 sh*eb-*-linux*) targ_emul=shelf_linux
867 targ_extra_emuls="shelf_fd"
868 ;;
869 sh*-*-linux*) targ_emul=shlelf_linux
870 targ_extra_emuls="shlelf_fd"
871 ;;
872 sh*l*-*-netbsdaout*) targ_emul=shl
873 targ_extra_emuls=sh
874 ;;
875 sh*-*-netbsdaout*) targ_emul=sh
876 targ_extra_emuls=shl
877 ;;
878 sh*l*-*-netbsd*) targ_emul=shlelf_nbsd
879 targ_extra_emuls=shelf_nbsd
880 ;;
881 sh*-*-netbsd*) targ_emul=shelf_nbsd
882 targ_extra_emuls=shlelf_nbsd
883 ;;
884 shle*-*-elf* | sh[1234]*le*-*-elf | shle*-*-kaos*)
885 targ_emul=shlelf
886 targ_extra_emuls="shelf shl sh"
887 ;;
888 sh-*-elf* | sh[1234]*-*-elf | sh-*-rtems* | sh-*-kaos*)
889 targ_emul=shelf
890 targ_extra_emuls="shlelf sh shl"
891 ;;
892 sh-*-uclinux* | sh[12]-*-uclinux*)
893 targ_emul=shelf_uclinux
894 targ_extra_emuls="shelf shlelf sh shl shelf_fd shlelf_fd"
895 ;;
896 sh-*-vxworks) targ_emul=shelf_vxworks
897 targ_extra_emuls=shlelf_vxworks
898 ;;
899 sh-*-nto*) targ_emul=shelf_nto
900 targ_extra_emuls=shlelf_nto
901 ;;
902 sh-*-pe) targ_emul=shpe ;
903 targ_extra_ofiles="deffilep.o pe-dll.o"
904 ;;
905 sh-*-*) targ_emul=sh;
906 targ_extra_emuls=shl
907 targ_extra_ofiles=
908 ;;
909 sparc64-*-freebsd* | sparcv9-*-freebsd* | sparc64-*-kfreebsd*-gnu | sparcv9-*-kfreebsd*-gnu)
910 targ_emul=elf64_sparc_fbsd
911 targ_extra_emuls="elf64_sparc elf32_sparc"
912 targ_extra_libpath=$targ_extra_emuls
913 tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'`
914 ;;
915 sparc64-*-linux-*) targ_emul=elf64_sparc
916 targ_extra_emuls="elf32_sparc"
917 targ_extra_libpath=elf32_sparc
918 tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'`
919 ;;
920 sparc64-*-*bsd*) targ_emul=elf64_sparc
921 targ_extra_emuls="elf32_sparc"
922 ;;
923 sparc64-*-solaris2* | sparcv9-*-solaris2*)
924 targ_emul=elf64_sparc_sol2
925 targ_extra_emuls="elf64_sparc elf32_sparc_sol2 elf32_sparc"
926 targ_extra_libpath=$targ_extra_emuls
927 tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'`
928 ;;
929 sparc64-*-haiku*) targ_emul=elf64_sparc
930 ;;
931 sparc64-*-*) targ_emul=elf64_sparc
932 ;;
933 sparc*-*-linux-*) targ_emul=elf32_sparc
934 targ_extra_emuls="elf64_sparc"
935 targ_extra_libpath=elf64_sparc
936 tdir_elf64_sparc=`echo ${targ_alias} | sed -e 's/32//'`
937 ;;
938 sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
939 targ_emul=elf32_sparc_sol2
940 targ_extra_emuls=elf32_sparc
941 ;;
942 sparc-*-solaris2*) targ_emul=elf32_sparc_sol2
943 targ_extra_emuls="elf32_sparc elf64_sparc_sol2 elf64_sparc"
944 targ_extra_libpath=$targ_extra_emuls
945 tdir_elf64_sparc=`echo ${targ_alias} | sed -e 's/32//'`
946 ;;
947 sparc*-*-vxworks*) targ_emul=elf32_sparc_vxworks
948 ;;
949 sparc*-*-*) targ_emul=elf32_sparc
950 ;;
951 spu-*-elf*) targ_emul=elf32_spu
952 ;;
953 tic30-*-*coff*) targ_emul=tic30coff
954 targ_extra_ofiles=
955 ;;
956 tic4x-*-* | c4x-*-*) targ_emul=tic4xcoff
957 targ_extra_emuls="tic3xcoff tic3xcoff_onchip"
958 targ_extra_ofiles=
959 ;;
960 tic54x-*-* | c54x*-*-*) targ_emul=tic54xcoff
961 targ_extra_ofiles=
962 ;;
963 tic6x-*-elf) targ_emul=elf32_tic6x_elf_le
964 targ_extra_emuls="elf32_tic6x_elf_be elf32_tic6x_le elf32_tic6x_be"
965 targ_extra_libpath=$targ_extra_emuls
966 ;;
967 tic6x-*-uclinux) targ_emul=elf32_tic6x_linux_le
968 targ_extra_emuls="elf32_tic6x_linux_be elf32_tic6x_le elf32_tic6x_be"
969 targ_extra_libpath=$targ_extra_emuls
970 ;;
971 tilegx-*-*) targ_emul=elf64tilegx
972 targ_extra_emuls="elf64tilegx_be elf32tilegx elf32tilegx_be"
973 targ_extra_libpath=$targ_extra_emuls
974 ;;
975 tilegxbe-*-*) targ_emul=elf64tilegx_be
976 targ_extra_emuls="elf64tilegx elf32tilegx elf32tilegx_be"
977 targ_extra_libpath=$targ_extra_emuls
978 ;;
979 tilepro-*-*) targ_emul=elf32tilepro
980 ;;
981 v850*-*-*) targ_emul=v850_rh850
982 targ_extra_emuls=v850
983 ;;
984 vax-*-netbsdaout*) targ_emul=vaxnbsd
985 targ_extra_emuls=elf32vax
986 ;;
987 vax-*-netbsd*) targ_emul=elf32vax
988 targ_extra_emuls=vaxnbsd
989 ;;
990 vax-*-linux-*) targ_emul=elf32vax
991 ;;
992 visium-*-elf) targ_emul=elf32visium
993 ;;
994 x86_64-*-rdos*) targ_emul=elf64rdos
995 ;;
996 x86_64-*-cloudabi*) targ_emul=elf_x86_64_cloudabi
997 ;;
998 x86_64-*-haiku*) targ_emul=elf_x86_64_haiku
999 targ_extra_emuls="elf_x86_64 elf_i386_haiku"
1000 ;;
1001 x86_64-*-linux-gnux32) targ_emul=elf32_x86_64
1002 targ_extra_emuls="elf_x86_64 elf_i386 elf_iamcu"
1003 targ_extra_libpath="elf_i386 elf_iamcu elf_x86_64"
1004 tdir_elf_iamcu=`echo ${targ_alias} | sed -e 's/x86_64/i386/' -e 's/-linux-gnux32/-linux-gnu/'`
1005 tdir_elf_i386=`echo ${targ_alias} | sed -e 's/x86_64/i386/' -e 's/-linux-gnux32/-linux-gnu/'`
1006 ;;
1007 x86_64-*-linux-*) targ_emul=elf_x86_64
1008 targ_extra_emuls="elf32_x86_64 elf_i386 elf_iamcu"
1009 targ_extra_libpath="elf_i386 elf32_x86_64"
1010 tdir_elf_i386=`echo ${targ_alias} | sed -e 's/x86_64/i386/'`
1011 ;;
1012 x86_64-*-redox*) targ_emul=elf_x86_64
1013 targ_extra_emuls=elf_i386
1014 ;;
1015 x86_64-*-solaris2*) targ_emul=elf_x86_64_sol2
1016 targ_extra_emuls="elf_x86_64 elf_i386_sol2 elf_i386_ldso elf_i386 elf_iamcu"
1017 targ_extra_libpath=$targ_extra_emuls
1018 tdir_elf_i386=`echo ${targ_alias} | sed -e 's/x86_64/i386/'`
1019 ;;
1020 x86_64-*-netbsd* | x86_64-*-openbsd*)
1021 targ_emul=elf_x86_64
1022 targ_extra_emuls="elf_i386 elf_iamcu"
1023 tdir_elf_iamcu=`echo ${targ_alias} | \
1024 sed -e 's/x86_64/i386/' -e 's/aout//'`
1025 tdir_elf_i386=`echo ${targ_alias} | \
1026 sed -e 's/x86_64/i386/' -e 's/aout//'`
1027 ;;
1028 x86_64-*-elf* | x86_64-*-rtems* | x86_64-*-fuchsia* | x86_64-*-genode*)
1029 targ_emul=elf_x86_64
1030 targ_extra_emuls="elf_i386 elf_iamcu elf32_x86_64"
1031 targ_extra_libpath="elf_i386 elf_iamcu elf32_x86_64"
1032 tdir_elf_i386=`echo ${targ_alias} | sed -e 's/x86_64/i386/'`
1033 ;;
1034 x86_64-*-dragonfly*) targ_emul=elf_x86_64
1035 targ_extra_emuls="elf_i386 elf_iamcu"
1036 ;;
1037 x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu)
1038 targ_emul=elf_x86_64_fbsd
1039 targ_extra_emuls="elf_i386_fbsd elf_x86_64 elf_i386 elf_iamcu"
1040 targ_extra_libpath="elf_i386_fbsd"
1041 tdir_elf_i386_fbsd=`echo ${targ_alias} \
1042 | sed -e 's/x86_64/i386/'`
1043 tdir_elf_iamcu=`echo ${targ_alias} \
1044 | sed -e 's/x86_64/i386/'`
1045 tdir_elf_i386=`echo ${targ_alias} \
1046 | sed -e 's/x86_64/i386/'`
1047 ;;
1048 x86_64-*-pe | x86_64-*-pep) targ_emul=i386pep ;
1049 targ_extra_emuls=i386pe ;
1050 targ_extra_ofiles="deffilep.o pdb.o pep-dll-x86_64.o pe-dll.o"
1051 ;;
1052 x86_64-*-cygwin) targ_emul=i386pep ;
1053 targ_extra_emuls=i386pe
1054 targ_extra_ofiles="deffilep.o pdb.o pep-dll.o pe-dll.o"
1055 test "$targ" != "$host" && LIB_PATH='${tooldir}/lib/w32api'
1056 ;;
1057 x86_64-*-mingw*) targ_emul=i386pep ;
1058 targ_extra_emuls=i386pe
1059 targ_extra_ofiles="deffilep.o pdb.o pep-dll.o pe-dll.o"
1060 ;;
1061 xgate-*-*) targ_emul=xgateelf
1062 targ_extra_ofiles=ldelfgen.o
1063 ;;
1064 xstormy16-*-*) targ_emul=elf32xstormy16
1065 ;;
1066 xtensa*-*-*) targ_emul=elf32xtensa
1067 ;;
1068 z80-*-elf*) targ_emul=elf32z80
1069 targ_extra_ofiles="ldelf.o ldelfgen.o"
1070 ;;
1071 z80-*-coff) targ_emul=z80
1072 targ_extra_ofiles=
1073 ;;
1074 z8k-*-coff) targ_emul=z8002
1075 targ_extra_emuls=z8001
1076 targ_extra_ofiles=
1077 ;;
1078 loongarch32-*) targ_emul=elf32loongarch
1079 ;;
1080 loongarch64-*) targ_emul=elf64loongarch
1081 ;;
1082 *-*-ieee*) targ_emul=vanilla
1083 targ_extra_ofiles=
1084 ;;
1085 *)
1086 echo 2>&1 "*** ld does not support target ${targ}"
1087 echo 2>&1 "*** see ld/configure.tgt for supported targets"
1088 exit 1
1089
1090 esac
1091
1092 NATIVE_LIB_DIRS='/usr/local/lib /lib /usr/lib'
1093 case "${target}" in
1094
1095 *-*-dragonfly*)
1096 NATIVE_LIB_DIRS='/lib /usr/lib /usr/pkg/lib /usr/local/lib'
1097 ;;
1098
1099 *-*-freebsd*)
1100 NATIVE_LIB_DIRS='/lib /usr/lib /usr/local/lib'
1101 ;;
1102
1103 hppa*64*-*-hpux11*)
1104 NATIVE_LIB_DIRS=/usr/lib/pa20_64
1105 ;;
1106
1107 i[3-7]86-*-sysv4*)
1108 NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib'
1109 ;;
1110
1111 i[3-7]86-*-solaris*)
1112 NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib'
1113 ;;
1114
1115 i[3-7]86-pc-interix*)
1116 NATIVE_LIB_DIRS='/usr/local/lib $$INTERIX_ROOT/usr/lib /lib /usr/lib'
1117 ;;
1118
1119 ia64-*-aix*)
1120 NATIVE_LIB_DIRS='/usr/local/lib /usr/lib/ia64l64 /lib /usr/lib'
1121 ;;
1122
1123 sparc*-*-solaris2*)
1124 NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib'
1125 ;;
1126
1127 spu-*-elf*)
1128 # This allows one to build a pair of PPU/SPU toolchains with common sysroot.
1129 NATIVE_LIB_DIRS='/lib'
1130 ;;
1131
1132 i[03-9x]86-*-cygwin* | x86_64-*-cygwin*)
1133 NATIVE_LIB_DIRS='/usr/lib /usr/lib/w32api'
1134 ;;
1135
1136 *-*-linux*)
1137 ;;
1138
1139 *-*-netbsd*)
1140 ;;
1141
1142 alpha*-*-*)
1143 NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib'
1144 ;;
1145
1146 esac
1147
1148 case "${target}" in
1149 frv-*-* | hppa*-*-* | ia64-*-* | mips*-*-*)
1150 # Don't enable -z relro by default since many relro tests fail on these
1151 # targets:
1152 # FAIL: strip -z relro (relro1)
1153 # FAIL: strip -z relro -shared (relro1)
1154 # FAIL: objcopy -z relro (relro1)
1155 # FAIL: objcopy -z relro -shared (relro1)
1156 # FAIL: objcopy -z relro (tdata1)
1157 # FAIL: objcopy -shared -z relro (tdata1)
1158 # FAIL: objcopy -z relro (tdata2)
1159 # FAIL: objcopy -shared -z relro (tdata2)
1160 # FAIL: objcopy -z relro (tdata3)
1161 # FAIL: objcopy -shared -z relro (tdata3)
1162 # FAIL: objcopy -shared -z relro (tbss1)
1163 # FAIL: objcopy -shared -z relro (tbss2)
1164 # FAIL: objcopy -shared -z relro (tbss3)
1165 ;;
1166 *-*-linux*)
1167 if test ${ac_default_ld_z_relro} = unset; then
1168 ac_default_ld_z_relro=1
1169 fi
1170 ;;
1171 esac
1172
1173 # Enable -z separate-code and --warn-textrel by default for Linux/x86.
1174 case "${target}" in
1175 i[3-7]86-*-linux-* | x86_64-*-linux-*)
1176 if test ${ac_default_ld_z_separate_code} = unset; then
1177 ac_default_ld_z_separate_code=1
1178 fi
1179 if test ${ac_default_ld_textrel_check} = unset; then
1180 ac_default_ld_textrel_check=yes
1181 fi
1182 ;;
1183 esac