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