Native debug arm program by aarch64 GDB
[external/binutils.git] / gdb / configure.tgt
1 # Mappings from configurations to GDB target definitions.  This is
2 # invoked from the autoconf generated configure script.
3
4 # This file sets the following shell variables:
5 #  gdb_target_obs       target-specific object files to use
6 #  gdb_sim              simulator library for target
7 #  gdb_osabi            default OS ABI to use with target
8 #  build_gdbserver      set to "yes" if gdbserver supports target
9 #  gdb_have_gcore       set to "true"/"false" if this target can run gcore
10
11 # NOTE: Every file added to a gdb_target_obs variable for any target here
12 #       must also be added to either ALL_TARGET_OBS or ALL_64_TARGET_OBS
13 #       in Makefile.in!
14
15 case $targ in
16  *-*-irix* | \
17  alpha*-*-osf* | \
18  d10v-*-* | \
19  hppa*-*-hiux* | \
20  i[34567]86-ncr-* | \
21  m68*-cisco*-* | \
22  m68*-tandem-* | \
23  m68*-*-os68k* | \
24  mips*-*-pe | \
25  rs6000-*-lynxos* | \
26  sh*-*-pe | \
27  hppa*-*-hpux* | \
28  ia64-*-hpux* | \
29  null)
30     echo "*** Configuration $targ is obsolete." >&2
31     echo "*** Support has been REMOVED." >&2
32     exit 1
33     ;;
34 esac
35
36 # map target info into gdb names.
37
38 case "${targ}" in
39 aarch64*-*-elf)
40         # Target: AArch64 embedded system
41         gdb_target_obs="aarch64-tdep.o aarch64-newlib-tdep.o"
42         ;;
43
44 aarch64*-*-linux*)
45         # Target: AArch64 linux
46         gdb_target_obs="aarch64-tdep.o aarch64-linux-tdep.o \
47                         arm-tdep.o arm-linux-tdep.o \
48                         glibc-tdep.o linux-tdep.o solib-svr4.o \
49                         symfile-mem.o linux-record.o"
50         build_gdbserver=yes
51         ;;
52
53 alpha*-*-linux*)
54         # Target: Little-endian Alpha running Linux
55         gdb_target_obs="alpha-tdep.o alpha-mdebug-tdep.o alpha-linux-tdep.o \
56                         linux-tdep.o solib-svr4.o"
57         ;;
58 alpha*-*-freebsd* | alpha*-*-kfreebsd*-gnu)
59         # Target: FreeBSD/alpha
60         gdb_target_obs="alpha-tdep.o alpha-mdebug-tdep.o alphabsd-tdep.o \
61                         alphafbsd-tdep.o solib-svr4.o"
62         ;;
63 alpha*-*-netbsd* | alpha*-*-knetbsd*-gnu)
64         # Target: NetBSD/alpha
65         gdb_target_obs="alpha-tdep.o alpha-mdebug-tdep.o alphabsd-tdep.o \
66                         alphanbsd-tdep.o nbsd-tdep.o solib-svr4.o"
67         ;;
68 alpha*-*-openbsd*)
69         # Target: OpenBSD/alpha
70         gdb_target_obs="alpha-tdep.o alpha-mdebug-tdep.o alphabsd-tdep.o \
71                         alphanbsd-tdep.o alphaobsd-tdep.o nbsd-tdep.o \
72                         obsd-tdep.o solib-svr4.o"
73         ;;
74 alpha*-*-*)
75         # Target: Alpha
76         gdb_target_obs="alpha-tdep.o"
77         ;;
78
79 am33_2.0*-*-linux*)
80         # Target: Matsushita mn10300 (AM33) running Linux
81         gdb_target_obs="mn10300-tdep.o mn10300-linux-tdep.o linux-tdep.o \
82                         solib-svr4.o"
83         ;;
84
85 arm*-wince-pe | arm*-*-mingw32ce*)
86         # Target: ARM based machine running Windows CE (win32)
87         gdb_target_obs="arm-tdep.o arm-wince-tdep.o windows-tdep.o"
88         build_gdbserver=yes
89         ;;
90 arm*-*-linux*)
91         # Target: ARM based machine running GNU/Linux
92         gdb_target_obs="arm-tdep.o arm-linux-tdep.o glibc-tdep.o \
93                         solib-svr4.o symfile-mem.o linux-tdep.o linux-record.o"
94         build_gdbserver=yes
95         ;;
96 arm*-*-netbsd* | arm*-*-knetbsd*-gnu)
97         # Target: NetBSD/arm
98         gdb_target_obs="arm-tdep.o armnbsd-tdep.o solib-svr4.o"
99         ;;
100 arm*-*-openbsd*)
101         # Target: OpenBSD/arm
102         gdb_target_obs="arm-tdep.o armbsd-tdep.o armobsd-tdep.o obsd-tdep.o \
103                         solib-svr4.o"
104         ;;
105 arm*-*-symbianelf*)
106         # Target: SymbianOS/arm
107         gdb_target_obs="arm-tdep.o arm-symbian-tdep.o"
108         ;;
109 arm*-*-*)
110         # Target: ARM embedded system
111         gdb_target_obs="arm-tdep.o"
112         gdb_sim=../sim/arm/libsim.a
113         ;;
114
115 avr-*-*)
116         # Target: AVR
117         gdb_target_obs="avr-tdep.o"
118         gdb_sim=../sim/avr/libsim.a
119         ;;
120
121 bfin-*-*linux*)
122         # Target: Blackfin Linux
123         gdb_target_obs="bfin-tdep.o bfin-linux-tdep.o linux-tdep.o"
124         gdb_sim=../sim/bfin/libsim.a
125         build_gdbserver=yes
126         ;;
127 bfin-*-*)
128         # Target: Blackfin processor
129         gdb_target_obs="bfin-tdep.o"
130         gdb_sim=../sim/bfin/libsim.a
131         ;;
132
133 cris*)
134         # Target: CRIS
135         gdb_target_obs="cris-tdep.o cris-linux-tdep.o linux-tdep.o solib-svr4.o"
136         ;;
137
138 frv-*-*)
139         # Target: Fujitsu FRV processor
140         gdb_target_obs="frv-tdep.o frv-linux-tdep.o linux-tdep.o solib-frv.o"
141         gdb_sim=../sim/frv/libsim.a
142         ;;
143
144 moxie-*-elf | moxie-*-moxiebox | moxie-*-rtems*)
145         gdb_target_obs="moxie-tdep.o"
146         gdb_sim=../sim/moxie/libsim.a
147         ;;
148
149 h8300-*-*)
150         # Target: H8300 with HMS monitor and H8 simulator
151         gdb_target_obs="h8300-tdep.o monitor.o dsrec.o"
152         gdb_sim=../sim/h8300/libsim.a
153         ;;
154
155 hppa*-*-linux*)
156         # Target: HP PA-RISC running Linux
157         gdb_target_obs="hppa-tdep.o hppa-linux-tdep.o glibc-tdep.o \
158                         linux-tdep.o solib-svr4.o symfile-mem.o"
159         ;;
160 hppa*-*-netbsd*)
161         # Target: NetBSD/hppa
162         gdb_target_obs="hppa-tdep.o hppabsd-tdep.o hppanbsd-tdep.o solib-svr4.o"
163         ;;
164 hppa*-*-openbsd*)
165         # Target: OpenBSD/hppa
166         gdb_target_obs="hppa-tdep.o hppabsd-tdep.o hppaobsd-tdep.o solib-svr4.o"
167         ;;
168 hppa*-*-*)
169         # Target: HP PA-RISC
170         gdb_target_obs="hppa-tdep.o"
171         ;;
172
173 i[34567]86-*-darwin*)
174         # Target: Darwin/i386
175         gdb_target_obs="i386-tdep.o i387-tdep.o \
176                         i386-darwin-tdep.o solib-darwin.o"
177         if test "x$enable_64_bit_bfd" = "xyes"; then
178             # Target: GNU/Linux x86-64
179             gdb_target_obs="amd64-tdep.o amd64-darwin-tdep.o ${gdb_target_obs}"
180         fi
181         ;;
182 i[34567]86-*-dicos*)
183         # Target: DICOS/i386
184         gdb_target_obs="i386-tdep.o i387-tdep.o dicos-tdep.o i386-dicos-tdep.o"
185         ;;
186 i[34567]86-*-freebsd* | i[34567]86-*-kfreebsd*-gnu)
187         # Target: FreeBSD/i386
188         gdb_target_obs="i386-tdep.o i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \
189                         bsd-uthread.o fbsd-tdep.o solib-svr4.o"
190         ;;
191 i[34567]86-*-netbsd* | i[34567]86-*-knetbsd*-gnu)
192         # Target: NetBSD/i386
193         gdb_target_obs="i386-tdep.o i387-tdep.o i386bsd-tdep.o i386nbsd-tdep.o \
194                         nbsd-tdep.o solib-svr4.o"
195         ;;
196 i[34567]86-*-openbsd*)
197         # Target: OpenBSD/i386
198         gdb_target_obs="i386-tdep.o i387-tdep.o i386bsd-tdep.o i386obsd-tdep.o \
199                         obsd-tdep.o bsd-uthread.o solib-svr4.o"
200         ;;
201 i[34567]86-*-nto*)
202         # Target: Intel 386 running qnx6.
203         gdb_target_obs="i386-tdep.o i387-tdep.o solib-svr4.o \
204                         i386-nto-tdep.o nto-tdep.o"
205         build_gdbserver=yes
206         ;;
207 i[34567]86-*-solaris2.1[0-9]* | x86_64-*-solaris2.1[0-9]*)
208         # Target: Solaris x86_64
209         gdb_target_obs="i386-tdep.o i387-tdep.o amd64-tdep.o amd64-sol2-tdep.o \
210                         i386-sol2-tdep.o sol2-tdep.o solib-svr4.o"
211         ;;
212 i[34567]86-*-solaris*)
213         # Target: Solaris x86
214         gdb_target_obs="i386-tdep.o i387-tdep.o i386-sol2-tdep.o sol2-tdep.o \
215                         solib-svr4.o"
216         ;;
217 i[34567]86-*-linux*)
218         # Target: Intel 386 running GNU/Linux
219         gdb_target_obs="i386-tdep.o i386-linux-tdep.o glibc-tdep.o i387-tdep.o \
220                         solib-svr4.o symfile-mem.o \
221                         linux-tdep.o linux-record.o"
222         if test "x$enable_64_bit_bfd" = "xyes"; then
223             # Target: GNU/Linux x86-64
224             gdb_target_obs="amd64-tdep.o amd64-linux-tdep.o ${gdb_target_obs}"
225         fi
226         build_gdbserver=yes
227         ;;
228 i[34567]86-*-gnu*)
229         # Target: Intel 386 running the GNU Hurd
230         gdb_target_obs="i386-tdep.o i387-tdep.o i386gnu-tdep.o solib-svr4.o"
231         ;;
232 i[34567]86-*-cygwin*)
233         # Target: Intel 386 running win32
234         gdb_target_obs="i386-tdep.o i386-cygwin-tdep.o i387-tdep.o \
235                         windows-tdep.o"
236         build_gdbserver=yes
237         ;;
238 i[34567]86-*-mingw32*)
239         # Target: Intel 386 running win32
240         gdb_target_obs="i386-tdep.o i386-cygwin-tdep.o i387-tdep.o \
241                         windows-tdep.o"
242         build_gdbserver=yes
243         ;;
244 i[34567]86-*-*)
245         # Target: i386
246         gdb_target_obs="i386-tdep.o i387-tdep.o"
247         ;;
248
249 ia64-*-linux*)
250         # Target: Intel IA-64 running GNU/Linux
251         gdb_target_obs="ia64-tdep.o ia64-linux-tdep.o linux-tdep.o \
252                         solib-svr4.o symfile-mem.o"
253         build_gdbserver=yes
254         ;;
255 ia64-*-*vms*)
256         # Target: Intel IA-64 running OpenVMS
257         gdb_target_obs="ia64-tdep.o ia64-vms-tdep.o"
258         ;;
259 ia64*-*-*)
260         # Target: Intel IA-64
261         gdb_target_obs="ia64-tdep.o"
262         ;;
263
264 iq2000-*-*)
265         gdb_target_obs="iq2000-tdep.o"
266         gdb_sim=../sim/iq2000/libsim.a
267         ;;
268
269 lm32-*-*)               
270         gdb_target_obs="lm32-tdep.o" 
271         gdb_sim=../sim/lm32/libsim.a
272         ;;
273
274 m32c-*-*)
275         # Target: Renesas M32C family
276         gdb_target_obs="m32c-tdep.o"
277         # There may also be a SID / CGEN simulator for this,
278         # but we do have DJ Delorie's mini-sim.
279         gdb_sim=../sim/m32c/libsim.a
280         ;;
281
282 m32r*-*-linux*)
283         # Target: Renesas M32R running GNU/Linux
284         gdb_target_obs="m32r-tdep.o m32r-linux-tdep.o remote-m32r-sdi.o \
285                         glibc-tdep.o solib-svr4.o symfile-mem.o \
286                         linux-tdep.o"
287         gdb_sim=../sim/m32r/libsim.a
288         build_gdbserver=yes
289         ;;
290 m32r*-*-*)
291         # Target: Renesas m32r processor
292         gdb_target_obs="m32r-tdep.o monitor.o m32r-rom.o dsrec.o \
293                         remote-m32r-sdi.o"
294         gdb_sim=../sim/m32r/libsim.a
295         ;;
296
297 m68hc11*-*-*|m6811*-*-*)
298         # Target: Motorola 68HC11 processor
299         gdb_target_obs="m68hc11-tdep.o"
300         gdb_sim=../sim/m68hc11/libsim.a
301         ;;
302
303 m68*-*-aout* | m68*-*-coff* | m68*-*-elf* | m68*-*-rtems* | m68*-*-uclinux* | \
304 fido-*-elf*)
305         # Target: Motorola m68k embedded (e.g. bug monitors)
306         gdb_target_obs="m68k-tdep.o monitor.o dbug-rom.o dsrec.o"
307         ;;
308 m68*-*-linux*)
309         # Target: Motorola m68k with a.out and ELF
310         gdb_target_obs="m68k-tdep.o m68klinux-tdep.o solib-svr4.o \
311                         linux-tdep.o glibc-tdep.o symfile-mem.o"
312         build_gdbserver=yes
313         ;;
314 m68*-*-netbsd* | m68*-*-knetbsd*-gnu)
315         # Target: NetBSD/m68k
316         gdb_target_obs="m68k-tdep.o m68kbsd-tdep.o solib-svr4.o"
317         ;;
318 m68*-*-openbsd*)
319         # Target: OpenBSD/m68k
320         gdb_target_obs="m68k-tdep.o m68kbsd-tdep.o solib-svr4.o"
321         ;;
322
323 m88*-*-openbsd*)
324         # Target: OpenBSD/m88k
325         gdb_target_obs="m88k-tdep.o"
326         ;;
327
328 mep-*-*)
329         # Target: Toshiba Media Processor (MEP)
330         gdb_target_obs="mep-tdep.o"
331         # No sim needed. Target uses SID.
332         ;;
333
334 microblaze*-linux-*|microblaze*-*-linux*)
335         # Target: Xilinx MicroBlaze running Linux
336         gdb_target_obs="microblaze-tdep.o microblaze-linux-tdep.o microblaze-rom.o \
337                         monitor.o dsrec.o solib-svr4.o symfile-mem.o linux-tdep.o"
338         gdb_sim=../sim/microblaze/libsim.a
339         ;;
340 microblaze*-*-*)
341         # Target: Xilinx MicroBlaze running standalone
342         gdb_target_obs="microblaze-tdep.o microblaze-rom.o monitor.o dsrec.o"
343         gdb_sim=../sim/microblaze/libsim.a
344         ;;
345
346 mips*-*-linux*)
347         # Target: Linux/MIPS
348         gdb_target_obs="mips-tdep.o mips-linux-tdep.o glibc-tdep.o \
349                         solib-svr4.o symfile-mem.o linux-tdep.o"
350         gdb_sim=../sim/mips/libsim.a
351         build_gdbserver=yes
352         ;;
353 mips*-*-netbsd* | mips*-*-knetbsd*-gnu)
354         # Target: MIPS running NetBSD
355         gdb_target_obs="mips-tdep.o mipsnbsd-tdep.o solib-svr4.o nbsd-tdep.o"
356         gdb_sim=../sim/mips/libsim.a
357         ;;
358 mips64*-*-openbsd*)
359         # Target: OpenBSD/mips64
360         gdb_target_obs="mips-tdep.o mips64obsd-tdep.o obsd-tdep.o solib-svr4.o"
361         ;;
362 mips*-sde*-elf*)
363         # Target: MIPS SDE
364         gdb_target_obs="mips-tdep.o mips-sde-tdep.o remote-mips.o"
365         gdb_sim=../sim/mips/libsim.a
366         ;;
367 mips*-*-elf)
368         # Target: MIPS ELF
369         gdb_target_obs="mips-tdep.o remote-mips.o"
370         gdb_sim=../sim/mips/libsim.a
371         ;;
372 mips*-*-*)
373         # Target: MIPS
374         gdb_target_obs="mips-tdep.o"
375         gdb_sim=../sim/mips/libsim.a
376         ;;
377
378 mn10300-*-*)
379         # Target: Matsushita mn10300
380         gdb_target_obs="mn10300-tdep.o"
381         gdb_sim=../sim/mn10300/libsim.a
382         ;;
383
384 msp430*-*-elf)
385         gdb_target_obs="msp430-tdep.o"
386         gdb_sim=../sim/msp430/libsim.a
387         ;;
388
389 mt-*-*)
390         # Target: Morpho Technologies ms1 processor
391         gdb_target_obs="mt-tdep.o"
392         ;;
393
394 nios2*-*-linux*)
395         # Target: Altera Nios II running Linux
396         gdb_target_obs="nios2-tdep.o nios2-linux-tdep.o solib-svr4.o \
397                         symfile-mem.o glibc-tdep.o linux-tdep.o"
398         ;;
399
400 nios2*-*-*)
401         # Target: Altera Nios II bare-metal
402         gdb_target_obs="nios2-tdep.o"
403         ;;
404
405 powerpc*-*-freebsd*)
406         # Target: FreeBSD/powerpc
407         gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o ppc64-tdep.o \
408                         ppcfbsd-tdep.o fbsd-tdep.o solib-svr4.o \
409                         ravenscar-thread.o ppc-ravenscar-thread.o"
410         ;;
411
412 powerpc-*-netbsd* | powerpc-*-knetbsd*-gnu)
413         # Target: NetBSD/powerpc
414         gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o ppcnbsd-tdep.o \
415                         solib-svr4.o \
416                         ravenscar-thread.o ppc-ravenscar-thread.o"
417         gdb_sim=../sim/ppc/libsim.a
418         ;;
419 powerpc-*-openbsd*)
420         # Target: OpenBSD/powerpc
421         gdb_target_obs="rs6000-tdep.o ppc-sysv-tdep.o ppcobsd-tdep.o \
422                         solib-svr4.o \
423                         ravenscar-thread.o ppc-ravenscar-thread.o"
424         ;;
425 powerpc-*-aix* | rs6000-*-* | powerpc64-*-aix*)
426         # Target: PowerPC running AIX
427         gdb_target_obs="rs6000-tdep.o rs6000-aix-tdep.o xcoffread.o \
428                         ppc-sysv-tdep.o solib-aix.o \
429                         ravenscar-thread.o ppc-ravenscar-thread.o"
430         ;;
431 powerpc*-*-linux*)
432         # Target: PowerPC running Linux
433         gdb_target_obs="rs6000-tdep.o ppc-linux-tdep.o ppc-sysv-tdep.o \
434                         ppc64-tdep.o solib-svr4.o solib-spu.o \
435                         spu-multiarch.o \
436                         glibc-tdep.o symfile-mem.o linux-tdep.o \
437                         ravenscar-thread.o ppc-ravenscar-thread.o \
438                         linux-record.o "
439         gdb_sim=../sim/ppc/libsim.a
440         build_gdbserver=yes
441         ;;
442 powerpc-*-lynx*178)
443         # Target: PowerPC running Lynx178.
444         gdb_target_obs="rs6000-tdep.o rs6000-lynx178-tdep.o \
445                         xcoffread.o monitor.o dsrec.o ppc-sysv-tdep.o \
446                         ravenscar-thread.o ppc-ravenscar-thread.o"
447         ;;
448 powerpc*-*-*)
449         # Target: PowerPC running eabi
450         gdb_target_obs="rs6000-tdep.o monitor.o dsrec.o ppcbug-rom.o \
451                         dink32-rom.o ppc-sysv-tdep.o solib-svr4.o \
452                         ravenscar-thread.o ppc-ravenscar-thread.o"
453         if test -f ../sim/ppc/Makefile; then
454           gdb_sim=../sim/ppc/libsim.a
455         fi
456         ;;
457
458 s390*-*-linux*)
459         # Target: S390 running Linux
460         gdb_target_obs="s390-linux-tdep.o solib-svr4.o linux-tdep.o"
461         build_gdbserver=yes
462         ;;
463
464 rl78-*-elf)
465         # Target: Renesas rl78
466         gdb_target_obs="rl78-tdep.o"
467         gdb_sim=../sim/rl78/libsim.a
468         ;;
469
470 rx-*-elf)
471         # Target: Renesas RX
472         gdb_target_obs="rx-tdep.o"
473         gdb_sim=../sim/rx/libsim.a
474         ;;
475
476 score-*-*)
477         # Target: S+core embedded system
478         gdb_target_obs="score-tdep.o"
479         if test -f ../sim/score/Makefile; then
480           gdb_sim=../sim/score/libsim.a
481         fi
482         build_gdbserver=yes
483         ;;
484
485 sh*-*-linux*)
486         # Target: GNU/Linux Super-H
487         gdb_target_obs="sh-tdep.o sh64-tdep.o sh-linux-tdep.o monitor.o \
488                         dsrec.o solib-svr4.o symfile-mem.o \
489                         glibc-tdep.o linux-tdep.o"
490         gdb_sim=../sim/sh/libsim.a
491         build_gdbserver=yes
492         ;;
493 sh*-*-netbsdelf* | sh*-*-knetbsd*-gnu)
494         # Target: NetBSD/sh
495         gdb_target_obs="sh-tdep.o shnbsd-tdep.o solib-svr4.o"
496         gdb_sim=../sim/sh/libsim.a
497         ;;
498 sh*-*-openbsd*)
499         # Target: OpenBSD/sh
500         gdb_target_obs="sh-tdep.o sh64-tdep.o shnbsd-tdep.o solib-svr4.o"
501         ;;
502 sh64-*-elf*)
503         # Target: Renesas/Super-H 64 bit with simulator
504         gdb_target_obs="sh-tdep.o sh64-tdep.o"
505         gdb_sim=../sim/sh64/libsim.a
506         ;;
507 sh*)
508         # Target: Embedded Renesas Super-H with ICE and simulator
509         gdb_target_obs="sh-tdep.o sh64-tdep.o monitor.o dsrec.o"
510         gdb_sim=../sim/sh/libsim.a
511         ;;
512
513 sparc-*-linux*)
514         # Target: GNU/Linux SPARC
515         gdb_target_obs="sparc-tdep.o sparc-sol2-tdep.o sol2-tdep.o \
516                         sparc-linux-tdep.o solib-svr4.o symfile-mem.o \
517                         linux-tdep.o \
518                         ravenscar-thread.o sparc-ravenscar-thread.o"
519         if test "x$enable_64_bit_bfd" = "xyes"; then
520             # Target: GNU/Linux UltraSPARC
521             gdb_target_obs="sparc64-tdep.o sparc64-sol2-tdep.o \
522                             sparc64-linux-tdep.o ${gdb_target_obs}"
523         fi
524         build_gdbserver=yes
525         ;;
526 sparc64-*-linux*)
527         # Target: GNU/Linux UltraSPARC
528         gdb_target_obs="sparc64-tdep.o sparc64-sol2-tdep.o sol2-tdep.o \
529                         sparc64-linux-tdep.o sparc-tdep.o sparc-sol2-tdep.o \
530                         sparc-linux-tdep.o solib-svr4.o linux-tdep.o \
531                         ravenscar-thread.o sparc-ravenscar-thread.o"
532         build_gdbserver=yes
533         ;;
534 sparc*-*-freebsd* | sparc*-*-kfreebsd*-gnu)
535         # Target: FreeBSD/sparc64
536         gdb_target_obs="sparc-tdep.o sparc64-tdep.o sparc64fbsd-tdep.o \
537                         fbsd-tdep.o solib-svr4.o \
538                         ravenscar-thread.o sparc-ravenscar-thread.o"
539         ;;
540 sparc-*-netbsd* | sparc-*-knetbsd*-gnu)
541         # Target: NetBSD/sparc
542         gdb_target_obs="sparc-tdep.o sparcnbsd-tdep.o nbsd-tdep.o \
543                         solib-svr4.o \
544                         ravenscar-thread.o sparc-ravenscar-thread.o"
545         ;;
546 sparc64-*-netbsd* | sparc64-*-knetbsd*-gnu)
547         # Target: NetBSD/sparc64
548         gdb_target_obs="sparc64-tdep.o sparc64nbsd-tdep.o sparc-tdep.o \
549                         sparcnbsd-tdep.o nbsd-tdep.o solib-svr4.o \
550                         ravenscar-thread.o sparc-ravenscar-thread.o"
551         ;;
552 sparc-*-openbsd*)
553         # Target: OpenBSD/sparc
554         gdb_target_obs="sparc-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
555                         nbsd-tdep.o obsd-tdep.o bsd-uthread.o solib-svr4.o \
556                         ravenscar-thread.o sparc-ravenscar-thread.o"
557         ;;
558 sparc64-*-openbsd*)
559         # Target: OpenBSD/sparc64
560         gdb_target_obs="sparc64-tdep.o sparc64nbsd-tdep.o sparc64obsd-tdep.o \
561                         sparc-tdep.o sparcnbsd-tdep.o sparcobsd-tdep.o \
562                         nbsd-tdep.o obsd-tdep.o bsd-uthread.o solib-svr4.o \
563                         ravenscar-thread.o sparc-ravenscar-thread.o"
564         ;;
565 sparc-*-solaris2.[0-6] | sparc-*-solaris2.[0-6].*)
566         # Target: Solaris SPARC
567         gdb_target_obs="sparc-tdep.o sparc-sol2-tdep.o sol2-tdep.o \
568                         solib-svr4.o \
569                         ravenscar-thread.o sparc-ravenscar-thread.o"
570         ;;
571 sparc-*-solaris2* | sparcv9-*-solaris2* | sparc64-*-solaris2*)
572         # Target: Solaris UltraSPARC
573         gdb_target_obs="sparc64-tdep.o sparc64-sol2-tdep.o sparc-tdep.o \
574                         sparc-sol2-tdep.o sol2-tdep.o solib-svr4.o \
575                         ravenscar-thread.o sparc-ravenscar-thread.o"
576         ;;
577 sparc-*-*)
578         # Target: SPARC
579         gdb_target_obs="sparc-tdep.o \
580                         ravenscar-thread.o sparc-ravenscar-thread.o"
581         gdb_sim=../sim/erc32/libsim.a
582         ;;
583 sparc64-*-*)
584         # Target: UltraSPARC
585         gdb_target_obs="sparc-tdep.o sparc64-tdep.o \
586                         ravenscar-thread.o sparc-ravenscar-thread.o"
587         ;;
588
589 spu*-*-*)
590         # Target: Cell BE SPU
591         gdb_target_obs="spu-tdep.o"
592         build_gdbserver=yes
593         ;;
594
595 tic6x-*-*linux)
596         # Target: GNU/Linux TI C6x
597         gdb_target_obs="tic6x-tdep.o tic6x-linux-tdep.o solib-dsbt.o \
598                         glibc-tdep.o linux-tdep.o"
599         ;;
600
601 tic6x-*-*)
602         # Target: TI C6X 
603         gdb_target_obs="tic6x-tdep.o"
604         ;;
605
606 tilegx-*-linux*)
607         # Target: TILE-Gx
608         gdb_target_obs="tilegx-tdep.o tilegx-linux-tdep.o solib-svr4.o \
609                         symfile-mem.o glibc-tdep.o linux-tdep.o"
610         build_gdbserver=yes
611         ;;
612
613 xstormy16-*-*)
614         # Target: Sanyo Xstormy16a processor
615         gdb_target_obs="xstormy16-tdep.o"
616         # No simulator libraries are needed -- target uses SID.
617         ;;
618
619 ft32-*-elf)
620         gdb_target_obs="ft32-tdep.o"
621         gdb_sim=../sim/ft32/libsim.a
622         ;;
623
624 v850*-*-elf | v850*-*-rtems*)
625         # Target: NEC V850 processor
626         gdb_target_obs="v850-tdep.o"
627         gdb_sim=../sim/v850/libsim.a
628         ;;
629
630 vax-*-netbsd* | vax-*-knetbsd*-gnu)
631         # Target: NetBSD/vax
632         gdb_target_obs="vax-tdep.o vaxnbsd-tdep.o solib-svr4.o"
633         ;;
634 vax-*-openbsd*)
635         # Target: OpenBSD/vax
636         gdb_target_obs="vax-tdep.o vaxobsd-tdep.o"
637         ;;
638 vax-*-*)
639         # Target: VAX
640         gdb_target_obs="vax-tdep.o"
641         ;;
642
643 x86_64-*-darwin*)
644         # Target: Darwin/x86-64
645         gdb_target_obs="amd64-tdep.o i386-tdep.o i387-tdep.o \
646                         i386-darwin-tdep.o amd64-darwin-tdep.o \
647                         solib-darwin.o"
648         ;;
649
650 x86_64-*-dicos*)
651         # Target: DICOS/x86-64
652         gdb_target_obs="amd64-tdep.o i386-tdep.o i387-tdep.o \
653                         dicos-tdep.o i386-dicos-tdep.o amd64-dicos-tdep.o"
654         ;;
655 x86_64-*-linux*)
656         # Target: GNU/Linux x86-64
657         gdb_target_obs="amd64-tdep.o amd64-linux-tdep.o i386-tdep.o \
658                         i387-tdep.o i386-linux-tdep.o glibc-tdep.o \
659                         solib-svr4.o symfile-mem.o linux-tdep.o linux-record.o"
660         build_gdbserver=yes
661         ;;
662 x86_64-*-freebsd* | x86_64-*-kfreebsd*-gnu)
663         # Target: FreeBSD/amd64
664         gdb_target_obs="amd64-tdep.o amd64fbsd-tdep.o i386-tdep.o \
665                         i387-tdep.o i386bsd-tdep.o i386fbsd-tdep.o \
666                         bsd-uthread.o fbsd-tdep.o solib-svr4.o"
667         ;;
668 x86_64-*-mingw* | x86_64-*-cygwin*)
669         # Target: MingW/amd64
670         gdb_target_obs="amd64-tdep.o amd64-windows-tdep.o \
671                         i386-tdep.o i386-cygwin-tdep.o i387-tdep.o \
672                         windows-tdep.o"
673         build_gdbserver=yes
674         ;;
675 x86_64-*-netbsd* | x86_64-*-knetbsd*-gnu)
676         # Target: NetBSD/amd64
677         gdb_target_obs="amd64-tdep.o amd64nbsd-tdep.o i386-tdep.o i387-tdep.o \
678                         nbsd-tdep.o solib-svr4.o"
679         ;;
680 x86_64-*-openbsd*)
681         # Target: OpenBSD/amd64
682         gdb_target_obs="amd64-tdep.o amd64obsd-tdep.o i386-tdep.o \
683                         i387-tdep.o i386bsd-tdep.o i386obsd-tdep.o \
684                         obsd-tdep.o bsd-uthread.o solib-svr4.o"
685         ;;
686 xtensa*-*-linux*)       gdb_target=linux
687         # Target: GNU/Linux Xtensa
688         gdb_target_obs="xtensa-tdep.o xtensa-config.o xtensa-linux-tdep.o \
689                         solib-svr4.o symfile-mem.o linux-tdep.o"
690         build_gdbserver=yes
691         ;;
692 xtensa*)
693         # Target: Tensilica Xtensa processors
694         gdb_target_obs="xtensa-tdep.o xtensa-config.o solib-svr4.o"
695         ;;
696
697 esac
698
699 # map target onto default OS ABI
700
701 case "${targ}" in
702 *-*-freebsd* | *-*-kfreebsd*-gnu)
703                 gdb_osabi=GDB_OSABI_FREEBSD_ELF ;;
704 *-*-linux* | *-*-uclinux*)
705                 gdb_osabi=GDB_OSABI_LINUX ;;
706 *-*-nto*)       gdb_osabi=GDB_OSABI_QNXNTO ;;
707 m68*-*-openbsd* | m88*-*-openbsd* | vax-*-openbsd*) ;;
708 *-*-openbsd*)   gdb_osabi=GDB_OSABI_OPENBSD_ELF ;;
709 *-*-solaris*)   gdb_osabi=GDB_OSABI_SOLARIS ;;
710 *-*-*-gnu*)     ;; # prevent non-GNU kernels to match the Hurd rule below
711 *-*-gnu*)       gdb_osabi=GDB_OSABI_HURD ;;
712 *-*-mingw32ce*) gdb_osabi=GDB_OSABI_WINCE ;;
713 *-*-mingw* | *-*-cygwin*)
714                 gdb_osabi=GDB_OSABI_CYGWIN ;;
715 *-*-dicos*)     gdb_osabi=GDB_OSABI_DICOS ;;
716 *-*-symbianelf*)
717                 gdb_osabi=GDB_OSABI_SYMBIAN ;;
718 powerpc-*-aix* | rs6000-*-* | powerpc64-*-aix*)
719                 gdb_osabi=GDB_OSABI_AIX ;;
720 esac
721
722 # Check whether this target supports gcore.
723 # Such target has to call set_gdbarch_find_memory_regions.
724 gdb_have_gcore=false
725 for t in x ${gdb_target_obs}; do
726   if test "$t" = linux-tdep.o; then
727     gdb_have_gcore=true
728   fi
729 done