* configure.in, configure: Add `-ldl -lw' for Solaris linking.
[deliverable/binutils-gdb.git] / gdb / configure.in
1 dnl Autoconf configure script for GDB, the GNU debugger.
2 dnl Copyright 1995, 1996 Free Software Foundation, Inc.
3 dnl
4 dnl This file is part of GDB.
5 dnl
6 dnl This program is free software; you can redistribute it and/or modify
7 dnl it under the terms of the GNU General Public License as published by
8 dnl the Free Software Foundation; either version 2 of the License, or
9 dnl (at your option) any later version.
10 dnl
11 dnl This program is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 dnl GNU General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU General Public License
17 dnl along with this program; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
19
20 dnl Process this file with autoconf to produce a configure script.
21
22 AC_PREREQ(2.3)dnl
23 AC_INIT(main.c)
24
25 AC_PROG_CC
26 AC_AIX
27 AC_MINIX
28 AC_ISC_POSIX
29
30 AC_PROG_INSTALL
31 AC_PROG_RANLIB
32 AC_PROG_YACC
33
34 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
35 AC_CANONICAL_SYSTEM
36 AC_ARG_PROGRAM
37
38 AC_HEADER_STDC
39 AC_CHECK_HEADERS(memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h)
40 AC_HEADER_STAT
41
42 AC_FUNC_MMAP
43
44 dnl Handle optional features that can be enabled.
45 ENABLE_CFLAGS=
46 ENABLE_CLIBS=
47 ENABLE_OBS=
48
49 AC_ARG_ENABLE(netrom,
50 [ --enable-netrom ],
51 [case "${enableval}" in
52 yes) enable_netrom=yes ;;
53 no) enable_netrom=no ;;
54 *) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
55 esac])
56
57 if test "${enable_netrom}" = "yes"; then
58 ENABLE_OBS="${ENABLE_OBS} remote-nrom.o"
59 fi
60
61 # start-sanitize-gm
62 ENABLE_GM=
63
64 AC_ARG_ENABLE(gm,
65 [ --enable-gm ],
66 [case "${enableval}" in
67 yes) ENABLE_OBS="${ENABLE_OBS} magic.o"
68 ENABLE_CFLAGS=-DGENERAL_MAGIC
69 ;;
70 no) ;;
71 *) AC_MSG_ERROR(bad value ${enableval} given for gm option) ;;
72 esac])
73
74 # end-sanitize-gm
75
76 AC_ARG_ENABLE(sim-powerpc,
77 [ --enable-sim-powerpc ],
78 [case "${enableval}" in
79 yes) powerpc_sim=yes ;;
80 no) powerpc_sim=no ;;
81 *) AC_MSG_ERROR(bad value ${enableval} given for sim-powerpc option) ;;
82 esac],[if test x"$GCC" != x""; then powerpc_sim=yes; else powerpc_sim=no; fi])
83
84 # start-sanitize-gdbtk
85 ENABLE_GDBTK=
86
87 AC_ARG_ENABLE(gdbtk,
88 [ --enable-gdbtk ],
89 [case "${enableval}" in
90 yes)
91 case "$host" in
92 *go32*)
93 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
94 enable_gdbtk=no ;;
95 *)
96 enable_gdbtk=yes ;;
97 esac ;;
98 no)
99 enable_gdbtk=no ;;
100 *)
101 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
102 esac],
103 [
104 # Default is on for everything but go32
105 case "$host" in
106 *go32*)
107 ;;
108 *)
109 enable_gdbtk=yes ;;
110 esac
111 ])
112
113 if test "${enable_gdbtk}" = "yes"; then
114
115 AC_PATH_X
116 AC_PATH_XTRA
117
118 CYGNUS_PATH_TK
119 CYGNUS_PATH_TCL
120
121 ENABLE_GDBTK=1
122
123 if test "x$no_x" != "xyes"; then
124 if test "x$x_includes" != "x" ;
125 then
126 X_CFLAGS="-I$x_includes"
127 else
128 X_CFLAGS=""
129 fi
130
131 if test "x$x_libraries" != "x" ;
132 then
133 X_LDFLAGS="-L$x_libraries"
134 else
135 X_LDFLAGS=""
136 fi
137
138 case "$host" in
139 #
140 # gdb linked statically w/ Solaris iff GCC is used, otherwise dynamic
141 #
142 sparc-sun-solaris2*)
143 if test "x$GCC" = "xyes";
144 then
145 X_LIBS="-Wl,-Bstatic -lX11 -lXext -lX11 -Wl,-Bdynamic -ldl -lw"
146 else
147 if test "x$x_libraries" != "x" ;
148 then
149 X_LDFLAGS="$X_LDFLAGS -R$x_libraries"
150 fi
151 X_LIBS="-lX11 -lXext -lX11"
152 fi ;;
153 #
154 # gdb linked statically w/ SunOS or HPUX
155 #
156 m68k-hp-hpux*|hppa*-hp-hpux*|sparc-sun-sunos*)
157 if test "x$x_libraries" != "x" ;
158 then
159 X_LIBS="$x_libraries/libX11.a"
160 else
161 X_LIBS="/usr/lib/libX11.a"
162 fi ;;
163 #
164 # default is to link dynamically
165 #
166 *)
167 X_LIBS="-lX11" ;;
168 esac
169 else
170 X_LDLAGS=""
171 X_CFLAGS=""
172 X_LIBS=""
173 AC_MSG_WARN([No X based programs will be built])
174 fi
175
176 TCL_LIBS='$(TCL) $(TK) $(X11_LDFLAGS) $(X11_LIBS)'
177 ENABLE_CLIBS="${ENABLE_CLIBS} ${TCL_LIBS} -lm"
178 ENABLE_OBS="${ENABLE_OBS} gdbtk.o"
179 fi
180
181 AC_SUBST(ENABLE_GDBTK)
182 AC_SUBST(X_CFLAGS)
183 AC_SUBST(X_LDFLAGS)
184 AC_SUBST(X_LIBS)
185 # end-sanitize-gdbtk
186
187 AC_SUBST(ENABLE_CFLAGS)
188 AC_SUBST(ENABLE_CLIBS)
189 AC_SUBST(ENABLE_OBS)
190
191 # target_subdir is used by the testsuite to find the target libraries.
192 target_subdir=
193 if test "${host}" != "${target}"; then
194 target_subdir="${target_alias}/"
195 fi
196 AC_SUBST(target_subdir)
197
198 configdirs="doc testsuite"
199
200 dnl
201 changequote(,)dnl
202
203 # Map host cpu into the config cpu subdirectory name.
204 # The default is $host_cpu.
205
206 case "${host_cpu}" in
207
208 c[12]) gdb_host_cpu=convex ;;
209 hppa*) gdb_host_cpu=pa ;;
210 i[3456]86) gdb_host_cpu=i386 ;;
211 m68*) gdb_host_cpu=m68k ;;
212 m88*) gdb_host_cpu=m88k ;;
213 np1) gdb_host_cpu=gould ;;
214 pyramid) gdb_host_cpu=pyr ;;
215 powerpc*) gdb_host_cpu=powerpc ;;
216 *) gdb_host_cpu=$host_cpu ;;
217
218 esac
219
220 # map host info into gdb names.
221
222 case "${host}" in
223
224 a29k-*-*) gdb_host=ultra3 ;;
225
226 alpha-*-osf1*) gdb_host=alpha-osf1 ;;
227 alpha-*-osf2*) gdb_host=alpha-osf2 ;;
228 alpha-*-osf[3456789]*) gdb_host=alpha-osf3 ;;
229
230 arm-*-*) gdb_host=arm ;;
231
232 c[12]-*-*) gdb_host=convex ;;
233
234 hppa*-*-bsd*) gdb_host=hppabsd ;;
235 hppa*-*-hiux*) gdb_host=hppahpux ;;
236 hppa*-*-hpux*) gdb_host=hppahpux ;;
237 hppa*-*-osf*) gdb_host=hppaosf ;;
238
239 i[3456]86-ncr-*) gdb_host=ncr3000 ;;
240 i[3456]86-sequent-bsd*) gdb_host=symmetry ;; # dynix
241 i[3456]86-sequent-sysv4*) gdb_host=ptx4 ;;
242 i[3456]86-sequent-sysv*) gdb_host=ptx ;;
243 i[3456]86-*-aix*) gdb_host=i386aix ;;
244 i[3456]86-*-bsd*) gdb_host=i386bsd ;;
245 i[3456]86-*-dgux*) gdb_host=i386dgux ;;
246 i[3456]86-*-freebsd*) gdb_host=fbsd ;;
247 i[3456]86-*-netbsd*) gdb_host=nbsd ;;
248 i[3456]86-*-go32*) gdb_host=go32 ;;
249 i[3456]86-*-linux*) gdb_host=linux ;;
250 i[3456]86-*-lynxos*) gdb_host=i386lynx ;;
251 i[3456]86-*-mach3*) gdb_host=i386m3 ;;
252 i[3456]86-*-mach*) gdb_host=i386mach ;;
253 i[3456]86-*-osf1mk*) gdb_host=osf1mk ;;
254 i[3456]86-*-sco3.2v4*) gdb_host=i386sco4 ;;
255 i[3456]86-*-sco*) gdb_host=i386sco ;;
256 i[3456]86-*-solaris*) gdb_host=i386sol2 ;;
257 i[3456]86-*-sunos*) gdb_host=sun386 ;;
258 i[3456]86-*-sysv3.2*) gdb_host=i386v32 ;;
259 i[3456]86-*-sysv32*) gdb_host=i386v32 ;;
260 i[3456]86-*-sysv4*) gdb_host=i386v4 ;;
261 i[3456]86-*-unixware) gdb_host=i386v4 ;;
262 i[3456]86-*-sysv*) gdb_host=i386v ;;
263 i[3456]86-*-isc*) gdb_host=i386v32 ;;
264 i[3456]86-*-os9k) gdb_host=i386os9k ;;
265 i[3456]86-*-win32*) gdb_host=win32 ;;
266 m680[01]0-sun-sunos3*) gdb_host=sun2os3 ;;
267 m680[01]0-sun-sunos4*) gdb_host=sun2os4 ;;
268 m68030-sony-*) gdb_host=news1000 ;;
269
270 m68*-altos-*) gdb_host=altos ;;
271 m68*-apollo*-sysv*) gdb_host=apollo68v ;;
272 m68*-apollo*-bsd*) gdb_host=apollo68b ;;
273 m68*-att-*) gdb_host=3b1 ;;
274 m68*-bull*-sysv*) gdb_host=dpx2 ;;
275 m68*-hp-bsd*) gdb_host=hp300bsd ;;
276 m68*-hp-hpux*) gdb_host=hp300hpux ;;
277 m68*-isi-*) gdb_host=isi ;;
278 m68*-*-lynxos*) gdb_host=m68klynx ;;
279 m68*-*-sysv4*) gdb_host=m68kv4 ;;
280 m68*-motorola-*) gdb_host=delta68 ;;
281 m68*-sony-*) gdb_host=news ;;
282 m68*-sun-sunos3*) gdb_host=sun3os3 ;;
283 m68*-sun-sunos4*) gdb_host=sun3os4 ;;
284 m68*-sun-*) gdb_host=sun3os4 ;;
285
286 m88*-harris-cxux*) gdb_host=cxux ;;
287 m88*-motorola-sysv4*) gdb_host=delta88v4 ;;
288 m88*-motorola-sysv*) gdb_host=delta88 ;;
289 m88*-*-mach3*) gdb_host=mach3 ;;
290 m88*-*-*) gdb_host=m88k ;;
291
292 mips-dec-mach3*) gdb_host=mach3 ;;
293 mips-dec-*) gdb_host=decstation ;;
294 mips-little-*) gdb_host=littlemips ;;
295 mips-sgi-irix3*) gdb_host=irix3 ;;
296 mips-sgi-irix4*) gdb_host=irix4 ;;
297 mips-sgi-irix5*) gdb_host=irix5 ;;
298 mips-sony-*) gdb_host=news-mips ;;
299 mips-*-mach3*) gdb_host=mach3 ;;
300 mips-*-sysv4*) gdb_host=mipsv4 ;;
301 mips-*-sysv*) gdb_host=riscos ;;
302 mips-*-riscos*) gdb_host=riscos ;;
303
304 none-*-*) gdb_host=none ;;
305
306 np1-*-*) gdb_host=np1 ;;
307
308 ns32k-*-mach3*) gdb_host=mach3 ;;
309 ns32k-*-netbsd*) gdb_host=nbsd ;;
310 ns32k-umax-*) gdb_host=umax ;;
311 ns32k-utek-sysv*) gdb_host=merlin ;;
312
313 powerpc-*-aix*) gdb_host=aix ;;
314
315 pn-*-*) gdb_host=pn ;;
316
317 pyramid-*-*) gdb_host=pyramid ;;
318
319 romp-*-*) gdb_host=rtbsd ;;
320
321 rs6000-*-lynxos*) gdb_host=rs6000lynx ;;
322 rs6000-*-*) gdb_host=rs6000 ;;
323
324 sparc-*-lynxos*) gdb_host=sparclynx ;;
325 sparc-*-netbsd*) gdb_host=nbsd ;;
326 sparc-*-solaris2*) gdb_host=sun4sol2 ;;
327 sparc-*-sunos4*) gdb_host=sun4os4 ;;
328 sparc-*-sunos5*) gdb_host=sun4sol2 ;;
329 sparc-*-*) gdb_host=sun4os4 ;;
330
331 tahoe-*-*) gdb_host=tahoe ;;
332
333 vax-*-bsd*) gdb_host=vaxbsd ;;
334 vax-*-ultrix2*) gdb_host=vaxult2 ;;
335 vax-*-ultrix*) gdb_host=vaxult ;;
336
337 w65-*-*) gdb_host=w65 ;;
338
339 esac
340
341
342 # Map target cpu into the config cpu subdirectory name.
343 # The default is $target_cpu.
344
345 case "${target_cpu}" in
346
347 alpha) gdb_target_cpu=alpha ;;
348 c[12]) gdb_target_cpu=convex ;;
349 hppa*) gdb_target_cpu=pa ;;
350 i[3456]86) gdb_target_cpu=i386 ;;
351 m68*) gdb_target_cpu=m68k ;;
352 m88*) gdb_target_cpu=m88k ;;
353 mips*) gdb_target_cpu=mips ;;
354 np1) gdb_target_cpu=gould ;;
355 powerpc*) gdb_target_cpu=powerpc ;;
356 pn) gdb_target_cpu=gould ;;
357 pyramid) gdb_target_cpu=pyr ;;
358 sparc*) gdb_target_cpu=sparc ;;
359 *) gdb_target_cpu=$target_cpu ;;
360
361 esac
362
363 # map target info into gdb names.
364
365 case "${target}" in
366
367 a29k-*-aout*) gdb_target=a29k ;;
368 a29k-*-coff*) gdb_target=a29k ;;
369 a29k-*-elf*) gdb_target=a29k ;;
370 a29k-*-ebmon*) gdb_target=a29k ;;
371 a29k-*-kern*) gdb_target=a29k-kern ;;
372 a29k-*-none*) gdb_target=a29k ;;
373 a29k-*-sym1*) gdb_target=ultra3 ;;
374 a29k-*-udi*) gdb_target=a29k-udi ;;
375 a29k-*-vxworks*) gdb_target=vx29k ;;
376
377 alpha-*-osf*) gdb_target=alpha-osf1 ;;
378
379 # start-sanitize-arc
380 arc-*-*) gdb_target=arc ;;
381 # end-sanitize-arc
382
383 arm-*-*) gdb_target=arm ;;
384
385 c1-*-*) gdb_target=convex ;;
386 c2-*-*) gdb_target=convex ;;
387
388 h8300-*-*) gdb_target=h8300 ;;
389 h8500-*-*) gdb_target=h8500 ;;
390
391 sh-*-*) gdb_target=sh ;;
392
393 # start-sanitize-r16
394 r16-*-*) gdb_target=r16 ;;
395 # end-sanitize-r16
396
397 hppa*-*-bsd*) gdb_target=hppabsd ;;
398 hppa*-*-pro*) gdb_target=hppapro ;;
399 hppa*-*-hpux*) gdb_target=hppahpux ;;
400 hppa*-*-hiux*) gdb_target=hppahpux ;;
401 hppa*-*-osf*) gdb_target=hppaosf ;;
402
403 i[3456]86-sequent-bsd*) gdb_target=symmetry ;;
404 i[3456]86-sequent-sysv4*) gdb_target=ptx4 ;;
405 i[3456]86-sequent-sysv*) gdb_target=ptx ;;
406 i[3456]86-ncr-*) gdb_target=ncr3000 ;;
407 i[3456]86-*-aout*) gdb_target=i386aout ;;
408 i[3456]86-*-coff*) gdb_target=i386v ;;
409 i[3456]86-*-elf*) gdb_target=i386v ;;
410 i[3456]86-*-aix*) gdb_target=i386aix ;;
411 i[3456]86-*-bsd*) gdb_target=i386bsd ;;
412 i[3456]86-*-freebsd*) gdb_target=fbsd ;;
413 i[3456]86-*-netbsd*) gdb_target=nbsd ;;
414 i[3456]86-*-os9k) gdb_target=i386os9k ;;
415 i[3456]86-*-go32*) gdb_target=i386aout ;;
416 i[3456]86-*-lynxos*) gdb_target=i386lynx
417 configdirs="${configdirs} gdbserver" ;;
418 i[3456]86-*-solaris*) gdb_target=i386sol2 ;;
419 i[3456]86-*-sunos*) gdb_target=sun386 ;;
420 i[3456]86-*-sysv4*) gdb_target=i386v4 ;;
421 i[3456]86-*-sco*) gdb_target=i386v ;;
422 i[3456]86-*-sysv*) gdb_target=i386v ;;
423 i[3456]86-*-linux*) gdb_target=linux ;;
424 i[3456]86-*-isc*) gdb_target=i386v ;;
425 i[3456]86-*-mach3*) gdb_target=i386m3 ;;
426 i[3456]86-*-mach*) gdb_target=i386mach ;;
427 i[3456]86-*-netware*) gdb_target=i386nw
428 configdirs="${configdirs} nlm" ;;
429 i[3456]86-*-osf1mk*) gdb_target=i386mk ;;
430 i[3456]86-*-win32) gdb_target=win32 ;;
431
432 i960-*-bout*) gdb_target=vxworks960 ;;
433 i960-*-coff*) gdb_target=nindy960 ;;
434 i960-*-elf*) gdb_target=nindy960 ;;
435
436 i960-*-nindy*) gdb_target=nindy960 ;;
437 i960-*-vxworks*) gdb_target=vxworks960 ;;
438
439 m68000-*-sunos3*) gdb_target=sun2os3 ;;
440 m68000-*-sunos4*) gdb_target=sun2os4 ;;
441
442 m68*-apollo*-bsd*) gdb_target=apollo68b ;;
443 m68*-bull-sysv*) gdb_target=dpx2 ;;
444 m68*-hp-bsd*) gdb_target=hp300bsd ;;
445 m68*-hp-hpux*) gdb_target=hp300hpux ;;
446 m68*-altos-*) gdb_target=altos ;;
447 m68*-att-*) gdb_target=3b1 ;;
448 m68*-cisco*-*) gdb_target=cisco ;;
449 m68*-ericsson-*) gdb_target=es1800 ;;
450 m68*-isi-*) gdb_target=isi ;;
451 m68*-motorola-*) gdb_target=delta68 ;;
452 m68*-netx-*) gdb_target=vxworks68 ;;
453 m68*-sony-*) gdb_target=news ;;
454 m68*-tandem-*) gdb_target=st2000 ;;
455 m68*-rom68k-*) gdb_target=monitor ;;
456 m68*-*bug-*) gdb_target=monitor ;;
457 m68*-monitor-*) gdb_target=monitor ;;
458 m68*-est-*) gdb_target=monitor ;;
459 m68*-*-aout*) gdb_target=monitor ;;
460 m68*-*-coff*) gdb_target=monitor ;;
461 m68*-*-elf*) gdb_target=monitor ;;
462 m68*-*-lynxos*) gdb_target=m68klynx
463 configdirs="${configdirs} gdbserver" ;;
464 m68*-*-os68k*) gdb_target=os68k ;;
465 m68*-*-sunos3*) gdb_target=sun3os3 ;;
466 m68*-*-sunos4*) gdb_target=sun3os4 ;;
467 m68*-*-sysv4*) gdb_target=m68kv4 ;;
468 m68*-*-vxworks*) gdb_target=vxworks68 ;;
469
470 m88*-harris-cxux*) gdb_target=cxux ;;
471 m88*-motorola-sysv4*) gdb_target=delta88v4 ;;
472 m88*-*-mach3*) gdb_target=mach3 ;;
473 m88*-motorola-*) gdb_target=delta88 ;;
474 m88*-*-*) gdb_target=m88k ;;
475
476 mips64*-big-*) gdb_target=bigmips64 ;;
477 mips*-big-*) gdb_target=bigmips ;;
478 mips*-dec-mach3*) gdb_target=mach3 ;;
479 mips*-dec-*) gdb_target=decstation ;;
480 mips64*el-*-ecoff*) gdb_target=embedl64 ;;
481 mips64*-*-ecoff*) gdb_target=embed64 ;;
482 mips64*vr4300*el-*-elf*) gdb_target=vr4300el ;;
483 mips64*vr4300*-*-elf*) gdb_target=vr4300 ;;
484 mips64*el-*-elf*) gdb_target=embedl64 ;;
485 mips64*-*-elf*) gdb_target=embed64 ;;
486 mips*el-*-ecoff*) gdb_target=embedl ;;
487 mips*-*-ecoff*) gdb_target=embed ;;
488 # start-sanitize-gm
489 mips*-*-magic*) gdb_target=embed ;;
490 # end-sanitize-gm
491 mips*el-*-elf*) gdb_target=embedl ;;
492 mips*-*-elf*) gdb_target=embed ;;
493 mips*-little-*) gdb_target=littlemips ;;
494 mips*-sgi-irix5*) gdb_target=irix5 ;;
495 mips*-sgi-*) gdb_target=irix3 ;;
496 mips*-sony-*) gdb_target=bigmips ;;
497 mips*-*-mach3*) gdb_target=mach3 ;;
498 mips*-*-sysv4*) gdb_target=mipsv4 ;;
499 mips*-*-sysv*) gdb_target=bigmips ;;
500 mips*-*-riscos*) gdb_target=bigmips ;;
501
502 none-*-*) gdb_target=none ;;
503
504 np1-*-*) gdb_target=np1 ;;
505
506 ns32k-*-mach3*) gdb_target=mach3 ;;
507 ns32k-*-netbsd*) gdb_target=nbsd ;;
508 ns32k-utek-sysv*) gdb_target=merlin ;;
509 ns32k-utek-*) gdb_target=umax ;;
510
511 pn-*-*) gdb_target=pn ;;
512 powerpc-*-macos*) gdb_target=macos ;;
513 powerpc-*-netware*) gdb_target=ppc-nw
514 configdirs="${configdirs} nlm" ;;
515
516 powerpc-*-aix4*) gdb_target=aix4 ;;
517 powerpc-*-aix*) gdb_target=aix ;;
518 powerpc-*-eabi*) if test x"$powerpc_sim" = x"yes"; then
519 gdb_target=ppc-sim
520 else
521 gdb_target=ppc-eabi
522 fi ;;
523 powerpcle-*-eabi*) if test x"$powerpc_sim" = x"yes"; then
524 gdb_target=ppcle-sim
525 else
526 gdb_target=ppcle-eabi
527 fi ;;
528
529 pyramid-*-*) gdb_target=pyramid ;;
530
531 rs6000-*-lynxos*) gdb_target=rs6000lynx ;;
532 rs6000-*-aix4*) gdb_target=aix4 ;;
533 rs6000-*-*) gdb_target=rs6000 ;;
534
535 sparc-*-aout*) gdb_target=sparc-em ;;
536 sparc-*-coff*) gdb_target=sparc-em ;;
537 sparc-*-elf*) gdb_target=sparc-em ;;
538 sparc-*-lynxos*) gdb_target=sparclynx
539 configdirs="${configdirs} gdbserver" ;;
540 sparc-*-netbsd*) gdb_target=nbsd ;;
541 sparc-*-solaris2*) gdb_target=sun4sol2 ;;
542 sparc-*-sunos4*) gdb_target=sun4os4 ;;
543 sparc-*-sunos5*) gdb_target=sun4sol2 ;;
544 sparc-*-vxworks*) gdb_target=vxsparc ;;
545 sparc-*-*) gdb_target=sun4os4 ;;
546 sparclite*-*-*) gdb_target=sparclite ;;
547 sparc64-*-*) gdb_target=sp64 ;;
548
549 tahoe-*-*) gdb_target=tahoe ;;
550
551 vax-*-*) gdb_target=vax ;;
552
553 w65-*-*) gdb_target=w65 ;;
554
555 z8k-*-coff*) gdb_target=z8k ;;
556
557 esac
558
559 dnl
560 changequote([,])dnl
561
562 frags=
563 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
564 if test ! -f ${host_makefile_frag}; then
565 AC_MSG_ERROR("*** Gdb does not support host ${host}")
566 fi
567 frags="$frags $host_makefile_frag"
568
569 target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
570 if test ! -f ${target_makefile_frag}; then
571 AC_MSG_ERROR("*** Gdb does not support target ${target}")
572 fi
573 frags="$frags $target_makefile_frag"
574
575 AC_SUBST_FILE(host_makefile_frag)
576 AC_SUBST_FILE(target_makefile_frag)
577 AC_SUBST(frags)
578
579 changequote(,)dnl
580 hostfile=`sed -n '
581 s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
582 ' ${host_makefile_frag}`
583
584 targetfile=`sed -n '
585 s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
586 ' ${target_makefile_frag}`
587
588 # these really aren't orthogonal true/false values of the same condition,
589 # but shells are slow enough that I like to reuse the test conditions
590 # whenever possible
591 if test "${target}" = "${host}"; then
592 nativefile=`sed -n '
593 s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
594 ' ${host_makefile_frag}`
595 else
596 # GDBserver is only useful in a "native" enviroment
597 configdirs=`echo $configdirs | sed 's/gdbserver//'`
598 fi
599 changequote([,])
600
601 # If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
602 # (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
603 # corresponding links. But we have to remove the xm.h files and tm.h
604 # files anyway, e.g. when switching from "configure host" to
605 # "configure none".
606
607 files=
608 links=
609 rm -f xm.h
610 if test "${hostfile}" != ""; then
611 files="${files} config/${gdb_host_cpu}/${hostfile}"
612 links="${links} xm.h"
613 fi
614 rm -f tm.h
615 if test "${targetfile}" != ""; then
616 files="${files} config/${gdb_target_cpu}/${targetfile}"
617 links="${links} tm.h"
618 fi
619 rm -f nm.h
620 if test "${nativefile}" != ""; then
621 files="${files} config/${gdb_host_cpu}/${nativefile}"
622 links="${links} nm.h"
623 else
624 # A cross-only configuration.
625 files="${files} config/nm-empty.h"
626 links="${links} nm.h"
627 fi
628 # start-sanitize-gdbtk
629
630 # Make it possible to use the GUI without doing a full install
631 if test "${enable_gdbtk}" = "yes" -a ! -f gdbtk.tcl ; then
632 files="${files} gdbtk.tcl"
633 links="${links} gdbtk.tcl"
634 fi
635 # end-sanitize-gdbtk
636
637 AC_LINK_FILES($files, $links)
638
639 AC_CONFIG_SUBDIRS($configdirs)
640 AC_OUTPUT(Makefile,
641 [
642 dnl Autoconf doesn't provide a mechanism for modifying definitions
643 dnl provided by makefile fragments.
644 dnl
645 if test "${nativefile}" = ""; then
646 sed -e '/^NATDEPFILES= /s//# NATDEPFILES= /' \
647 < Makefile > Makefile.tem
648 mv -f Makefile.tem Makefile
649 fi
650
651 changequote(,)dnl
652 sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
653 /^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
654 /^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
655 mv -f Makefile.tmp Makefile
656 changequote([,])dnl
657
658 case ${srcdir} in
659 .)
660 ;;
661 *)
662 grep "source ${srcdir}/.gdbinit" .gdbinit >/dev/null 2>/dev/null || \
663 echo "source ${srcdir}/.gdbinit" >> .gdbinit
664 esac
665 ],
666 [
667 gdb_host_cpu=$gdb_host_cpu
668 gdb_target_cpu=$gdb_target_cpu
669 nativefile=$nativefile
670 ])
671
672 exit 0
This page took 0.046097 seconds and 5 git commands to generate.