* inftarg.c (child_thread_alive): New function to see if a
[deliverable/binutils-gdb.git] / gdb / configure.in
CommitLineData
5436fc65
C
1dnl Process this file with autoconf to produce a configure script.
2AC_PREREQ(2.3)dnl
3AC_INIT(main.c)
4
5CC=${CC-cc}
6AC_PROG_CC
7AC_AIX
8AC_MINIX
9AC_ISC_POSIX
10
11AC_PROG_INSTALL
12AC_PROG_RANLIB
13
14AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
15AC_CANONICAL_SYSTEM
16AC_ARG_PROGRAM
17
18
19dnl Handle optional features that can be enabled.
20ENABLE_CFLAGS=
21ENABLE_CLIBS=
22ENABLE_OBS=
23
24AC_ARG_ENABLE(netrom,
25[ --enable-netrom ],
26[case "${enableval}" in
27yes) enable_netrom=yes ;;
28no) enable_netrom=no ;;
29*) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
30esac])
31
32if test "${enable_netrom}" = "yes"; then
33 ENABLE_OBS="${ENABLE_OBS} remote-nrom.o"
34fi
35
36# start-sanitize-gdbtk
37ENABLE_GDBTK=
38
39AC_ARG_ENABLE(gdbtk,
40[ --enable-gdbtk ],
41[case "${enableval}" in
42yes) enable_gdbtk=yes ;;
43no) enable_gdbtk=no ;;
44*) AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
45esac])
46
47if test "${enable_gdbtk}" = "yes"; then
48 AC_PATH_X
49 AC_PATH_XTRA
50
51 CYGNUS_PATH_TK
52 CYGNUS_PATH_TCL
53
54 ENABLE_GDBTK=1
55 ENABLE_CLIBS="${ENABLE_CLIBS} $(TCL) $(TK) $(X11) -lm"
56 ENABLE_OBS="${ENABLE_OBS} gdbtk.o"
57fi
58AC_SUBST(ENABLE_GDBTK)
59# end-sanitize-gdbtk
60
61AC_SUBST(ENABLE_CFLAGS)
62AC_SUBST(ENABLE_CLIBS)
63AC_SUBST(ENABLE_OBS)
6ec7e4d3 64
bc028766 65
6ec7e4d3
SS
66configdirs="doc testsuite"
67
5436fc65
C
68dnl
69changequote(,)dnl
0df06ca0 70
1a0edbc7
FF
71# Map host cpu into the config cpu subdirectory name.
72# The default is $host_cpu.
73
74case "${host_cpu}" in
75
76c[12]) gdb_host_cpu=convex ;;
77hppa*) gdb_host_cpu=pa ;;
7382b3b1 78i[345]86) gdb_host_cpu=i386 ;;
1a0edbc7 79m68*) gdb_host_cpu=m68k ;;
6ec7e4d3 80m88*) gdb_host_cpu=m88k ;;
1a0edbc7
FF
81np1) gdb_host_cpu=gould ;;
82pyramid) gdb_host_cpu=pyr ;;
c7b44b04 83powerpc*) gdb_host_cpu=powerpc ;;
1a0edbc7
FF
84*) gdb_host_cpu=$host_cpu ;;
85
86esac
87
6c815bbe
RP
88# map host info into gdb names.
89
19758e9e 90case "${host}" in
6c815bbe 91
19758e9e
JG
92a29k-*-*) gdb_host=ultra3 ;;
93
2592eef8
PS
94alpha-*-osf1*) gdb_host=alpha-osf1 ;;
95alpha-*-osf[23456789]*) gdb_host=alpha-osf2 ;;
7ccb1e44 96
19758e9e
JG
97arm-*-*) gdb_host=arm ;;
98
99c[12]-*-*) gdb_host=convex ;;
100
e8e13040 101hppa*-*-bsd*) gdb_host=hppabsd ;;
e8e13040 102hppa*-*-hiux*) gdb_host=hppahpux ;;
6ec7e4d3 103hppa*-*-hpux*) gdb_host=hppahpux ;;
2d2959e8 104hppa*-*-osf*) gdb_host=hppaosf ;;
19758e9e 105
7382b3b1
ILT
106i[345]86-ncr-*) gdb_host=ncr3000 ;;
107i[345]86-sequent-bsd*) gdb_host=symmetry ;; # dynix
108i[345]86-sequent-sysv4*) gdb_host=ptx4 ;;
109i[345]86-sequent-sysv*) gdb_host=ptx ;;
110i[345]86-*-aix*) gdb_host=i386aix ;;
111i[345]86-*-bsd*) gdb_host=i386bsd ;;
151d7f0a 112i[345]86-*-freebsd*) gdb_host=fbsd ;;
b40fa612 113i[345]86-*-netbsd*) gdb_host=nbsd ;;
7382b3b1
ILT
114i[345]86-*-go32*) gdb_host=go32 ;;
115i[345]86-*-linux*) gdb_host=linux ;;
116i[345]86-*-lynxos*) gdb_host=i386lynx ;;
117i[345]86-*-mach3*) gdb_host=i386m3 ;;
118i[345]86-*-mach*) gdb_host=i386mach ;;
119i[345]86-*-osf1mk*) gdb_host=osf1mk ;;
120i[345]86-*-sco3.2v4*) gdb_host=i386sco4 ;;
121i[345]86-*-sco*) gdb_host=i386sco ;;
122i[345]86-*-solaris*) gdb_host=i386sol2 ;;
123i[345]86-*-sunos*) gdb_host=sun386 ;;
124i[345]86-*-sysv3.2*) gdb_host=i386v32 ;;
125i[345]86-*-sysv32*) gdb_host=i386v32 ;;
126i[345]86-*-sysv4*) gdb_host=i386v4 ;;
127i[345]86-*-unixware) gdb_host=i386v4 ;;
128i[345]86-*-sysv*) gdb_host=i386v ;;
129i[345]86-*-isc*) gdb_host=i386v32 ;;
130i[345]86-*-os9k) gdb_host=i386os9k ;;
19758e9e 131
358ca35e
JG
132m680[01]0-sun-sunos3*) gdb_host=sun2os3 ;;
133m680[01]0-sun-sunos4*) gdb_host=sun2os4 ;;
ef131e13 134m68030-sony-*) gdb_host=news1000 ;;
19758e9e 135
358ca35e
JG
136m68*-altos-*) gdb_host=altos ;;
137m68*-apollo*-sysv*) gdb_host=apollo68v ;;
138m68*-apollo*-bsd*) gdb_host=apollo68b ;;
139m68*-att-*) gdb_host=3b1 ;;
0a8f1742 140m68*-bull*-sysv*) gdb_host=dpx2 ;;
8f59e92b
FF
141m68*-hp-bsd*) gdb_host=hp300bsd ;;
142m68*-hp-hpux*) gdb_host=hp300hpux ;;
358ca35e 143m68*-isi-*) gdb_host=isi ;;
9bebe500 144m68*-*-lynxos*) gdb_host=m68klynx ;;
670a8e09 145m68*-*-sysv4*) gdb_host=m68kv4 ;;
c649a7c2 146m68*-motorola-*) gdb_host=delta68 ;;
358ca35e
JG
147m68*-sony-*) gdb_host=news ;;
148m68*-sun-sunos3*) gdb_host=sun3os3 ;;
149m68*-sun-sunos4*) gdb_host=sun3os4 ;;
150m68*-sun-*) gdb_host=sun3os4 ;;
19758e9e 151
670a8e09 152m88*-harris-cxux*) gdb_host=cxux ;;
304977ab
JK
153m88*-motorola-sysv4*) gdb_host=delta88v4 ;;
154m88*-motorola-sysv*) gdb_host=delta88 ;;
6ec7e4d3 155m88*-*-mach3*) gdb_host=mach3 ;;
304977ab 156m88*-*-*) gdb_host=m88k ;;
19758e9e 157
6ec7e4d3 158mips-dec-mach3*) gdb_host=mach3 ;;
19758e9e
JG
159mips-dec-*) gdb_host=decstation ;;
160mips-little-*) gdb_host=littlemips ;;
3b891e0b 161mips-sgi-irix3*) gdb_host=irix3 ;;
81029114 162mips-sgi-irix4*) gdb_host=irix4 ;;
e03c0cc6 163mips-sgi-irix5*) gdb_host=irix5 ;;
b487ba2e 164mips-sony-*) gdb_host=news-mips ;;
6ec7e4d3 165mips-*-mach3*) gdb_host=mach3 ;;
2fe3b329 166mips-*-sysv4*) gdb_host=mipsv4 ;;
ee06f230 167mips-*-sysv*) gdb_host=riscos ;;
e8f8e093 168mips-*-riscos*) gdb_host=riscos ;;
19758e9e
JG
169
170none-*-*) gdb_host=none ;;
ef131e13 171
19758e9e
JG
172np1-*-*) gdb_host=np1 ;;
173
6ec7e4d3 174ns32k-*-mach3*) gdb_host=mach3 ;;
84f652b1 175ns32k-*-netbsd*) gdb_host=nbsd ;;
19758e9e 176ns32k-umax-*) gdb_host=umax ;;
3b891e0b 177ns32k-utek-sysv*) gdb_host=merlin ;;
19758e9e 178
19758e9e
JG
179pn-*-*) gdb_host=pn ;;
180
181pyramid-*-*) gdb_host=pyramid ;;
182
183romp-*-*) gdb_host=rtbsd ;;
184
d87d7b10 185rs6000-*-lynxos*) gdb_host=rs6000lynx ;;
19758e9e
JG
186rs6000-*-*) gdb_host=rs6000 ;;
187
9bebe500 188sparc-*-lynxos*) gdb_host=sparclynx ;;
331d515a 189sparc-*-netbsd*) gdb_host=nbsd ;;
ef131e13 190sparc-*-solaris2*) gdb_host=sun4sol2 ;;
ebb3a1e5 191sparc-*-sunos4*) gdb_host=sun4os4 ;;
1e1dd175 192sparc-*-sunos5*) gdb_host=sun4sol2 ;;
b52373a2 193sparc-*-*) gdb_host=sun4os4 ;;
19758e9e
JG
194
195tahoe-*-*) gdb_host=tahoe ;;
196
197vax-*-bsd*) gdb_host=vaxbsd ;;
6985bc54 198vax-*-ultrix2*) gdb_host=vaxult2 ;;
19758e9e 199vax-*-ultrix*) gdb_host=vaxult ;;
7da1e27d 200
d723ade7
SC
201w65-*-*) gdb_host=w65 ;;
202
6c815bbe
RP
203esac
204
8c7ae4a2 205
1a0edbc7
FF
206# Map target cpu into the config cpu subdirectory name.
207# The default is $target_cpu.
208
209case "${target_cpu}" in
210
cef4c2e7 211alpha) gdb_target_cpu=alpha ;;
1a0edbc7
FF
212c[12]) gdb_target_cpu=convex ;;
213hppa*) gdb_target_cpu=pa ;;
7382b3b1 214i[345]86) gdb_target_cpu=i386 ;;
1a0edbc7 215m68*) gdb_target_cpu=m68k ;;
6ec7e4d3 216m88*) gdb_target_cpu=m88k ;;
b60f6584 217mips*) gdb_target_cpu=mips ;;
1a0edbc7 218np1) gdb_target_cpu=gould ;;
c7b44b04 219powerpc*) gdb_target_cpu=powerpc ;;
1a0edbc7
FF
220pn) gdb_target_cpu=gould ;;
221pyramid) gdb_target_cpu=pyr ;;
2c30f258 222sparclite*) gdb_target_cpu=sparc
5436fc65 223 configdirs="${configdirs} sparclite" ;;
0c101d49 224sparc*) gdb_target_cpu=sparc ;;
1a0edbc7
FF
225*) gdb_target_cpu=$target_cpu ;;
226
227esac
228
229# map target info into gdb names.
230
ef131e13
JG
231case "${target}" in
232
3b891e0b
JK
233a29k-*-aout*) gdb_target=a29k ;;
234a29k-*-coff*) gdb_target=a29k ;;
235a29k-*-elf*) gdb_target=a29k ;;
236a29k-*-ebmon*) gdb_target=a29k ;;
237a29k-*-kern*) gdb_target=a29k-kern ;;
238a29k-*-none*) gdb_target=a29k ;;
239a29k-*-sym1*) gdb_target=ultra3 ;;
240a29k-*-udi*) gdb_target=a29k-udi ;;
83d9bb14 241a29k-*-vxworks*) gdb_target=vx29k ;;
ef131e13 242
cef4c2e7 243alpha-*-osf*) gdb_target=alpha-osf1 ;;
6ec7e4d3 244
c1ac88f9 245# start-sanitize-arc
83d9bb14 246arc-*-*) gdb_target=arc ;;
c1ac88f9
DE
247# end-sanitize-arc
248
ef131e13
JG
249arm-*-*) gdb_target=arm ;;
250
251c1-*-*) gdb_target=convex ;;
252c2-*-*) gdb_target=convex ;;
253
fb506180
SS
254h8300-*-*) gdb_target=h8300 ;;
255h8500-*-*) gdb_target=h8500 ;;
ef131e13 256
9faacb92
SC
257sh-*-*) gdb_target=sh ;;
258
03c4ce2f
MT
259# start-sanitize-r16
260r16-*-*) gdb_target=r16 ;;
261# end-sanitize-r16
262
8f59e92b 263hppa*-*-bsd*) gdb_target=hppabsd ;;
cc5702bd 264hppa*-*-pro*) gdb_target=hppapro ;;
8f59e92b 265hppa*-*-hpux*) gdb_target=hppahpux ;;
7079e766 266hppa*-*-hiux*) gdb_target=hppahpux ;;
6bfd168c 267hppa*-*-osf*) gdb_target=hppaosf ;;
ef131e13 268
7382b3b1
ILT
269i[345]86-sequent-bsd*) gdb_target=symmetry ;;
270i[345]86-sequent-sysv4*) gdb_target=ptx4 ;;
271i[345]86-sequent-sysv*) gdb_target=ptx ;;
272i[345]86-ncr-*) gdb_target=ncr3000 ;;
273i[345]86-*-aout*) gdb_target=i386aout ;;
274i[345]86-*-coff*) gdb_target=i386v ;;
275i[345]86-*-elf*) gdb_target=i386v ;;
276i[345]86-*-aix*) gdb_target=i386aix ;;
277i[345]86-*-bsd*) gdb_target=i386bsd ;;
151d7f0a 278i[345]86-*-freebsd*) gdb_target=fbsd ;;
b40fa612 279i[345]86-*-netbsd*) gdb_target=nbsd ;;
7382b3b1
ILT
280i[345]86-*-os9k) gdb_target=i386os9k ;;
281i[345]86-*-go32*) gdb_target=i386aout ;;
282i[345]86-*-lynxos*) gdb_target=i386lynx
5436fc65 283 configdirs="${configdirs} gdbserver" ;;
7382b3b1
ILT
284i[345]86-*-solaris*) gdb_target=i386sol2 ;;
285i[345]86-*-sunos*) gdb_target=sun386 ;;
286i[345]86-*-sysv4*) gdb_target=i386v4 ;;
287i[345]86-*-sco*) gdb_target=i386v ;;
288i[345]86-*-sysv*) gdb_target=i386v ;;
289i[345]86-*-linux*) gdb_target=linux ;;
290i[345]86-*-isc*) gdb_target=i386v ;;
291i[345]86-*-mach3*) gdb_target=i386m3 ;;
292i[345]86-*-mach*) gdb_target=i386mach ;;
293i[345]86-*-netware*) gdb_target=i386nw
5436fc65 294 configdirs="${configdirs} nlm" ;;
7382b3b1 295i[345]86-*-osf1mk*) gdb_target=i386mk ;;
ef131e13 296
3b891e0b
JK
297i960-*-bout*) gdb_target=vxworks960 ;;
298i960-*-coff*) gdb_target=nindy960 ;;
299i960-*-elf*) gdb_target=nindy960 ;;
ebb3a1e5 300
3b891e0b
JK
301i960-*-nindy*) gdb_target=nindy960 ;;
302i960-*-vxworks*) gdb_target=vxworks960 ;;
ef131e13 303
ebb3a1e5
JG
304m68000-*-sunos3*) gdb_target=sun2os3 ;;
305m68000-*-sunos4*) gdb_target=sun2os4 ;;
ef131e13 306
835fe6e6 307m68*-apollo*-bsd*) gdb_target=apollo68b ;;
6ec7e4d3 308m68*-bull-sysv*) gdb_target=dpx2 ;;
6ec7e4d3
SS
309m68*-hp-bsd*) gdb_target=hp300bsd ;;
310m68*-hp-hpux*) gdb_target=hp300hpux ;;
670a8e09
SS
311m68*-altos-*) gdb_target=altos ;;
312m68*-att-*) gdb_target=3b1 ;;
313m68*-cisco*-*) gdb_target=cisco ;;
314m68*-ericsson-*) gdb_target=es1800 ;;
358ca35e 315m68*-isi-*) gdb_target=isi ;;
c649a7c2 316m68*-motorola-*) gdb_target=delta68 ;;
358ca35e
JG
317m68*-netx-*) gdb_target=vxworks68 ;;
318m68*-sony-*) gdb_target=news ;;
319m68*-tandem-*) gdb_target=st2000 ;;
c1128340
RS
320m68*-rom68k-*) gdb_target=monitor ;;
321m68*-*bug-*) gdb_target=monitor ;;
322m68*-monitor-*) gdb_target=monitor ;;
a25a9f49 323m68*-est-*) gdb_target=est ;;
0ffba029
RS
324m68*-*-aout*) gdb_target=monitor ;;
325m68*-*-coff*) gdb_target=monitor ;;
326m68*-*-elf*) gdb_target=monitor ;;
9bebe500 327m68*-*-lynxos*) gdb_target=m68klynx
5436fc65 328 configdirs="${configdirs} gdbserver" ;;
3b891e0b 329m68*-*-os68k*) gdb_target=os68k ;;
358ca35e
JG
330m68*-*-sunos3*) gdb_target=sun3os3 ;;
331m68*-*-sunos4*) gdb_target=sun3os4 ;;
670a8e09 332m68*-*-sysv4*) gdb_target=m68kv4 ;;
358ca35e 333m68*-*-vxworks*) gdb_target=vxworks68 ;;
ef131e13 334
670a8e09 335m88*-harris-cxux*) gdb_target=cxux ;;
f9440640 336m88*-motorola-sysv4*) gdb_target=delta88v4 ;;
6ec7e4d3 337m88*-*-mach3*) gdb_target=mach3 ;;
304977ab
JK
338m88*-motorola-*) gdb_target=delta88 ;;
339m88*-*-*) gdb_target=m88k ;;
ef131e13 340
70126bf9 341mips64*-big-*) gdb_target=bigmips64 ;;
b60f6584 342mips*-big-*) gdb_target=bigmips ;;
6ec7e4d3 343mips*-dec-mach3*) gdb_target=mach3 ;;
b60f6584 344mips*-dec-*) gdb_target=decstation ;;
70126bf9
KH
345mips64*el-*-ecoff*) gdb_target=idtl64 ;;
346mips64*-idt-ecoff*) gdb_target=idt64 ;;
347mips64*el-*-elf*) gdb_target=idtl64 ;;
348mips64*-*-elf*) gdb_target=idt64 ;;
b60f6584 349mips*el-*-ecoff*) gdb_target=idtl ;;
2e1b3b03 350mips*-*-ecoff*) gdb_target=idt ;;
b60f6584
ILT
351mips*el-*-elf*) gdb_target=idtl ;;
352mips*-*-elf*) gdb_target=idt ;;
353mips*-little-*) gdb_target=littlemips ;;
354mips*-sgi-irix5*) gdb_target=irix5 ;;
355mips*-sgi-*) gdb_target=irix3 ;;
356mips*-sony-*) gdb_target=bigmips ;;
6ec7e4d3 357mips*-*-mach3*) gdb_target=mach3 ;;
2fe3b329 358mips*-*-sysv4*) gdb_target=mipsv4 ;;
b60f6584
ILT
359mips*-*-sysv*) gdb_target=bigmips ;;
360mips*-*-riscos*) gdb_target=bigmips ;;
ef131e13
JG
361
362none-*-*) gdb_target=none ;;
363
364np1-*-*) gdb_target=np1 ;;
365
6ec7e4d3 366ns32k-*-mach3*) gdb_target=mach3 ;;
84f652b1 367ns32k-*-netbsd*) gdb_target=nbsd ;;
3b891e0b 368ns32k-utek-sysv*) gdb_target=merlin ;;
ef131e13
JG
369ns32k-utek-*) gdb_target=umax ;;
370
371pn-*-*) gdb_target=pn ;;
b7da2494
SG
372powerpc-*-netware*) gdb_target=ppc-nw
373 configdirs="${configdirs} nlm" ;;
ef131e13 374
97544048
MM
375powerpc-*-eabi*) gdb_target=ppc-eabi
376 configdirs="${configdirs}" ;;
377
c7b44b04
MM
378powerpcle-*-eabi*) gdb_target=ppcle-eabi
379 configdirs="${configdirs}" ;;
380
ef131e13
JG
381pyramid-*-*) gdb_target=pyramid ;;
382
d87d7b10 383rs6000-*-lynxos*) gdb_target=rs6000lynx ;;
ef131e13
JG
384rs6000-*-*) gdb_target=rs6000 ;;
385
3b891e0b
JK
386sparc-*-aout*) gdb_target=sparc-em ;;
387sparc-*-coff*) gdb_target=sparc-em ;;
388sparc-*-elf*) gdb_target=sparc-em ;;
9bebe500 389sparc-*-lynxos*) gdb_target=sparclynx
5436fc65 390 configdirs="${configdirs} gdbserver" ;;
331d515a 391sparc-*-netbsd*) gdb_target=nbsd ;;
ef131e13 392sparc-*-solaris2*) gdb_target=sun4sol2 ;;
ebb3a1e5 393sparc-*-sunos4*) gdb_target=sun4os4 ;;
1e1dd175 394sparc-*-sunos5*) gdb_target=sun4sol2 ;;
54d44c8c 395sparc-*-vxworks*) gdb_target=vxsparc ;;
b52373a2 396sparc-*-*) gdb_target=sun4os4 ;;
0c101d49 397sparclite*-*-*) gdb_target=sparclite ;;
6ec7e4d3 398sparc64-*-*) gdb_target=sp64 ;;
ef131e13
JG
399
400tahoe-*-*) gdb_target=tahoe ;;
6ec7e4d3 401
ef131e13 402vax-*-*) gdb_target=vax ;;
6c815bbe 403
d723ade7
SC
404w65-*-*) gdb_target=w65 ;;
405
fb506180
SS
406z8k-*-sim*) gdb_target=z8k ;;
407z8k-*-coff*) gdb_target=z8k ;;
6ec7e4d3 408
6c815bbe
RP
409esac
410
5436fc65
C
411dnl
412changequote([,])dnl
413
414
415host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
416if test ! -f ${host_makefile_frag}; then
417AC_MSG_ERROR("*** Gdb does not support host ${host}")
912e0732
RP
418fi
419
5436fc65
C
420target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
421if test ! -f ${target_makefile_frag}; then
422AC_MSG_ERROR("*** Gdb does not support target ${target}")
912e0732
RP
423fi
424
5436fc65
C
425dnl We have to assign the same value to other variables because autoconf
426dnl doesn't provide a mechanism to substitute a replacement keyword with
427dnl arbitrary data or pathnames.
428dnl
429host_makefile_frag_path=$host_makefile_frag
430target_makefile_frag_path=$target_makefile_frag
431AC_SUBST(host_makefile_frag_path)
432AC_SUBST(target_makefile_frag_path)
433AC_SUBST_FILE(host_makefile_frag)
434AC_SUBST_FILE(target_makefile_frag)
435
094fd4ae
C
436changequote(,)dnl
437hostfile=`sed -n '
438s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
439' ${host_makefile_frag}`
5436fc65 440
094fd4ae
C
441targetfile=`sed -n '
442s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
443' ${target_makefile_frag}`
79f68f0f
DZ
444
445# these really aren't orthogonal true/false values of the same condition,
446# but shells are slow enough that I like to reuse the test conditions
447# whenever possible
5436fc65 448if test "${target}" = "${host}"; then
094fd4ae
C
449nativefile=`sed -n '
450s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
451' ${host_makefile_frag}`
79f68f0f 452else
5436fc65
C
453# GDBserver is only useful in a "native" enviroment
454configdirs=`echo $configdirs | sed 's/gdbserver//'`
d40309c7 455fi
094fd4ae 456changequote([,])
d40309c7 457
d40309c7 458# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
6573c898 459# (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
d40309c7
JG
460# corresponding links. But we have to remove the xm.h files and tm.h
461# files anyway, e.g. when switching from "configure host" to
462# "configure none".
463
bdf3621b
JG
464files=
465links=
dc0c3f64 466rm -f xm.h
5436fc65
C
467if test "${hostfile}" != ""; then
468files="${files} config/${gdb_host_cpu}/${hostfile}"
469links="${links} xm.h"
bdf3621b 470fi
dc0c3f64 471rm -f tm.h
5436fc65
C
472if test "${targetfile}" != ""; then
473files="${files} config/${gdb_target_cpu}/${targetfile}"
474links="${links} tm.h"
bdf3621b 475fi
1a0edbc7 476rm -f nm.h
5436fc65
C
477if test "${nativefile}" != ""; then
478files="${files} config/${gdb_host_cpu}/${nativefile}"
479links="${links} nm.h"
c9c23412 480else
5436fc65
C
481# A cross-only configuration.
482files="${files} config/nm-empty.h"
483links="${links} nm.h"
d40309c7 484fi
d3d75ec9 485# start-sanitize-gdbtk
912e0732 486
5436fc65
C
487# Make it possible to use the GUI without doing a full install
488if test "${enable_gdbtk}" = "yes" -a ! -f gdbtk.tcl ; then
489files="${files} gdbtk.tcl"
490links="${links} gdbtk.tcl"
754e5da2 491fi
d3d75ec9 492# end-sanitize-gdbtk
754e5da2 493
5436fc65
C
494AC_LINK_FILES($files, $links)
495
496AC_CONFIG_SUBDIRS($configdirs)
497AC_OUTPUT(Makefile,
498[
499dnl Autoconf doesn't provide a mechanism for modifying definitions
500dnl provided by makefile fragments.
501dnl
502if test "${nativefile}" = ""; then
503sed -e '/^NATDEPFILES= /s//# NATDEPFILES= /' \
504 < Makefile > Makefile.tem
505mv -f Makefile.tem Makefile
33bc979d
SS
506fi
507
5436fc65 508changequote(,)dnl
94d4b713
JK
509sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
510/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
511/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
512mv -f Makefile.tmp Makefile
5436fc65
C
513changequote([,])dnl
514
515case ${srcdir} in
516.)
517;;
518*)
519grep "source ${srcdir}/.gdbinit" .gdbinit >/dev/null 2>/dev/null || \
520echo "source ${srcdir}/.gdbinit" >> .gdbinit
521esac
0a5a1821
C
522],
523[
524gdb_host_cpu=$gdb_host_cpu
525gdb_target_cpu=$gdb_target_cpu
526nativefile=$nativefile
5436fc65 527])
This page took 0.209693 seconds and 4 git commands to generate.