* configure.in (hppa*-*-*): Also configure and build stabs-only
[deliverable/binutils-gdb.git] / gdb / gdbserver / configure.in
CommitLineData
e20520b8 1srcname="Remote GDB server"
f1538274 2srctrigger=server.c
e20520b8
SG
3gdb_serial_driver=../ser-unix.c
4
5# per-host:
6
7# per-target:
8
9# Hack alert! We want this directory to be configured only for the target,
10# which is where it will be running, so we just eliminate the per-host section,
11# and make the per-target stuff setup host & host_cpu according to the target.
12
13host_cpu=$target_cpu
14host=$target
15
16# Map host cpu into the config cpu subdirectory name.
17# The default is $host_cpu.
18
19case "${host_cpu}" in
20
21c[12]) gdb_host_cpu=convex ;;
22hppa*) gdb_host_cpu=pa ;;
23i[34]86) gdb_host_cpu=i386 ;;
24m68*) gdb_host_cpu=m68k ;;
25np1) gdb_host_cpu=gould ;;
26pyramid) gdb_host_cpu=pyr ;;
27*) gdb_host_cpu=$target_cpu ;;
28
29esac
30
31# map host info into gdb names.
32
33case "${host}" in
34
35a29k-*-*) gdb_host=ultra3 ;;
36
37arm-*-*) gdb_host=arm ;;
38
39c[12]-*-*) gdb_host=convex ;;
40
41hppa*-hp-bsd*) gdb_host=hppabsd ;;
42hppa*-hp-hpux*) gdb_host=hppahpux ;;
43
44i[34]86-ncr-*) gdb_host=ncr3000 ;;
45i[34]86-sequent-*) gdb_host=symmetry ;;
46
47i[34]86-*-bsd*) gdb_host=i386bsd ;;
1cecf3b2 48i[34]86-*-lynxos*) gdb_host=i386lynx ;;
e20520b8
SG
49i[34]86-*-go32) gdb_host=go32
50 gdb_serial_driver=ser-go32.c
51 ;;
52i[34]86-*-linux) gdb_host=linux ;;
53i[34]86-*-mach) gdb_host=i386mach ;;
54i[34]86-*-sco3.2v4*) gdb_host=i386sco4 ;;
55i[34]86-*-sco*) gdb_host=i386sco ;;
56i[34]86-*-solaris*) gdb_host=i386sol2 ;;
57i[34]86-*-sunos*) gdb_host=sun386 ;;
58i[34]86-*-sysv3.2) gdb_host=i386v32 ;;
59i[34]86-*-sysv4*) gdb_host=i386v4 ;;
60i[34]86-*-sysv*) gdb_host=i386v ;;
61
62m680[01]0-sun-sunos3*) gdb_host=sun2os3 ;;
63m680[01]0-sun-sunos4*) gdb_host=sun2os4 ;;
64m68030-sony-*) gdb_host=news1000 ;;
65
66m68*-altos-*) gdb_host=altos ;;
67m68*-apollo*-sysv*) gdb_host=apollo68v ;;
68m68*-apollo*-bsd*) gdb_host=apollo68b ;;
69m68*-att-*) gdb_host=3b1 ;;
70m68*-cbm-sysv4*) gdb_host=amix ;;
71m68*-hp-bsd*) gdb_host=hp300bsd ;;
72m68*-hp-hpux*) gdb_host=hp300hpux ;;
73m68*-isi-*) gdb_host=isi ;;
1cecf3b2 74m68*-*-lynxos*) gdb_host=m68klynx ;;
e20520b8
SG
75m68*-sony-*) gdb_host=news ;;
76m68*-sun-sunos3*) gdb_host=sun3os3 ;;
77m68*-sun-sunos4*) gdb_host=sun3os4 ;;
78m68*-sun-*) gdb_host=sun3os4 ;;
79
80m88k-motorola-*) gdb_host=delta88 ;;
81m88k-*-*) gdb_host=m88k ;;
82
83mips-dec-*) gdb_host=decstation ;;
84mips-little-*) gdb_host=littlemips ;;
85mips-sgi-irix3) gdb_host=irix3 ;;
86mips-sgi-irix4*) gdb_host=irix4 ;;
87mips-sony-*) gdb_host=bigmips ;;
88
89none-*-*) gdb_host=none ;;
90
91np1-*-*) gdb_host=np1 ;;
92
93ns32k-umax-*) gdb_host=umax ;;
94ns32k-utek-sysv) gdb_host=merlin ;;
95
96pn-*-*) gdb_host=pn ;;
97
98pyramid-*-*) gdb_host=pyramid ;;
99
100romp-*-*) gdb_host=rtbsd ;;
101
102rs6000-*-*) gdb_host=rs6000 ;;
103
1cecf3b2 104sparc-*-lynxos*) gdb_host=sparclynx ;;
e20520b8
SG
105sparc-*-solaris2*) gdb_host=sun4sol2 ;;
106sparc-*-sunos4*) gdb_host=sun4os4 ;;
107sparc-*-*) gdb_host=sun4os4 ;;
108
109tahoe-*-*) gdb_host=tahoe ;;
110
111vax-*-bsd*) gdb_host=vaxbsd ;;
112vax-*-ultrix2*) gdb_host=vaxult2 ;;
113vax-*-ultrix*) gdb_host=vaxult ;;
114
115esac
116
117if [ ! -f ${srcdir}/../config/${gdb_host_cpu}/${gdb_host}.mh ]; then
118 echo '***' "GDB remote does not support host ${host}" 1>&2
119 exit 1
120fi
121
122# We really shouldn't depend on there being a space after XM_FILE= ...
123hostfile=`awk '$1 == "XM_FILE=" { print $2 }' <${srcdir}/../config/${gdb_host_cpu}/${gdb_host}.mh`
124
125# per-target:
126
127# Map target cpu into the config cpu subdirectory name.
128# The default is $target_cpu.
129
130case "${target_cpu}" in
131
132c[12]) gdb_target_cpu=convex ;;
133hppa*) gdb_target_cpu=pa ;;
134i[34]86) gdb_target_cpu=i386 ;;
135m68*) gdb_target_cpu=m68k ;;
136np1) gdb_target_cpu=gould ;;
137pn) gdb_target_cpu=gould ;;
138pyramid) gdb_target_cpu=pyr ;;
139sparc*) gdb_target_cpu=sparc ;;
140*) gdb_target_cpu=$target_cpu ;;
141
142esac
143
144# map target info into gdb names.
145
146case "${target}" in
147
148a29k-*-aout) gdb_target=a29k ;;
149a29k-*-coff) gdb_target=a29k ;;
150a29k-*-elf) gdb_target=a29k ;;
151a29k-*-ebmon) gdb_target=a29k ;;
152a29k-*-kern) gdb_target=a29k-kern ;;
153a29k-*-none) gdb_target=a29k ;;
154a29k-*-sym1) gdb_target=ultra3 ;;
155a29k-*-udi) gdb_target=a29k-udi ;;
156
157arm-*-*) gdb_target=arm ;;
158
159c1-*-*) gdb_target=convex ;;
160c2-*-*) gdb_target=convex ;;
161
162h8300-*-*) gdb_target=h8300hms ;;
163h8500-*-*) gdb_target=h8500hms ;;
164
165sh-*-*) gdb_target=sh ;;
166
167hppa*-*-bsd*) gdb_target=hppabsd ;;
168hppa*-*-hpux*) gdb_target=hppahpux ;;
169
170i[34]86-sequent-*) gdb_target=symmetry ;;
171i[34]86-ncr-*) gdb_target=ncr3000 ;;
172
173i[34]86-*-aout) gdb_target=i386aout ;;
174i[34]86-*-coff) gdb_target=i386v ;;
175i[34]86-*-elf) gdb_target=i386v ;;
176
177i[34]86-*-bsd*) gdb_target=i386bsd ;;
1cecf3b2 178i[34]86-*-lynxos*) gdb_target=i386lynx ;;
e20520b8
SG
179i[34]86-*-go32) gdb_target=i386aout ;;
180i[34]86-*-solaris*) gdb_target=i386sol2 ;;
181i[34]86-*-sunos*) gdb_target=sun386 ;;
182i[34]86-*-sysv4*) gdb_target=i386v4 ;;
183i[34]86-*-sco*) gdb_target=i386v ;;
184i[34]86-*-sysv*) gdb_target=i386v ;;
185i[34]86-*-linux) gdb_target=linux ;;
186
187i960-*-bout) gdb_target=vxworks960 ;;
188i960-*-coff) gdb_target=nindy960 ;;
189i960-*-elf) gdb_target=nindy960 ;;
190
191i960-*-nindy) gdb_target=nindy960 ;;
192i960-*-vxworks) gdb_target=vxworks960 ;;
193
194m68000-*-aout) gdb_target=m68k-nofp ;;
195m68000-*-coff) gdb_target=m68k-nofp ;;
196m68000-*-elf) gdb_target=m68k-nofp ;;
197m68000-*-sunos3*) gdb_target=sun2os3 ;;
198m68000-*-sunos4*) gdb_target=sun2os4 ;;
199
200m68*-cbm-sysv4*) gdb_target=amix ;;
201m68*-hp-bsd*) gdb_target=hp300bsd ;;
202m68*-hp-hpux*) gdb_target=hp300hpux ;;
203
204m68*-altos-*) gdb_target=altos ;;
205m68*-att-*) gdb_target=3b1 ;;
206m68*-ericsson-*) gdb_target=es1800 ;;
207m68*-isi-*) gdb_target=isi ;;
208m68*-netx-*) gdb_target=vxworks68 ;;
209m68*-sony-*) gdb_target=news ;;
210m68*-tandem-*) gdb_target=st2000 ;;
211
212m68*-*-aout) gdb_target=m68k-fp ;;
213m68*-*-coff) gdb_target=m68k-fp ;;
214m68*-*-elf) gdb_target=m68k-fp ;;
1cecf3b2 215m68*-*-lynxos*) gdb_target=m68klynx ;;
e20520b8
SG
216m68*-*-os68k) gdb_target=os68k ;;
217m68*-*-sunos3*) gdb_target=sun3os3 ;;
218m68*-*-sunos4*) gdb_target=sun3os4 ;;
219m68*-*-vxworks*) gdb_target=vxworks68 ;;
220
221m88k-motorola-*) gdb_target=delta88 ;;
222m88k-*-*) gdb_target=m88k ;;
223
224mips-big-*) gdb_target=bigmips ;;
225mips-dec-*) gdb_target=decstation ;;
226mips-idt-ecoff) gdb_target=idt ;;
227mips-little-*) gdb_target=littlemips ;;
228mips-sgi-*) gdb_target=irix3 ;;
229mips-sony-*) gdb_target=bigmips ;;
230
231none-*-*) gdb_target=none ;;
232
233np1-*-*) gdb_target=np1 ;;
234
235ns32k-utek-sysv) gdb_target=merlin ;;
236ns32k-utek-*) gdb_target=umax ;;
237
238pn-*-*) gdb_target=pn ;;
239
240pyramid-*-*) gdb_target=pyramid ;;
241
242rs6000-*-*) gdb_target=rs6000 ;;
243
244sparc-*-aout) gdb_target=sparc-em ;;
245sparc-*-coff) gdb_target=sparc-em ;;
246sparc-*-elf) gdb_target=sparc-em ;;
1cecf3b2 247sparc-*-lynxos*) gdb_target=sparclynx ;;
e20520b8
SG
248sparc-*-solaris2*) gdb_target=sun4sol2 ;;
249sparc-*-sunos4*) gdb_target=sun4os4 ;;
250sparc-*-vxworks*) gdb_target=sparc-em ;;
251sparc-*-*) gdb_target=sun4os4 ;;
252sparclite*-*-*) gdb_target=sparclite ;;
253
254tahoe-*-*) gdb_target=tahoe ;;
255vax-*-*) gdb_target=vax ;;
256
257z8k-*-sim) gdb_target=z8ksim ;;
258esac
259
260if [ ! -f ${srcdir}/../config/${gdb_target_cpu}/${gdb_target}.mt ]; then
261 echo '***' "GDB remote does not support target ${target}" 1>&2
262 exit 1
263fi
264
265if [ -z "${removing}" ] ; then
266 cat ${srcdir}/../config/${gdb_host_cpu}/${gdb_host}.mh ${srcdir}/../config/${gdb_target_cpu}/${gdb_target}.mt | awk '$1 == "#msg" {
267 print substr($0,6)}'
268fi
269
270# We really shouldn't depend on there being a space after TM_FILE= ...
271targetfile=`awk '$1 == "TM_FILE=" { print $2 }' <${srcdir}/../config/${gdb_target_cpu}/${gdb_target}.mt`
272
273if [ "${target}" = "${host}" ] ; then
274 nativefile=`awk '$1 == "NAT_FILE=" { print $2 }' <${srcdir}/../config/${gdb_host_cpu}/${gdb_host}.mh`
275fi
276
277host_makefile_frag=../config/${gdb_host_cpu}/${gdb_host}.mh
278target_makefile_frag=../config/${gdb_target_cpu}/${gdb_target}.mt
279
280# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
281# (NAT_FILE) is not set in the ?config/* file, we don't make the
282# corresponding links. But we have to remove the xm.h files and tm.h
283# files anyway, e.g. when switching from "configure host" to
284# "configure none".
285
286files=
287links=
288rm -f xm.h
289rm -f ser-hardwire.c
290if [ "${hostfile}" != "" ]; then
291 if [ -f ${srcdir}/../config/${hostfile} ]; then
292 files="${files} ../config/${hostfile}"
293 else
294 files="${files} ../config/${gdb_host_cpu}/${hostfile}"
295 fi
296 links="${links} xm.h"
297
298# files="${files} ${gdb_serial_driver}"
299# links="${links} ser-hardwire.c"
300fi
301rm -f tm.h
302if [ "${targetfile}" != "" ]; then
303 if [ -f ${srcdir}/../config/${targetfile} ]; then
304 files="${files} ../config/${targetfile}"
305 else
306 files="${files} ../config/${gdb_target_cpu}/${targetfile}"
307 fi
308 links="${links} tm.h"
309fi
310rm -f nm.h
311if [ "${nativefile}" != "" ]; then
312 if [ -f ${srcdir}/../config/${nativefile} ]; then
313 files="${files} ../config/${nativefile}"
314 else
315 files="${files} ../config/${gdb_host_cpu}/${nativefile}"
316 fi
317 links="${links} nm.h"
318# temporary scaffolding until all hosts have the host/target/native
319# split in place.
320else
321 files="${files} ../config/nm-trash.h"
322 links="${links} nm.h"
323fi
324
325if [ ${target_cpu} = "sparclite" ]; then
326 configdirs="${configdirs} sparclite"
327fi
328
329# post-target:
330
331if [ "${nativefile}" = "" ] ; then
332 sed -e '/^NATDEPFILES= /s//# NATDEPFILES= /' \
333 < Makefile > Makefile.tem
334 mv -f Makefile.tem Makefile
335fi
This page took 0.088878 seconds and 4 git commands to generate.