Commit | Line | Data |
---|---|---|
252b5132 RH |
1 | # This is the linker target specific file. This is invoked by the |
2 | # autoconf generated configure script. Putting it in a separate shell | |
3 | # file lets us skip running autoconf when modifying target specific | |
4 | # information. | |
5 | ||
6 | # This file switches on the shell variable ${targ}, and sets the | |
7 | # following shell variables: | |
8 | # targ_emul name of linker emulation to use | |
9 | # targ_extra_emuls additional linker emulations to provide | |
3336653a | 10 | # targ_extra_libpath additional linker emulations using LIB_PATH |
252b5132 | 11 | # targ_extra_ofiles additional objects needed by the emulation |
9c8ebd6a DJ |
12 | # NATIVE_LIB_DIRS library directories to search on this host |
13 | # (if we are a native or sysrooted linker) | |
252b5132 RH |
14 | |
15 | targ_extra_emuls= | |
16 | targ_extra_ofiles= | |
17 | ||
18 | case "${targ}" in | |
4a096548 | 19 | am33_2.0-*-linux*) targ_emul=elf32am33lin ;; |
252b5132 RH |
20 | arm-epoc-pe) targ_emul=arm_epoc_pe ; |
21 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
344a211f NC |
22 | arm-*-wince) targ_emul=armpe ; |
23 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
252b5132 RH |
24 | arm-*-pe) targ_emul=armpe ; |
25 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
26 | arc-*-elf*) targ_emul=arcelf ;; | |
75ca919a MM |
27 | avr-*-*) targ_emul=avr2 |
28 | targ_extra_emuls="avr1 avr3 avr4 avr5" ;; | |
0949843d | 29 | cr16c-*-elf*) targ_emul=elf32cr16c ;; |
1268a053 | 30 | cris-*-*aout*) targ_emul=crisaout |
9d06555c HPN |
31 | targ_extra_emuls="criself crislinux" |
32 | targ_extra_libpath=$targ_extra_emuls ;; | |
b826ae22 | 33 | cris-*-linux-gnu*) targ_emul=crislinux ;; |
1268a053 HPN |
34 | cris-*-*) targ_emul=criself |
35 | targ_extra_emuls="crisaout crislinux" | |
36 | targ_extra_libpath=$targ_extra_emuls ;; | |
252b5132 RH |
37 | d10v-*-*) targ_emul=d10velf ;; |
38 | d30v-*-*ext*) targ_emul=d30v_e; targ_extra_emuls="d30velf d30v_o" ;; | |
39 | d30v-*-*onchip*) targ_emul=d30v_o; targ_extra_emuls="d30velf d30v_e" ;; | |
40 | d30v-*-*) targ_emul=d30velf; targ_extra_emuls="d30v_e d30v_o" ;; | |
d172d4ba | 41 | dlx-*-elf*) targ_emul=elf32_dlx ;; |
252b5132 RH |
42 | sparc64-*-aout*) targ_emul=sparcaout ;; |
43 | sparc64-*-elf*) targ_emul=elf64_sparc ;; | |
44 | sparc-sun-sunos4*) targ_emul=sun4 ;; | |
45 | sparclite*-*-elf) targ_emul=elf32_sparc ;; | |
46 | sparclite*-*-coff) targ_emul=coff_sparc ;; | |
47 | sparclite*-fujitsu-*) targ_emul=sparcaout ;; | |
48 | sparc*-*-aout) targ_emul=sparcaout ;; | |
49 | sparc*-*-coff) targ_emul=coff_sparc ;; | |
50 | sparc*-*-elf) targ_emul=elf32_sparc ;; | |
51 | sparc*-*-sysv4*) targ_emul=elf32_sparc ;; | |
13dfd2d0 | 52 | sparc64-*-freebsd* | sparcv9-*-freebsd* | sparc64-*-kfreebsd*-gnu | sparcv9-*-kfreebsd*-gnu) |
ac3e50bf DB |
53 | targ_emul=elf64_sparc_fbsd |
54 | targ_extra_emuls="elf64_sparc elf32_sparc" | |
fb33b906 DB |
55 | targ_extra_libpath=$targ_extra_emuls |
56 | tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'` | |
57 | ;; | |
252b5132 RH |
58 | sparc*-*-linux*aout*) targ_emul=sparclinux |
59 | targ_extra_emuls="elf32_sparc sun4" | |
60 | tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/aout//'` | |
61 | tdir_sun4=sparc-sun-sunos4 | |
62 | ;; | |
63 | sparc64-*-linux-gnu*) targ_emul=elf64_sparc | |
64 | targ_extra_emuls="elf32_sparc sparclinux sun4" | |
780248c4 | 65 | targ_extra_libpath=elf32_sparc |
252b5132 RH |
66 | tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'` |
67 | tdir_sparclinux=${tdir_elf32_sparc}aout | |
68 | tdir_sun4=sparc-sun-sunos4 | |
69 | ;; | |
70 | sparc*-*-linux-gnu*) targ_emul=elf32_sparc | |
ad51fb57 | 71 | targ_extra_emuls="sparclinux elf64_sparc sun4" |
780248c4 | 72 | targ_extra_libpath=elf64_sparc |
252b5132 | 73 | tdir_sparclinux=${targ_alias}aout |
ad51fb57 | 74 | tdir_elf64_sparc=`echo ${targ_alias} | sed -e 's/32//'` |
252b5132 RH |
75 | tdir_sun4=sparc-sun-sunos4 |
76 | ;; | |
77 | sparc*-*-lynxos*) targ_emul=sparclynx ;; | |
c29ef4b5 AM |
78 | sparc64-*-netbsd* | sparc64-*-openbsd*) |
79 | targ_emul=elf64_sparc | |
cf86e6df AM |
80 | targ_extra_emuls="elf32_sparc" |
81 | ;; | |
d8475ff6 | 82 | sparc*-*-netbsd*elf*) targ_emul=elf32_sparc ;; |
252b5132 | 83 | sparc*-*-netbsd*) targ_emul=sparcnbsd ;; |
a1836d49 AO |
84 | sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*) |
85 | targ_emul=elf32_sparc ;; | |
86 | sparc-*-solaris2*) targ_emul=elf32_sparc | |
87 | targ_extra_emuls="elf64_sparc" | |
88 | targ_extra_libpath=$targ_extra_emuls | |
89 | tdir_elf64_sparc=`echo ${targ_alias} | sed -e 's/32//'` | |
90 | ;; | |
91 | sparcv9-*-solaris2* | sparc64-*-solaris2*) | |
92 | targ_emul=elf64_sparc | |
93 | targ_extra_emuls="elf32_sparc" | |
94 | targ_extra_libpath=$targ_extra_emuls | |
95 | tdir_elf32_sparc=`echo ${targ_alias} | sed -e 's/64//'` | |
96 | ;; | |
252b5132 RH |
97 | sparc*-*-solaris2*) targ_emul=elf32_sparc ;; |
98 | sparc*-wrs-vxworks*) targ_emul=sparcaout ;; | |
24f6971a NC |
99 | sparc*-*-rtemsaout*) targ_emul=sparcaout ;; |
100 | sparc*-*-rtemself*) targ_emul=elf32_sparc ;; | |
101 | sparc*-*-rtems*) targ_emul=elf32_sparc ;; | |
9d7e2ba5 | 102 | i860-*-coff) targ_emul=coff_i860 ;; |
165589e4 JE |
103 | i860-stardent-sysv4* | i860-stardent-elf*) |
104 | targ_emul=elf32_i860 ;; | |
252b5132 RH |
105 | i960-wrs-vxworks5.0*) targ_emul=gld960 ;; |
106 | i960-wrs-vxworks5*) targ_emul=gld960coff ;; | |
107 | i960-wrs-vxworks*) targ_emul=gld960 ;; | |
108 | i960-*-coff) targ_emul=gld960coff ;; | |
109 | i960-intel-nindy) targ_emul=gld960 ;; | |
110 | i960-*-rtems*) targ_emul=gld960coff ;; | |
0ccf812a | 111 | i960-*-elf*) targ_emul=elf32_i960 ;; |
800eeca4 | 112 | ia64-*-elf*) targ_emul=elf64_ia64 ;; |
13dfd2d0 NC |
113 | ia64-*-freebsd* | ia64-*-kfreebsd*-gnu) |
114 | targ_emul=elf64_ia64_fbsd | |
ac3e50bf | 115 | targ_extra_emuls="elf64_ia64" ;; |
9596feea | 116 | ia64-*-netbsd*) targ_emul=elf64_ia64 ;; |
800eeca4 | 117 | ia64-*-linux*) targ_emul=elf64_ia64 ;; |
41c49998 | 118 | ia64-*-aix*) targ_emul=elf64_aix ;; |
6edf0760 NC |
119 | m32r*le-*-elf*) targ_emul=m32rlelf ;; |
120 | m32r*-*-elf*) targ_emul=m32relf ;; | |
121 | m32r*le-*-linux-gnu*) targ_emul=m32rlelf_linux ;; | |
122 | m32r*-*-linux-gnu*) targ_emul=m32relf_linux ;; | |
60bcf0fa NC |
123 | m68hc11-*-*|m6811-*-*) targ_emul=m68hc11elf |
124 | targ_extra_emuls="m68hc11elfb m68hc12elf m68hc12elfb" ;; | |
125 | m68hc12-*-*|m6812-*-*) targ_emul=m68hc12elf | |
126 | targ_extra_emuls="m68hc12elfb m68hc11elf m68hc11elfb" ;; | |
252b5132 RH |
127 | m68*-sun-sunos[34]*) targ_emul=sun3 ;; |
128 | m68*-wrs-vxworks*) targ_emul=sun3 ;; | |
129 | m68*-ericsson-ose) targ_emul=sun3 ;; | |
130 | m68*-apple-aux*) targ_emul=m68kaux ;; | |
131 | *-tandem-none) targ_emul=st2000 ;; | |
5b93d8bb | 132 | i370-*-elf* | i370-*-linux-gnu*) targ_emul=elf32i370 ;; |
80c7c40a NC |
133 | i[3-7]86-*-nto-qnx*) targ_emul=i386nto ;; |
134 | i[3-7]86-*-vsta) targ_emul=vsta ;; | |
135 | i[3-7]86-go32-rtems*) targ_emul=i386go32 ;; | |
136 | i[3-7]86-*-go32) targ_emul=i386go32 ;; | |
137 | i[3-7]86-*-msdosdjgpp*) targ_emul=i386go32 ;; | |
138 | i[3-7]86-*-aix*) targ_emul=i386coff ;; | |
139 | i[3-7]86-*-sco*) targ_emul=i386coff ;; | |
140 | i[3-7]86-*-isc*) targ_emul=i386coff ;; | |
141 | i[3-7]86-*-lynxos*) targ_emul=i386lynx ;; | |
142 | i[3-7]86-*-coff) targ_emul=i386coff ;; | |
143 | i[3-7]86-*-rtemscoff*) targ_emul=i386coff ;; | |
144 | i[3-7]86-*-rtemself*) targ_emul=elf_i386 ;; | |
145 | i[3-7]86-*-rtems*) targ_emul=elf_i386 ;; | |
146 | i[3-7]86-*-aros*) targ_emul=elf_i386 ;; | |
147 | i[3-7]86-*-bsd) targ_emul=i386bsd ;; | |
148 | i[3-7]86-*-bsd386) targ_emul=i386bsd ;; | |
149 | i[3-7]86-*-bsdi*) targ_emul=i386bsd ;; | |
150 | i[3-7]86-*-aout) targ_emul=i386aout ;; | |
151 | i[3-7]86-*-linux*aout*) targ_emul=i386linux | |
252b5132 RH |
152 | targ_extra_emuls=elf_i386 |
153 | tdir_elf_i386=`echo ${targ_alias} | sed -e 's/aout//'` | |
154 | ;; | |
80c7c40a NC |
155 | i[3-7]86-*-linux*oldld) targ_emul=i386linux; targ_extra_emuls=elf_i386 ;; |
156 | i[3-7]86-*-linux-gnu*) targ_emul=elf_i386 | |
252b5132 | 157 | targ_extra_emuls=i386linux |
39a2a3eb L |
158 | if test x${want64} = xtrue; then |
159 | targ_extra_emuls="$targ_extra_emuls elf_x86_64" | |
160 | fi | |
252b5132 RH |
161 | tdir_i386linux=${targ_alias}aout |
162 | ;; | |
2be3aa03 NC |
163 | x86_64-*-linux-gnu*) targ_emul=elf_x86_64 |
164 | targ_extra_emuls="elf_i386 i386linux" | |
beb43bb9 JH |
165 | targ_extra_libpath=elf_i386 |
166 | tdir_i386linux=`echo ${targ_alias}aout | sed -e 's/x86_64/i386/'` | |
167 | tdir_elf_i386=`echo ${targ_alias} | sed -e 's/x86_64/i386/'` | |
2be3aa03 | 168 | ;; |
80c7c40a NC |
169 | i[3-7]86-*-sysv[45]*) targ_emul=elf_i386 ;; |
170 | i[3-7]86-*-solaris2*) targ_emul=elf_i386_ldso | |
506eee22 NC |
171 | targ_extra_emuls="elf_i386" |
172 | ;; | |
80c7c40a NC |
173 | i[3-7]86-*-unixware) targ_emul=elf_i386 ;; |
174 | i[3-7]86-*-solaris*) targ_emul=elf_i386_ldso | |
506eee22 NC |
175 | targ_extra_emuls="elf_i386" |
176 | ;; | |
4615568e NC |
177 | i[3-7]86-*-netbsdelf* | \ |
178 | i[3-7]86-*-netbsd*-gnu* | \ | |
179 | i[3-7]86-*-knetbsd*-gnu) | |
a06a29f2 | 180 | targ_emul=elf_i386 |
9ffecff1 MG |
181 | targ_extra_emuls=i386nbsd |
182 | ;; | |
80c7c40a | 183 | i[3-7]86-*-netbsdpe*) targ_emul=i386pe |
436e8db0 NC |
184 | targ_extra_ofiles="deffilep.o pe-dll.o" |
185 | ;; | |
80c7c40a | 186 | i[3-7]86-*-netbsd*) targ_emul=i386nbsd |
9ffecff1 MG |
187 | targ_extra_emuls=elf_i386 |
188 | ;; | |
8a8b2d4b AJ |
189 | x86_64-*-netbsd*) targ_emul=elf_x86_64 |
190 | targ_extra_emuls="elf_i386 i386nbsd" | |
191 | tdir_elf_i386=`echo ${targ_alias} | \ | |
192 | sed -e 's/x86_64/i386/'` | |
193 | case "${tdir_elf_i386}" in | |
194 | *-netbsdelf*) ;; | |
195 | *) | |
196 | tdir_elf_i386=`echo ${tdir_elf_i386} | \ | |
197 | sed -e 's/netbsd/netbsdelf/'` | |
198 | ;; | |
199 | esac | |
200 | ;; | |
80c7c40a NC |
201 | i[3-7]86-*-netware) targ_emul=i386nw ;; |
202 | i[3-7]86-*-elf*) targ_emul=elf_i386 ;; | |
203 | i[3-7]86-*-kaos*) targ_emul=elf_i386 ;; | |
204 | i[3-7]86-*-freebsdaout* | i[3-7]86-*-freebsd[12].* | i[3-7]86-*-freebsd[12]) | |
2641b0c9 | 205 | targ_emul=i386bsd ;; |
13dfd2d0 NC |
206 | i[3-7]86-*-freebsd* | i[3-7]86-*-kfreebsd*-gnu) |
207 | targ_emul=elf_i386_fbsd | |
ac3e50bf | 208 | targ_extra_emuls="elf_i386 i386bsd" ;; |
13dfd2d0 NC |
209 | x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu) |
210 | targ_emul=elf_x86_64_fbsd | |
ac3e50bf DB |
211 | targ_extra_emuls="elf_i386_fbsd elf_x86_64 elf_i386" |
212 | tdir_elf_i386=`echo ${targ_alias} \ | |
213 | | sed -e 's/x86_64/i386/'` | |
fb33b906 | 214 | ;; |
80c7c40a NC |
215 | i[3-7]86-*-sysv*) targ_emul=i386coff ;; |
216 | i[3-7]86-*-ptx*) targ_emul=i386coff ;; | |
217 | i[3-7]86-*-mach*) targ_emul=i386mach ;; | |
218 | i[3-7]86-*-gnu*) targ_emul=elf_i386 ;; | |
219 | i[3-7]86-*-msdos*) targ_emul=i386msdos; targ_extra_emuls=i386aout ;; | |
220 | i[3-7]86-*-moss*) targ_emul=i386moss; targ_extra_emuls=i386msdos ;; | |
221 | i[3-7]86-*-winnt*) targ_emul=i386pe ; | |
252b5132 | 222 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; |
80c7c40a | 223 | i[3-7]86-*-pe) targ_emul=i386pe ; |
252b5132 | 224 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; |
80c7c40a | 225 | i[3-7]86-*-cygwin*) targ_emul=i386pe ; |
f8b0dbb8 CF |
226 | targ_extra_ofiles="deffilep.o pe-dll.o" |
227 | test "$targ" != "$host" && LIB_PATH='${tooldir}/lib/w32api' ;; | |
80c7c40a | 228 | i[3-7]86-*-mingw32*) targ_emul=i386pe ; |
252b5132 | 229 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; |
80c7c40a | 230 | i[3-7]86-*-interix*) targ_emul=i386pe_posix; |
a7e78dae | 231 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; |
80c7c40a NC |
232 | i[3-7]86-*-beospe*) targ_emul=i386beos ;; |
233 | i[3-7]86-*-beos*) targ_emul=elf_i386_be ;; | |
325fab4e | 234 | i[3-7]86-*-vxworks*) targ_emul=elf_i386 ;; |
80c7c40a | 235 | i[3-7]86-*-chaos) targ_emul=elf_i386_chaos ;; |
252b5132 RH |
236 | m8*-*-*) targ_emul=m88kbcs ;; |
237 | a29k-*-udi) targ_emul=sa29200 ;; | |
238 | a29k-*-ebmon) targ_emul=ebmon29k ;; | |
239 | a29k-*-*) targ_emul=a29k ;; | |
240 | # arm-*-riscix*) targ_emul=riscix ;; | |
241 | arm-*-aout | armel-*-aout) targ_emul=armaoutl ;; | |
242 | armeb-*-aout) targ_emul=armaoutb ;; | |
243 | arm-*-coff) targ_emul=armcoff ;; | |
13dfd2d0 NC |
244 | arm-*-freebsd* | arm-*-kfreebsd*-gnu) |
245 | targ_emul=armelf_fbsd | |
ac3e50bf | 246 | targ_extra_emuls="armelf" ;; |
658f2588 JT |
247 | armeb-*-netbsdelf*) targ_emul=armelfb_nbsd; |
248 | targ_extra_emuls="armelf_nbsd armelf armnbsd" ;; | |
3695c299 | 249 | arm-*-netbsdelf*) targ_emul=armelf_nbsd; |
658f2588 | 250 | targ_extra_emuls="armelfb_nbsd armelf armnbsd" ;; |
3695c299 | 251 | arm-*-netbsd*) targ_emul=armnbsd; |
658f2588 | 252 | targ_extra_emuls="armelf armelf_nbsd armelfb_nbsd" ;; |
ed71e111 | 253 | arm-*-nto*) targ_emul=armnto ;; |
056a1d49 | 254 | arm-*-openbsd*) targ_emul=armnbsd ;; |
24f6971a | 255 | arm-*-rtems*) targ_emul=armelf ;; |
d2012d17 | 256 | armeb-*-elf) targ_emul=armelfb ;; |
325fab4e NC |
257 | arm-*-elf | arm-*-vxworks) |
258 | targ_emul=armelf ;; | |
42b5d0ea | 259 | arm-*-kaos*) targ_emul=armelf ;; |
45cf6f3e | 260 | arm9e-*-elf) targ_emul=armelf ;; |
5fa803d3 | 261 | arm-*-oabi) targ_emul=armelf_oabi ;; |
d2012d17 | 262 | arm*b-*-linux-gnu*) targ_emul=armelfb_linux; targ_extra_emuls=armelfb ;; |
69f03d65 | 263 | arm*-*-linux-gnu*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; |
5fa803d3 | 264 | arm*-*-uclinux*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; |
0decc840 | 265 | arm*-*-conix*) targ_emul=armelf ;; |
5fa803d3 | 266 | thumb-*-linux-gnu* | thumb-*-uclinux*) targ_emul=armelf_linux; targ_extra_emuls=armelf ;; |
252b5132 RH |
267 | strongarm-*-coff) targ_emul=armcoff ;; |
268 | strongarm-*-elf) targ_emul=armelf ;; | |
42b5d0ea | 269 | strongarm-*-kaos*) targ_emul=armelf ;; |
252b5132 RH |
270 | thumb-*-coff) targ_emul=armcoff ;; |
271 | thumb-*-elf) targ_emul=armelf ;; | |
272 | thumb-*-oabi) targ_emul=armelf_oabi ;; | |
273 | thumb-epoc-pe) targ_emul=arm_epoc_pe ; | |
274 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
275 | thumb-*-pe) targ_emul=armpe ; | |
276 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
077b8428 NC |
277 | xscale-*-coff) targ_emul=armcoff ;; |
278 | xscale-*-elf) targ_emul=armelf ;; | |
0b3a6a28 | 279 | h8300-*-hms* | h8300-*-coff* | h8300-*-rtems*) |
f4984206 | 280 | targ_emul=h8300; targ_extra_emuls="h8300h h8300s h8300hn h8300sn h8300sx h8300sxn" |
252b5132 | 281 | ;; |
8af6dd41 JR |
282 | h8300-*-elf*) |
283 | targ_emul=h8300elf; | |
f4984206 | 284 | targ_extra_emuls="h8300helf h8300self h8300hnelf h8300snelf h8300sxelf h8300sxnelf" |
8af6dd41 | 285 | ;; |
0b3a6a28 | 286 | h8500-*-hms* | h8500-*-coff* | h8500-*-rtems*) |
252b5132 RH |
287 | targ_emul=h8500 |
288 | targ_extra_emuls="h8500s h8500b h8500m h8500c" | |
289 | ;; | |
4a428502 | 290 | sh-*-linux*) |
3a9091c4 NC |
291 | targ_emul=shlelf_linux |
292 | targ_extra_emuls=shelf_linux | |
7649aa50 NC |
293 | targ_extra_libpath=shelf_linux |
294 | ;; | |
a2b3c630 SC |
295 | sh64eb-*-linux*) targ_emul=shelf32_linux |
296 | targ_extra_emuls="shlelf32_linux" | |
297 | ;; | |
298 | sh64-*-linux*) targ_emul=shlelf32_linux | |
299 | targ_extra_emuls="shelf32_linux" | |
300 | targ_extra_libpath=shelf32_linux | |
301 | ;; | |
7649aa50 NC |
302 | sh*eb-*-linux*) |
303 | targ_emul=shelf_linux | |
304 | ;; | |
305 | sh*-*-linux*) | |
306 | targ_emul=shlelf_linux | |
4a428502 | 307 | ;; |
5b0e55b6 JT |
308 | sh5le-*-netbsd*) |
309 | targ_emul=shlelf32_nbsd | |
310 | targ_extra_emuls="shelf32_nbsd shelf64_nbsd shlelf64_nbsd shelf_nbsd shlelf_nbsd" | |
311 | ;; | |
312 | sh5-*-netbsd*) | |
313 | targ_emul=shelf32_nbsd | |
314 | targ_extra_emuls="shlelf32_nbsd shelf64_nbsd shlelf64_nbsd shelf_nbsd shlelf_nbsd" | |
315 | ;; | |
316 | sh64le-*-netbsd*) | |
317 | targ_emul=shlelf64_nbsd | |
318 | targ_extra_emuls="shelf64_nbsd shelf32_nbsd shlelf32_nbsd shelf_nbsd shlelf_nbsd" | |
319 | ;; | |
320 | sh64-*-netbsd*) | |
321 | targ_emul=shelf64_nbsd | |
322 | targ_extra_emuls="shlelf64_nbsd shelf32_nbsd shlelf32_nbsd shelf_nbsd shlelf_nbsd" | |
323 | ;; | |
cea3d58d | 324 | sh*l*-*-netbsdelf*) |
8d05742f JT |
325 | targ_emul=shlelf_nbsd |
326 | targ_extra_emuls=shelf_nbsd | |
327 | ;; | |
328 | sh*-*-netbsdelf*) | |
329 | targ_emul=shelf_nbsd | |
330 | targ_extra_emuls=shlelf_nbsd | |
331 | ;; | |
42b5d0ea | 332 | shle*-*-elf* | sh[1234]*le*-*-elf | shle*-*-kaos*) |
7a33bc10 JR |
333 | targ_emul=shlelf |
334 | targ_extra_emuls="shelf shl sh" | |
335 | ;; | |
9183ed4b AM |
336 | sh-*-rtemscoff*) targ_emul=sh; targ_extra_emuls=shl ;; |
337 | sh-*-elf* | sh[1234]*-*-elf | sh-*-rtems* | sh-*-kaos* | sh-*-vxworks) | |
de24ad21 | 338 | targ_emul=shelf |
252b5132 RH |
339 | targ_extra_emuls="shlelf sh shl" |
340 | ;; | |
ed71e111 NC |
341 | sh-*-nto*) targ_emul=shelf_nto |
342 | targ_extra_emuls=shlelf_nto | |
343 | ;; | |
344a211f NC |
344 | sh-*-pe) targ_emul=shpe ; |
345 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
9183ed4b | 346 | sh-*-*) targ_emul=sh; targ_extra_emuls=shl ;; |
7a33bc10 JR |
347 | sh64le-*-elf*) |
348 | targ_emul=shlelf | |
349 | targ_extra_emuls="shelf shlelf32 shelf32 shlelf64 shelf64" | |
350 | targ_extra_libpath=$targ_extra_emuls | |
351 | ;; | |
2d92cb7d AO |
352 | sh64-*-elf*) |
353 | targ_emul=shelf | |
354 | targ_extra_emuls="shlelf shelf32 shlelf32 shelf64 shlelf64" | |
355 | targ_extra_libpath=$targ_extra_emuls | |
356 | ;; | |
252b5132 RH |
357 | m68k-sony-*) targ_emul=news ;; |
358 | m68k-hp-bsd*) targ_emul=hp300bsd ;; | |
359 | m68*-motorola-sysv*) targ_emul=delta68 ;; | |
360 | m68*-*-aout) targ_emul=m68kaout ;; | |
361 | m68*-*-coff) targ_emul=m68kcoff ;; | |
362 | m68*-*-elf) targ_emul=m68kelf ;; | |
363 | m68*-*-hpux*) targ_emul=hp3hpux ;; | |
364 | m68k-*-linux*aout*) targ_emul=m68klinux | |
365 | targ_extra_emuls=m68kelf | |
366 | tdir_m68kelf=`echo ${targ_alias} | sed -e 's/aout//'` | |
367 | ;; | |
368 | m68k-*-linux-gnu*) targ_emul=m68kelf | |
369 | targ_extra_emuls=m68klinux | |
370 | tdir_m68klinux=`echo ${targ_alias} | sed -e 's/linux/linuxaout/'` | |
371 | ;; | |
b50c15dc | 372 | m68k-*-uclinux*) targ_emul=m68kelf ;; |
252b5132 RH |
373 | m68*-*-gnu*) targ_emul=m68kelf ;; |
374 | m68*-*-lynxos*) targ_emul=m68klynx ;; | |
0b69cd08 MG |
375 | m68*-*-netbsd*4k*) targ_emul=m68k4knbsd |
376 | targ_extra_emuls="m68knbsd m68kelfnbsd" ;; | |
377 | m68*-*-netbsdelf*) targ_emul=m68kelfnbsd | |
378 | targ_extra_emuls="m68knbsd m68k4knbsd" ;; | |
379 | m68*-*-netbsdaout* | m68*-*-netbsd*) | |
380 | targ_emul=m68knbsd | |
381 | targ_extra_emuls="m68kelfnbsd m68k4knbsd" ;; | |
252b5132 | 382 | m68*-*-psos*) targ_emul=m68kpsos ;; |
d43ded80 PB |
383 | m68*-*-rtemscoff*) targ_emul=m68kcoff ;; |
384 | m68*-*-rtems*) targ_emul=m68kelf ;; | |
9f22353f | 385 | hppa*64*-*-linux-gnu*) targ_emul=hppa64linux ;; |
0b76fe77 | 386 | hppa*64*-*) targ_emul=elf64hppa ;; |
4900fc06 | 387 | hppa*-*-linux-gnu*) targ_emul=hppalinux ;; |
252b5132 RH |
388 | hppa*-*-*elf*) targ_emul=hppaelf ;; |
389 | hppa*-*-lites*) targ_emul=hppaelf ;; | |
006336b8 | 390 | hppa*-*-netbsd*) targ_emul=hppanbsd ;; |
c29ef4b5 | 391 | hppa*-*-openbsd*) targ_emul=hppaobsd ;; |
252b5132 RH |
392 | hppa*-*-rtems*) targ_emul=hppaelf ;; |
393 | vax-dec-ultrix* | vax-dec-bsd*) targ_emul=vax ;; | |
ab68f3e0 JT |
394 | vax-*-netbsdelf*) targ_emul=elf32vax |
395 | targ_extra_emuls=vaxnbsd ;; | |
396 | vax-*-netbsdaout* | vax-*-netbsd*) | |
397 | targ_emul=vaxnbsd | |
398 | targ_extra_emuls=elf32vax ;; | |
f8fc3443 | 399 | vax-*-linux-gnu*) targ_emul=elf32vax ;; |
344a211f NC |
400 | mips*-*-pe) targ_emul=mipspe ; |
401 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
252b5132 RH |
402 | mips*-dec-ultrix*) targ_emul=mipslit ;; |
403 | mips*-dec-osf*) targ_emul=mipslit ;; | |
dc831978 MM |
404 | mips*-sgi-irix5*) targ_emul=elf32bsmip ;; |
405 | mips*-sgi-irix6*) targ_emul=elf32bmipn32 | |
22c675a7 | 406 | targ_extra_emuls="elf32bsmip elf64bmip" |
728fa2f6 | 407 | targ_extra_libpath=$targ_extra_emuls |
dc831978 | 408 | ;; |
252b5132 RH |
409 | mips*-sgi-irix*) targ_emul=mipsbig ;; |
410 | mips*el-*-ecoff*) targ_emul=mipsidtl ;; | |
411 | mips*-*-ecoff*) targ_emul=mipsidt ;; | |
cf86e6df | 412 | mips*el-*-netbsd*) targ_emul=elf32lmip |
9fb9af6e CD |
413 | targ_extra_emuls="elf32bmip" |
414 | ;; | |
415 | mips*-*-netbsd*) targ_emul=elf32bmip | |
416 | targ_extra_emuls="elf32lmip" | |
417 | ;; | |
252b5132 RH |
418 | mips*-*-bsd*) targ_emul=mipsbig ;; |
419 | mips*vr4300el-*-elf*) targ_emul=elf32l4300 ;; | |
420 | mips*vr4300-*-elf*) targ_emul=elf32b4300 ;; | |
421 | mips*vr4100el-*-elf*) targ_emul=elf32l4300 ;; | |
422 | mips*vr4100-*-elf*) targ_emul=elf32b4300 ;; | |
423 | mips*vr5000el-*-elf*) targ_emul=elf32l4300 ;; | |
424 | mips*vr5000-*-elf*) targ_emul=elf32b4300 ;; | |
425 | mips*el-*-elf*) targ_emul=elf32elmip ;; | |
426 | mips*-*-elf*) targ_emul=elf32ebmip ;; | |
de24ad21 | 427 | mips*el-*-rtems*) targ_emul=elf32elmip ;; |
252b5132 | 428 | mips*-*-rtems*) targ_emul=elf32ebmip ;; |
41d390a7 | 429 | mips*el-*-vxworks*) targ_emul=elf32elmip ;; |
325fab4e NC |
430 | mips*-*-vxworks*) targ_emul=elf32ebmip |
431 | targ_extra_emuls="elf32elmip" ;; | |
432 | mips*-*-windiss) targ_emul=elf32mipswindiss ;; | |
7808a785 TS |
433 | mips64*el-*-linux-gnu*) targ_emul=elf32ltsmipn32 |
434 | targ_extra_emuls="elf32btsmipn32 elf32ltsmip elf32btsmip elf64ltsmip elf64btsmip" | |
435 | ;; | |
436 | mips64*-*-linux-gnu*) targ_emul=elf32btsmipn32 | |
437 | targ_extra_emuls="elf32ltsmipn32 elf32btsmip elf32ltsmip elf64btsmip elf64ltsmip" | |
438 | ;; | |
fdec3cfc | 439 | mips*el-*-linux-gnu*) targ_emul=elf32ltsmip |
e9229007 | 440 | targ_extra_emuls="elf32btsmip elf32ltsmipn32 elf64ltsmip elf32btsmipn32 elf64btsmip" |
252b5132 | 441 | ;; |
fdec3cfc | 442 | mips*-*-linux-gnu*) targ_emul=elf32btsmip |
e9229007 | 443 | targ_extra_emuls="elf32ltsmip elf32btsmipn32 elf64btsmip elf32ltsmipn32 elf64ltsmip" |
252b5132 RH |
444 | ;; |
445 | mips*-*-lnews*) targ_emul=mipslnews ;; | |
3548145d | 446 | mips*-*-sysv4*) targ_emul=elf32btsmip ;; |
3c3bdf30 NC |
447 | mmix-*-*) targ_emul=mmo |
448 | targ_extra_emuls=elf64mmix | |
449 | ;; | |
252b5132 RH |
450 | mn10200-*-*) targ_emul=mn10200 ;; |
451 | mn10300-*-*) targ_emul=mn10300 ;; | |
3b260895 NC |
452 | msp430-*-*) targ_emul=msp430x110 |
453 | targ_extra_emuls="msp430x112 msp430x1101 msp430x1111 msp430x1121 msp430x1122 msp430x1132 msp430x122 msp430x123 msp430x1222 msp430x1232 msp430x133 msp430x135 msp430x1331 msp430x1351 msp430x147 msp430x148 msp430x149 msp430x155 msp430x156 msp430x157 msp430x167 msp430x168 msp430x169 msp430x311 msp430x312 msp430x313 msp430x314 msp430x315 msp430x323 msp430x325 msp430x336 msp430x337 msp430x412 msp430x413 msp430xE423 msp430xE425 msp430xE427 msp430xW423 msp430xW425 msp430xW427 msp430x435 msp430x436 msp430x437 msp430x447 msp430x448 msp430x449" ;; | |
13dfd2d0 NC |
454 | alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu) |
455 | targ_emul=elf64alpha_fbsd | |
ac3e50bf | 456 | targ_extra_emuls="elf64alpha alpha" |
fb33b906 DB |
457 | tdir_alpha=`echo ${targ_alias} | sed -e 's/freebsd/freebsdecoff/'` |
458 | ;; | |
252b5132 RH |
459 | alpha*-*-linuxecoff*) targ_emul=alpha targ_extra_emuls=elf64alpha |
460 | tdir_elf64alpha=`echo ${targ_alias} | sed -e 's/ecoff//'` | |
461 | ;; | |
462 | alpha*-*-linux-gnu*) targ_emul=elf64alpha targ_extra_emuls=alpha | |
463 | tdir_alpha=`echo ${targ_alias} | sed -e 's/linux/linuxecoff/'` | |
464 | ;; | |
465 | alpha*-*-osf*) targ_emul=alpha ;; | |
466 | alpha*-*-gnu*) targ_emul=elf64alpha ;; | |
467 | alpha*-*-netware*) targ_emul=alpha ;; | |
fc18a3f3 | 468 | alpha*-*-netbsd*) targ_emul=elf64alpha_nbsd ;; |
c29ef4b5 | 469 | alpha*-*-openbsd*) targ_emul=elf64alpha ;; |
252b5132 RH |
470 | z8k-*-coff) targ_emul=z8002; targ_extra_emuls=z8001 ;; |
471 | ns32k-pc532-mach* | ns32k-pc532-ux*) targ_emul=pc532macha ;; | |
aa501e5c | 472 | ns32k-*-netbsd* | ns32k-pc532-lites*) targ_emul=ns32knbsd ;; |
c7e40348 | 473 | openrisc-*-*) targ_emul=elf32openrisc ;; |
3b16e843 NC |
474 | or32-*-coff) targ_emul=or32 ;; |
475 | or32-*-elf) targ_emul=or32elf ;; | |
4b363073 | 476 | or32-*-rtems*) targ_emul=or32elf ;; |
5c67d4bb AM |
477 | pdp11-*-*) targ_emul=pdp11 ;; |
478 | pjl*-*-*) targ_emul=pjlelf ; targ_extra_emuls="elf_i386" ;; | |
479 | pj*-*-*) targ_emul=pjelf ;; | |
13dfd2d0 NC |
480 | powerpc-*-freebsd* | powerpc-*-kfreebsd*-gnu) |
481 | targ_emul=elf32ppc_fbsd; | |
ac3e50bf | 482 | targ_extra_emuls="elf32ppc elf32ppcsim"; |
fb33b906 DB |
483 | targ_extra_libpath=elf32ppc; |
484 | tdir_elf32ppcsim=`echo ${targ_alias} | sed -e 's/ppc/ppcsim/'` | |
485 | ;; | |
5c67d4bb AM |
486 | powerpc*-*-linux*) |
487 | case "${targ}" in | |
488 | *64*) targ_emul=elf64ppc | |
eb3d6bb8 | 489 | targ_extra_emuls="elf32ppclinux elf32ppc elf32ppcsim" |
276e5094 | 490 | targ_extra_libpath="elf32ppclinux elf32ppc" |
eb3d6bb8 AM |
491 | tdir_elf32ppc=`echo "${targ_alias}" | sed -e 's/64//'` |
492 | tdir_elf32ppclinux=$tdir_elf32ppc | |
493 | tdir_elf32ppcsim=$tdir_elf32ppc ;; | |
5c67d4bb AM |
494 | *) targ_emul=elf32ppclinux |
495 | targ_extra_emuls="elf32ppc elf32ppcsim" | |
ebc6e014 L |
496 | targ_extra_libpath=elf32ppc |
497 | if test "${want64}" = "true"; then | |
498 | targ_extra_emuls="$targ_extra_emuls elf64ppc" | |
276e5094 | 499 | targ_extra_libpath="$targ_extra_libpath elf64ppc" |
ebc6e014 L |
500 | fi |
501 | ;; | |
5c67d4bb AM |
502 | esac ;; |
503 | powerpc*le-*-elf* | powerpc*le-*-eabi* | powerpc*le-*-solaris* \ | |
504 | | powerpc*le-*-sysv* | powerpc*le-*-vxworks*) | |
505 | case "${targ}" in | |
506 | *64*) targ_emul=elf64lppc | |
eb3d6bb8 AM |
507 | targ_extra_emuls="elf32lppc elf32lppcsim" |
508 | tdir_elf32lppc=`echo "${targ_alias}" | sed -e 's/64//'` | |
509 | tdir_elf32lppcsim=$tdir_elf32lppc ;; | |
5c67d4bb AM |
510 | *) targ_emul=elf32lppc |
511 | targ_extra_emuls="elf32ppcsim" ;; | |
512 | esac ;; | |
513 | powerpc*-*-elf* | powerpc*-*-eabi* | powerpc*-*-sysv* \ | |
42b5d0ea | 514 | | powerpc*-*-netbsd* | powerpc-*-openbsd* | powerpc*-*-vxworks* | powerpc*-*-kaos*) |
5c67d4bb AM |
515 | case "${targ}" in |
516 | *64*) targ_emul=elf64ppc | |
eb3d6bb8 AM |
517 | targ_extra_emuls="elf32ppc elf32ppclinux elf32ppcsim" |
518 | tdir_elf32ppc=`echo "${targ_alias}" | sed -e 's/64//'` | |
519 | tdir_elf32ppclinux=$tdir_elf32ppc | |
520 | tdir_elf32ppcsim=$tdir_elf32ppc ;; | |
5c67d4bb AM |
521 | *) targ_emul=elf32ppc |
522 | targ_extra_emuls="elf32ppclinux elf32ppcsim" ;; | |
523 | esac ;; | |
59bc061d NC |
524 | powerpc-*-nto*) targ_emul=elf32ppcnto ;; |
525 | powerpcle-*-nto*) targ_emul=elf32lppcnto ;; | |
de24ad21 | 526 | powerpcle-*-rtems*) targ_emul=elf32leppc ;; |
252b5132 RH |
527 | powerpc-*-rtems*) targ_emul=elf32ppc ;; |
528 | powerpc-*-macos*) targ_emul=ppcmacos ;; | |
529 | powerpc-*-netware*) targ_emul=ppcnw ;; | |
530 | powerpcle-*-pe) targ_emul=ppcpe ;; | |
531 | powerpcle-*-winnt*) targ_emul=ppcpe ;; | |
3b1b01cf | 532 | powerpcle-*-cygwin*) targ_emul=ppcpe ;; |
eb1e0e80 | 533 | powerpc-*-aix5*) targ_emul=aix5ppc ;; |
742aeb63 | 534 | powerpc-*-aix*) targ_emul=aixppc ;; |
252b5132 | 535 | powerpc-*-beos*) targ_emul=aixppc ;; |
94349e12 | 536 | powerpc-*-windiss*) targ_emul=elf32ppcwindiss ;; |
b2d65c0b | 537 | powerpc-*-lynxos*) targ_emul=ppclynx ;; |
eb1e0e80 | 538 | rs6000-*-aix5*) targ_emul=aix5rs6 ;; |
252b5132 RH |
539 | rs6000-*-aix*) targ_emul=aixrs6 ;; |
540 | tic30-*-*aout*) targ_emul=tic30aout ;; | |
9f863369 SS |
541 | tic30-*-*coff*) targ_emul=tic30coff ;; |
542 | tic4x-*-* | c4x-*-*) targ_emul=tic4xcoff ; targ_extra_emuls="tic3xcoff tic3xcoff_onchip" ;; | |
74459f0e | 543 | tic54x-*-* | c54x*-*-*) targ_emul=tic54xcoff ;; |
252b5132 RH |
544 | tic80-*-*) targ_emul=tic80coff ;; |
545 | v850-*-*) targ_emul=v850 ;; | |
546 | v850e-*-*) targ_emul=v850 ;; | |
547 | v850ea-*-*) targ_emul=v850 ;; | |
e09a7106 | 548 | iq2000-*-elf) targ_emul=elf32iq2000 ; targ_extra_emuls="elf32iq10" ;; |
005e1118 AO |
549 | frv-*-*linux*) targ_emul=elf32frvfd ;; |
550 | frv-*-*) targ_emul=elf32frv ; targ_extra_emuls="elf32frvfd" ;; | |
252b5132 | 551 | w65-*-*) targ_emul=w65 ;; |
93fbbb04 | 552 | xstormy16-*-*) targ_emul=elf32xstormy16 ;; |
e0001a05 | 553 | xtensa-*-*) targ_emul=elf32xtensa;; |
252b5132 | 554 | fr30-*-*) targ_emul=elf32fr30 ;; |
71acc4e8 NC |
555 | mcore-*-pe) targ_emul=mcorepe ; |
556 | targ_extra_ofiles="deffilep.o pe-dll.o" ;; | |
557 | mcore-*-elf) targ_emul=elf32mcore ;; | |
f52d1d64 JJ |
558 | s390x-*-linux*) targ_emul=elf64_s390 |
559 | targ_extra_emuls=elf_s390 | |
560 | targ_extra_libpath=$targ_extra_emuls | |
561 | tdir_elf_s390=`echo ${targ_alias} | sed -e 's/s390x/s390/'` ;; | |
562 | s390-*-linux*) targ_emul=elf_s390 | |
563 | if test "${want64}" = "true"; then | |
564 | targ_extra_emuls=elf64_s390 | |
565 | targ_extra_libpath=$targ_extra_emuls | |
566 | tdir_elf64_s390=`echo ${targ_alias} | sed -e 's/s390/s390x/'` | |
567 | fi ;; | |
252b5132 | 568 | *-*-ieee*) targ_emul=vanilla ;; |
cf88bb9f | 569 | ip2k-*-elf) targ_emul=elf32ip2k ;; |
252b5132 RH |
570 | |
571 | *) | |
572 | echo 2>&1 "*** ld does not support target ${targ}" | |
573 | echo 2>&1 "*** see ld/configure.tgt for supported targets" | |
574 | exit 1 | |
575 | ||
576 | esac | |
9c8ebd6a DJ |
577 | |
578 | NATIVE_LIB_DIRS='/usr/local/lib /lib /usr/lib' | |
579 | case "${target}" in | |
580 | ||
581 | *-*-freebsd*) | |
582 | NATIVE_LIB_DIRS='/lib /usr/lib /usr/local/lib' | |
583 | ;; | |
584 | ||
585 | hppa*64*-*-hpux11*) | |
586 | NATIVE_LIB_DIRS=/usr/lib/pa20_64 | |
587 | ;; | |
588 | ||
80c7c40a | 589 | i[3-7]86-*-sysv4*) |
9c8ebd6a DJ |
590 | NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib' |
591 | ;; | |
592 | ||
80c7c40a | 593 | i[3-7]86-*-solaris*) |
9c8ebd6a DJ |
594 | NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib' |
595 | ;; | |
596 | ||
80c7c40a | 597 | i[3-7]86-pc-interix*) |
9c8ebd6a DJ |
598 | NATIVE_LIB_DIRS='/usr/local/lib $$INTERIX_ROOT/usr/lib /lib /usr/lib' |
599 | ;; | |
600 | ||
601 | ia64-*-aix*) | |
602 | NATIVE_LIB_DIRS='/usr/local/lib /usr/lib/ia64l64 /lib /usr/lib' | |
603 | ;; | |
604 | ||
605 | sparc*-*-solaris2*) | |
606 | NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib' | |
607 | ;; | |
608 | ||
d55b850c CF |
609 | i[03-9x]86-*-cygwin*) |
610 | NATIVE_LIB_DIRS='/usr/lib /usr/lib/w32api' | |
611 | ;; | |
612 | ||
9c8ebd6a DJ |
613 | *-*-linux*) |
614 | ;; | |
615 | ||
616 | *-*-freebsd*) | |
617 | ;; | |
618 | ||
619 | *-*-netbsd*) | |
620 | ;; | |
621 | ||
622 | alpha*-*-*) | |
623 | NATIVE_LIB_DIRS='/usr/local/lib /usr/ccs/lib /lib /usr/lib' | |
624 | ;; | |
625 | ||
626 | esac |