2002-12-13 Jeff Johnston <jjohnstn@redhat.com>
[deliverable/binutils-gdb.git] / gdb / configure.in
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
7e89e357 2dnl Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
b6ba6518 3dnl Free Software Foundation, Inc.
c906108c
SS
4dnl
5dnl This file is part of GDB.
6dnl
7dnl This program is free software; you can redistribute it and/or modify
8dnl it under the terms of the GNU General Public License as published by
9dnl the Free Software Foundation; either version 2 of the License, or
10dnl (at your option) any later version.
11dnl
12dnl This program is distributed in the hope that it will be useful,
13dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
14dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15dnl GNU General Public License for more details.
16dnl
17dnl You should have received a copy of the GNU General Public License
18dnl along with this program; if not, write to the Free Software
19dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21dnl Process this file with autoconf to produce a configure script.
22
23AC_PREREQ(2.13)dnl
24AC_INIT(main.c)
25AC_CONFIG_HEADER(config.h:config.in)
413ccac7 26AM_MAINTAINER_MODE
c906108c
SS
27
28AC_PROG_CC
29AC_AIX
30AC_ISC_POSIX
31AM_PROG_CC_STDC
32
33AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
34AC_CANONICAL_SYSTEM
35
0fbb3da7 36dnl Set up for gettext. PACKAGE is used when we call bindtextdomain.
c906108c
SS
37ALL_LINGUAS=
38CY_GNU_GETTEXT
0fbb3da7
TT
39AC_DEFINE(PACKAGE, "gdb", [Name of this package. ])
40
c906108c
SS
41
42dnl List of object files added by configure.
43
44CONFIG_OBS=
66b965bb 45CONFIG_LIB_OBS=
c906108c
SS
46CONFIG_DEPS=
47CONFIG_SRCS=
fb40c209
AC
48CONFIG_INITS=
49ENABLE_CFLAGS=
b3a90332
AC
50CONFIG_ALL=
51CONFIG_CLEAN=
e56ac5c3
AC
52CONFIG_INSTALL=
53CONFIG_UNINSTALL=
c906108c 54
ffc6a242 55SUBDIRS="doc testsuite nlm"
c906108c
SS
56configdirs="doc testsuite"
57
96baa820
JM
58AC_ARG_ENABLE(multi-ice,
59[ --enable-multi-ice Build the multi-ice-gdb-server],
60[case "${enableval}" in
61 yes ) enable_multi_ice="yes" ;;
62 no) enable_multi_ice="no" ;;
63 *) AC_MSG_ERROR(Bad value for --enable-multi-ice: ${enableval}) ;;
64 esac
65])
66
67if test "${enable_multi_ice}" = "yes"; then
68 configdirs="${configdirs} multi-ice"
69fi
70
c906108c
SS
71dnl
72changequote(,)dnl
73
74. ${srcdir}/configure.host
75
76. ${srcdir}/configure.tgt
77
1ba607ad
AC
78targ=${target} ; . ${srcdir}/../bfd/config.bfd
79
c906108c
SS
80dnl
81changequote([,])dnl
82
1ba607ad
AC
83dnl use BFD to determine the default architecture and byte order
84dnl (bfd_vec->byteorder provides the latter).
85targ=${target}
86. ${srcdir}/../bfd/config.bfd
5c8cc331
AC
87
88dnl We only want the first arch, if there is more than one.
89targ_archs=`echo ${targ_archs} | sed -e 's/ .*//;'`
90
1ba607ad
AC
91if test x"${targ_archs}" != x ; then
92 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, ${targ_archs})
93fi
94if test x"${targ_defvec}" != x ; then
95 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, ${targ_defvec})
96fi
97
7a292a7a 98AC_PROG_AWK
c906108c
SS
99AC_PROG_INSTALL
100AC_CHECK_TOOL(AR, ar)
101AC_CHECK_TOOL(RANLIB, ranlib, :)
95ca63c4
CF
102AC_CHECK_TOOL(DLLTOOL, dlltool)
103AC_CHECK_TOOL(WINDRES, windres)
c906108c
SS
104AC_PROG_YACC
105
75c6e08a
MK
106dnl MiG is needed for the Hurd.
107AC_CHECK_TOOL(MIG, mig)
108
c906108c
SS
109AC_ARG_PROGRAM
110
111AC_TYPE_SIGNAL
112
113AC_HEADER_STDC
114
6abadcf8
ND
115dnl Solaris 7 needs _MSE_INT_H defined to avoid a clash between <widec.h>
116dnl and <wchar.h> that causes AC_CHECK_HEADERS to think <curses.h> doesn't
117dnl exist.
118
3e0bf9f1 119case $host_os in solaris2.7 | solaris2.8) case "$GCC" in yes)
6abadcf8
ND
120 AC_DEFINE(_MSE_INT_H)
121esac; esac
122
9299404e 123AC_CHECK_HEADERS(ctype.h nlist.h link.h thread_db.h proc_service.h \
c906108c 124 memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
f15f768e 125 string.h sys/procfs.h sys/proc.h sys/ptrace.h sys/reg.h stdint.h \
c906108c 126 term.h termio.h termios.h unistd.h wait.h sys/wait.h \
104c1213 127 wchar.h wctype.h asm/debugreg.h sys/debugreg.h sys/select.h \
596c9d4b 128 time.h sys/file.h sys/ioctl.h sys/user.h sys/fault.h sys/syscall.h \
0cf3e697 129 dirent.h sys/ndir.h sys/dir.h ndir.h sys/filio.h \
409a3f64
AC
130 curses.h ncurses.h \
131 poll.h sys/poll.h)
c906108c
SS
132AC_HEADER_STAT
133
134AC_C_CONST
bce58c09 135AC_C_INLINE
c906108c 136
27aac7ff
AC
137AC_CHECK_FUNCS(bcopy btowc bzero canonicalize_file_name isascii poll \
138 realpath sbrk setpgid setpgrp sigaction sigprocmask sigsetmask )
c906108c 139AC_FUNC_ALLOCA
46711df8 140AC_FUNC_VFORK
72473524
DJ
141dnl AC_FUNC_SETPGRP does not work when cross compiling
142dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
143if test "$cross_compiling" = no; then
144 AC_FUNC_SETPGRP
145else
146 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
147 [AC_TRY_COMPILE([
148#include <unistd.h>
149], [
150 if (setpgrp(1,1) == -1)
151 exit (0);
152 else
153 exit (1);
154], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
155if test $ac_cv_func_setpgrp_void = yes; then
156 AC_DEFINE(SETPGRP_VOID, 1)
157fi
158fi
c906108c 159
2b2d558c
MK
160# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
161# since sigsetjmp might only be defined as a macro.
162AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
163[AC_TRY_COMPILE([
164#include <setjmp.h>
165], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
166gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
167if test $gdb_cv_func_sigsetjmp = yes; then
168 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
169fi
170
0afdd437 171# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 172# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
422ea4b8 173AC_CACHE_CHECK([for r_fs in struct reg], gdb_cv_struct_reg_r_fs,
7dfa765c 174[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_fs;],
422ea4b8
MK
175gdb_cv_struct_reg_r_fs=yes, gdb_cv_struct_reg_r_fs=no)])
176if test $gdb_cv_struct_reg_r_fs = yes; then
177 AC_DEFINE(HAVE_STRUCT_REG_R_FS)
7dfa765c 178fi
422ea4b8 179AC_CACHE_CHECK([for r_gs in struct reg], gdb_cv_struct_reg_r_gs,
7dfa765c 180[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_gs;],
422ea4b8
MK
181gdb_cv_struct_reg_r_gs=yes, gdb_cv_struct_reg_r_gs=no)])
182if test $gdb_cv_struct_reg_r_gs = yes; then
183 AC_DEFINE(HAVE_STRUCT_REG_R_GS)
7dfa765c
MK
184fi
185
0afdd437 186# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
187AC_MSG_CHECKING(for PTRACE_GETREGS)
188AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
189[AC_TRY_COMPILE([#include <sys/ptrace.h>],
190 [PTRACE_GETREGS;],
191 [gdb_cv_have_ptrace_getregs=yes],
192 [gdb_cv_have_ptrace_getregs=no])])
193AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
194if test $gdb_cv_have_ptrace_getregs = yes; then
195 AC_DEFINE(HAVE_PTRACE_GETREGS)
196fi
197
0afdd437 198# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
199AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
200AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 201[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
202 [PTRACE_GETFPXREGS;],
203 [gdb_cv_have_ptrace_getfpxregs=yes],
204 [gdb_cv_have_ptrace_getfpxregs=no])])
205AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
206if test $gdb_cv_have_ptrace_getfpxregs = yes; then
207 AC_DEFINE(HAVE_PTRACE_GETFPXREGS)
5c44784c
JM
208fi
209
0afdd437
MK
210# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
211AC_MSG_CHECKING(for PT_GETDBREGS)
212AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
213[AC_TRY_COMPILE([#include <sys/types.h>
214#include <sys/ptrace.h>],
215 [PT_GETDBREGS;],
216 [gdb_cv_have_pt_getdbregs=yes],
217 [gdb_cv_have_pt_getdbregs=no])])
218AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
219if test $gdb_cv_have_pt_getdbregs = yes; then
220 AC_DEFINE(HAVE_PT_GETDBREGS)
221fi
222
7e89e357
JT
223# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
224AC_MSG_CHECKING(for PT_GETXMMREGS)
225AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
226[AC_TRY_COMPILE([#include <sys/types.h>
227#include <sys/ptrace.h>],
228 [PT_GETXMMREGS;],
229 [gdb_cv_have_pt_getxmmregs=yes],
230 [gdb_cv_have_pt_getxmmregs=no])])
231AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
232if test $gdb_cv_have_pt_getxmmregs = yes; then
233 AC_DEFINE(HAVE_PT_GETXMMREGS)
234fi
235
0afdd437 236
7be570e7
JM
237AC_CHECK_LIB(socket, socketpair)
238AC_CHECK_FUNCS(socketpair)
239
240
c906108c
SS
241BFD_NEED_DECLARATION(malloc)
242BFD_NEED_DECLARATION(realloc)
243BFD_NEED_DECLARATION(free)
244BFD_NEED_DECLARATION(strerror)
245BFD_NEED_DECLARATION(strdup)
b83266a0 246BFD_NEED_DECLARATION(strstr)
a4db0f07 247BFD_NEED_DECLARATION(canonicalize_file_name)
c906108c
SS
248
249# The following save_state_t checkery is only necessary for HPUX
250# versions earlier than 10.20. When those fade from memory, this
251# could be expunged. --jsm 1999-03-22
252
253AC_MSG_CHECKING(for HPUX save_state structure)
254AC_EGREP_HEADER(save_state_t, machine/save_state.h,
255 gdb_cv_hpux_savestate=yes, gdb_cv_hpux_savestate=no)
256AC_EGREP_HEADER(ss_wide, machine/save_state.h, gdb_cv_hpux_sswide=yes,
257 gdb_cv_hpux_sswide=no)
258if test $gdb_cv_hpux_savestate = yes
259then
260 AC_DEFINE(HAVE_STRUCT_SAVE_STATE_T, 1)
261fi
262if test $gdb_cv_hpux_sswide = yes
263then
264 AC_DEFINE(HAVE_STRUCT_MEMBER_SS_WIDE, 1)
265fi
266AC_MSG_RESULT($gdb_cv_hpux_sswide)
267
268
269# If we are configured native on GNU/Linux, work around problems with
270# sys/procfs.h
c3f6f71d 271# Also detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
272
273if test "${target}" = "${host}"; then
274 case "${host}" in
275 i[[3456]]86-*-linux*)
276 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
277 AC_DEFINE(sys_quotactl)
278 ;;
596c9d4b
KB
279 ia64-*-aix*)
280 AC_DEFINE(NEW_PROC_API)
281 ;;
1045b512 282 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
c3f6f71d
JM
283 AC_DEFINE(NEW_PROC_API)
284 ;;
3423db82 285 *-*-solaris2.[[678]])
c3f6f71d
JM
286 AC_DEFINE(NEW_PROC_API)
287 ;;
c906108c 288 esac
c906108c
SS
289fi
290
291if test "$ac_cv_header_sys_procfs_h" = yes; then
292 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
293 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
294 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
295 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
296 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
297 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
298 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
299 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
300 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
301 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
302 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
303 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
304 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
305 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 306
23e04971 307
d84dd0c5
MK
308 dnl Check for broken prfpregset_t type
309
310 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
311 dnl prfpregset_t type (it's a typedef for the pointer to a struct
312 dnl instead of the struct itself). We detect this here, and work
a3007b6f 313 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
314
315 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
316 AC_MSG_CHECKING(whether prfpregset_t type is broken)
317 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
318 [AC_TRY_RUN([#include <sys/procfs.h>
319 int main ()
320 {
321 if (sizeof (prfpregset_t) == sizeof (void *))
322 return 1;
323 return 0;
324 }],
325 gdb_cv_prfpregset_t_broken=no,
326 gdb_cv_prfpregset_t_broken=yes,
327 gdb_cv_prfpregset_t_broken=yes)])
328 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
329 if test $gdb_cv_prfpregset_t_broken = yes; then
330 AC_DEFINE(PRFPREGSET_T_BROKEN)
331 fi
332 fi
333
c906108c
SS
334 dnl Check for PIOCSET ioctl entry
335
336 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
337 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
338 [AC_TRY_COMPILE([#include <unistd.h>
339#include <sys/types.h>
340#include <sys/procfs.h>
341], [
342 int dummy;;
343 dummy = ioctl(0, PIOCSET, &dummy);
344 ],
345 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
346 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
347 if test $gdb_cv_have_procfs_piocset = yes; then
348 AC_DEFINE(HAVE_PROCFS_PIOCSET)
349 fi
350fi
351
d45fe813
KB
352dnl For native ports (host == target), check to see what kind of
353dnl legacy link.h support is needed. (See solib-legacy.c.)
354if test ${host} = ${target} ; then
355 dnl Check for struct link_map with l_ members which are indicative
356 dnl of SVR4-like shared libraries
357
358 AC_MSG_CHECKING(for member l_addr in struct link_map)
359 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
360 [AC_TRY_COMPILE([#include <link.h>],
361 [struct link_map lm; (void) lm.l_addr;],
362 gdb_cv_have_struct_link_map_with_l_members=yes,
363 gdb_cv_have_struct_link_map_with_l_members=no)])
364 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
365 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
366 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
367 fi
368
369 dnl Check for struct link_map with lm_ members which are indicative
370 dnl of SunOS-like shared libraries
371
372 AC_MSG_CHECKING(for member lm_addr in struct link_map)
373 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
374 [AC_TRY_COMPILE([#include <sys/types.h>
375#include <link.h>],
376 [struct link_map lm; (void) lm.lm_addr;],
377 gdb_cv_have_struct_link_map_with_lm_members=yes,
378 gdb_cv_have_struct_link_map_with_lm_members=no)])
379 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
380 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
381 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
382 fi
383
384 dnl Check for struct so_map with som_ members which are found on
385 dnl some *BSD systems.
386
387 AC_MSG_CHECKING(for member som_addr in struct so_map)
388 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
389 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
390#ifdef HAVE_NLIST_H
391#include <nlist.h>
392#endif
d45fe813
KB
393#include <link.h>],
394 [struct so_map lm; (void) lm.som_addr;],
395 gdb_cv_have_struct_so_map_with_som_members=yes,
396 gdb_cv_have_struct_so_map_with_som_members=no)])
397 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
398 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
399 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS)
400 fi
401
402 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
403 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
404
405 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
406 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
407 [AC_TRY_COMPILE([#define _SYSCALL32
408#include <sys/link.h>], [struct link_map32 l;],
409 gdb_cv_have_struct_link_map32=yes,
410 gdb_cv_have_struct_link_map32=no)])
411 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
412 if test $gdb_cv_have_struct_link_map32 = yes; then
413 AC_DEFINE(HAVE_STRUCT_LINK_MAP32)
943c9c25 414 AC_DEFINE(_SYSCALL32)
d45fe813
KB
415 fi
416fi
417
c906108c
SS
418dnl See if host has libm. This is usually needed by simulators.
419AC_CHECK_LIB(m, main)
420
421dnl Solaris puts wctype in /usr/lib/libw.a before Solaris 2.6.
422dnl
423dnl A bug in GNU ld 2.9.1 causes a problem if we link in -lw
424dnl under Solaris 2.6 because it is some funky empty library.
425dnl So only link in libw if we have to.
426AC_CHECK_LIB(c, wctype,: ,AC_CHECK_LIB(w, wctype))
427
428dnl See if compiler supports "long long" type.
429
430AC_MSG_CHECKING(for long long support in compiler)
431AC_CACHE_VAL(gdb_cv_c_long_long,
432[AC_TRY_COMPILE(, [
433 extern long long foo;
434 switch (foo & 2) { case 0: return 1; }
435],
436gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
437AC_MSG_RESULT($gdb_cv_c_long_long)
438if test $gdb_cv_c_long_long = yes; then
439 AC_DEFINE(CC_HAS_LONG_LONG)
440fi
441
442dnl See if the compiler and runtime support printing long long
443
444AC_MSG_CHECKING(for long long support in printf)
445AC_CACHE_VAL(gdb_cv_printf_has_long_long,
446[AC_TRY_RUN([
447int main () {
448 char buf[32];
449 long long l = 0;
450 l = (l << 16) + 0x0123;
451 l = (l << 16) + 0x4567;
452 l = (l << 16) + 0x89ab;
453 l = (l << 16) + 0xcdef;
454 sprintf (buf, "0x%016llx", l);
455 return (strcmp ("0x0123456789abcdef", buf));
456}],
457gdb_cv_printf_has_long_long=yes,
458gdb_cv_printf_has_long_long=no,
459gdb_cv_printf_has_long_long=no)])
460if test $gdb_cv_printf_has_long_long = yes; then
461 AC_DEFINE(PRINTF_HAS_LONG_LONG)
462fi
463AC_MSG_RESULT($gdb_cv_printf_has_long_long)
464
465dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
466dnl because autoconf complains about cross-compilation issues. However, this
467dnl code uses the same variables as the macro for compatibility.
468
469AC_MSG_CHECKING(for long double support in compiler)
470AC_CACHE_VAL(ac_cv_c_long_double,
471[AC_TRY_COMPILE(, [long double foo;],
472ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
473AC_MSG_RESULT($ac_cv_c_long_double)
474if test $ac_cv_c_long_double = yes; then
475 AC_DEFINE(HAVE_LONG_DOUBLE)
476fi
477
478dnl See if the compiler and runtime support printing long doubles
479
480AC_MSG_CHECKING(for long double support in printf)
481AC_CACHE_VAL(gdb_cv_printf_has_long_double,
482[AC_TRY_RUN([
483int main () {
484 char buf[16];
485 long double f = 3.141592653;
486 sprintf (buf, "%Lg", f);
487 return (strncmp ("3.14159", buf, 7));
488}],
489gdb_cv_printf_has_long_double=yes,
490gdb_cv_printf_has_long_double=no,
491gdb_cv_printf_has_long_double=no)])
492if test $gdb_cv_printf_has_long_double = yes; then
493 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
494fi
495AC_MSG_RESULT($gdb_cv_printf_has_long_double)
496
497dnl See if the compiler and runtime support scanning long doubles
498
499AC_MSG_CHECKING(for long double support in scanf)
500AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
501[AC_TRY_RUN([
502int main () {
503 char *buf = "3.141592653";
504 long double f = 0;
505 sscanf (buf, "%Lg", &f);
506 return !(f > 3.14159 && f < 3.14160);
507}],
508gdb_cv_scanf_has_long_double=yes,
509gdb_cv_scanf_has_long_double=no,
510gdb_cv_scanf_has_long_double=no)])
511if test $gdb_cv_scanf_has_long_double = yes; then
512 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
513fi
514AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
515
516AC_FUNC_MMAP
517
438013df
AO
518case ${host_os} in
519aix*)
520 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
521 SAVE_LDFLAGS=$LDFLAGS
522
523 case $GCC in
524 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
525 *) gdb_cv_bigtoc=-bbigtoc ;;
526 esac
527
528 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
529 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
530 ])
531 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
532 ;;
533esac
534
c906108c 535
d92419e5
JB
536dnl For certain native configurations, we need to check whether thread
537dnl support can be built in or not.
538dnl
539dnl Note that we only want this if we are both native (host == target),
540dnl and not doing a canadian cross build (build == host).
c906108c
SS
541
542if test ${build} = ${host} -a ${host} = ${target} ; then
543 case ${host_os} in
544 hpux*)
545 AC_MSG_CHECKING(for HPUX/OSF thread support)
546 if test -f /usr/include/dce/cma_config.h ; then
547 if test "$GCC" = "yes" ; then
548 AC_MSG_RESULT(yes)
549 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
66b965bb 550 CONFIG_LIB_OBS="${CONFIG_LIB_OBS} hpux-thread.o"
c906108c
SS
551 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
552 else
553 AC_MSG_RESULT(no (suppressed because you are not using GCC))
554 fi
555 else
556 AC_MSG_RESULT(no)
557 fi
558 ;;
559 solaris*)
d92419e5
JB
560 # See if thread_db library is around for Solaris thread debugging.
561 # Note that we must explicitly test for version 1 of the library
562 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
563 # the same API.
c906108c
SS
564 AC_MSG_CHECKING(for Solaris thread debugging library)
565 if test -f /usr/lib/libthread_db.so.1 ; then
566 AC_MSG_RESULT(yes)
567 AC_DEFINE(HAVE_THREAD_DB_LIB)
66b965bb 568 CONFIG_LIB_OBS="${CONFIG_LIB_OBS} sol-thread.o"
c906108c
SS
569 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
570 AC_CHECK_LIB(dl, dlopen)
571 if test "$GCC" = "yes" ; then
572 # The GNU linker requires the -export-dynamic option to make
573 # all symbols visible in the dynamic symbol table.
574 hold_ldflags=$LDFLAGS
575 AC_MSG_CHECKING(for the ld -export-dynamic flag)
576 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
577 AC_TRY_LINK(, [int i;], found=yes, found=no)
578 LDFLAGS=$hold_ldflags
579 AC_MSG_RESULT($found)
580 if test $found = yes; then
581 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
582 fi
583 fi
584 # Sun randomly tweaked the prototypes in <proc_service.h>
585 # at one point.
586 AC_MSG_CHECKING(if <proc_service.h> is old)
587 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
588 AC_TRY_COMPILE([
589 #include <proc_service.h>
590 ps_err_e ps_pdwrite
591 (struct ps_prochandle*, psaddr_t, const void*, size_t);
592 ],, gdb_cv_proc_service_is_old=no,
593 gdb_cv_proc_service_is_old=yes)
594 ])
595 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
596 if test $gdb_cv_proc_service_is_old = yes; then
597 AC_DEFINE(PROC_SERVICE_IS_OLD)
598 fi
599 else
600 AC_MSG_RESULT(no)
601 fi
602 ;;
d92419e5
JB
603 aix*)
604 AC_MSG_CHECKING(for AiX thread debugging library)
605 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
606 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
607 [#ifndef PTHDB_VERSION_3
608 #error
609 #endif],
610 gdb_cv_have_aix_thread_debug=yes,
611 gdb_cv_have_aix_thread_debug=no)])
612 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
613 if test $gdb_cv_have_aix_thread_debug = yes; then
614 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
615 CONFIG_LIB_OBS="${CONFIG_LIB_OBS} aix-thread.o"
616 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
617 fi
618 ;;
c906108c
SS
619 esac
620 AC_SUBST(CONFIG_LDFLAGS)
621fi
622
3f47be5c
EZ
623dnl See if we have a thread_db header file that has TD_NOTALLOC.
624if test "x$ac_cv_header_thread_db_h" = "xyes"; then
625 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
626 gdb_cv_thread_db_h_has_td_notalloc,
627 AC_TRY_COMPILE(
628 [#include <thread_db.h>],
629 [int i = TD_NOTALLOC;],
630 gdb_cv_thread_db_h_has_td_notalloc=yes,
631 gdb_cv_thread_db_h_has_td_notalloc=no
632 )
633 )
634fi
635if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
636 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
637 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
638fi
639
eb784848
DJ
640dnl linux-proc.c wants to use pread64, which may require special CFLAGS
641dnl -D_BSD_SOURCE is normally assumed but we have to specify it because of
642dnl -D_XOPEN_SOURCE=500.
643if test $host = $target; then
644 case $target in
645 *-linux*)
646 save_CFLAGS=$CFLAGS
647 CFLAGS="$CFLAGS -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_LARGEFILE64_SOURCE"
648 AC_TRY_LINK([#include <unistd.h>],
649 [pread64 (0, NULL, 0, 0);],
650 [ENABLE_CFLAGS="$ENABLE_CFLAGS -D_BSD_SOURCE -D_XOPEN_SOURCE=500 -D_LARGEFILE64_SOURCE"
651 AC_DEFINE(HAVE_PREAD64)], [])
652 CFLAGS=$save_CFLAGS
653 ;;
654 esac
655fi
656
d318976c
FN
657dnl The CLI cannot be disabled yet, but may be in the future
658
659dnl Handle CLI sub-directory configury.
660AC_ARG_ENABLE(gdbcli,
661[ --enable-gdbcli Enable GDB-CLI interface],
662[
6bad8db2
FN
663 case "${enableval}" in
664 yes) enable_gdbcli=yes ;;
665 "") enable_gdbcli=yes ;;
d318976c
FN
666 no)
667 AC_MSG_ERROR(The CLI cannot be disabled yet)
668 ;;
669 *)
6bad8db2 670 AC_MSG_ERROR(Bad value for --enable-gdbcli: ${enableval})
d318976c
FN
671 ;;
672 esac
673],
674[enable_gdbcli=yes])
675case ${enable_gdbcli} in
676 "yes" )
6bad8db2 677 if test -d "${srcdir}/cli" ; then
d318976c
FN
678 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_CLI_OBS)"
679 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_CLI_DEPS)"
486697a0 680 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_CLI_SRCS)"
d318976c
FN
681 CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_CLI_INITS)"
682 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_CLI_CFLAGS)"
683 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_CLI_ALL)"
684 CONFIG_CLEAN="${CONFIG_CLEAN} \$(SUBDIR_CLI_CLEAN)"
685 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_CLI_INSTALL)"
686 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_CLI_UNINSTALL)"
687 fi
688 ;;
689esac
690
c906108c 691dnl Handle optional features that can be enabled.
fb40c209
AC
692
693dnl Handle MI sub-directory configury.
694AC_ARG_ENABLE(gdbmi,
695[ --enable-gdbmi Enable GDB-MI interface],
696[
697 case "${enable_gdbmi}" in
698 yes | no) ;;
699 "") enable_gdbmi=yes ;;
700 *)
701 AC_MSG_ERROR(Bad value for --enable-gdbmi: ${enableval})
702 ;;
703 esac
b0e2e90a
AC
704],
705[enable_gdbmi=yes])
fb40c209
AC
706case ${enable_gdbmi} in
707 "yes" )
708 if test -d "${srcdir}/mi" ; then
709 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_MI_OBS)"
710 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_MI_DEPS)"
486697a0 711 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_MI_SRCS)"
fb40c209 712 CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_MI_INITS)"
b0b1b869 713 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_MI_CFLAGS)"
b3a90332
AC
714 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_MI_ALL)"
715 CONFIG_CLEAN="${CONFIG_CLEAN} \$(SUBDIR_MI_CLEAN)"
e56ac5c3
AC
716 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_MI_INSTALL)"
717 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_MI_UNINSTALL)"
fb40c209
AC
718 fi
719 ;;
720esac
c906108c 721
b4df4f68
FN
722# Configure UI_OUT by default (before 5.2 it can be disabled)
723# It must be configured if gdbmi is configured
724
725UIOUT_CFLAGS=
726AC_SUBST(UIOUT_CFLAGS)
727
728AC_ARG_WITH(uiout,
6c5cfe5b 729[ --with-uiout Use new uiout functions instead of *printf's],
b4df4f68
FN
730[case "${withval}" in
731 yes) want_uiout=true ;;
732 no) if test $enable_gdbmi = yes; then
733 AC_MSG_ERROR(uiout is needed for MI and cannot be disabled)
734 else
735 want_uiout=false
736 fi ;;
737 *) AC_MSG_ERROR(bad value ${withval} for GDB with-uiout option) ;;
738esac],
739[want_uiout=true])dnl
740
741if test $want_uiout = true; then
742 UIOUT_CFLAGS="-DUI_OUT=1"
743fi
744
c906108c
SS
745AC_ARG_ENABLE(tui,
746[ --enable-tui Enable full-screen terminal user interface],
747[
748 case "${enable_tui}" in
749 yes | no) ;;
750 "") enable_tui=yes ;;
751 *)
752 AC_MSG_ERROR(Bad value for --enable-tui: ${enableval})
753 ;;
754 esac
755])
756case ${enable_tui} in
757 "yes" )
ed952ac5
AC
758 if test -d "${srcdir}/tui" ; then
759 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_TUI_OBS)"
760 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_TUI_DEPS)"
486697a0 761 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_TUI_SRCS)"
ed952ac5
AC
762 CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_TUI_INITS)"
763 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_TUI_CFLAGS)"
764 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_TUI_ALL)"
765 CONFIG_CLEAN="${CONFIG_CLEAN} \$(SUBDIR_TUI_CLEAN)"
766 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_TUI_INSTALL)"
767 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_TUI_UNINSTALL)"
768 fi
769 ;;
c906108c 770esac
c906108c
SS
771
772AC_ARG_ENABLE(netrom,
773[ --enable-netrom Enable NetROM support],
774[case "${enableval}" in
775yes) enable_netrom=yes ;;
776no) enable_netrom=no ;;
777*) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
778esac])
779
780if test "${enable_netrom}" = "yes"; then
66b965bb 781 CONFIG_LIB_OBS="${CONFIG_LIB_OBS} remote-nrom.o"
c906108c
SS
782 CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c"
783fi
784
1decb323 785
3b851bce
AC
786# NOTE: Don't add -Wall or -Wunused, they both include
787# -Wunused-parameter which reports bogus warnings.
788# NOTE: If you add to this list, remember to update
789# gdb/doc/gdbint.texinfo.
1decb323 790build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
93d56215 791-Wformat -Wparentheses -Wpointer-arith -Wuninitialized"
d8038014
AC
792# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
793# -Wunused-function -Wunused-label -Wunused-variable -Wunused-value
93d56215 794# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
d8038014
AC
795# -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes
796# -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls
797# -Woverloaded-virtual -Winline -Werror"
c906108c
SS
798AC_ARG_ENABLE(build-warnings,
799[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 800[case "${enableval}" in
c906108c
SS
801 yes) ;;
802 no) build_warnings="-w";;
803 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
804 build_warnings="${build_warnings} ${t}";;
805 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
806 build_warnings="${t} ${build_warnings}";;
807 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
808esac
809if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 810 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 811fi])dnl
3b851bce
AC
812AC_ARG_ENABLE(gdb-build-warnings,
813[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
814[case "${enableval}" in
815 yes) ;;
816 no) build_warnings="-w";;
817 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
818 build_warnings="${build_warnings} ${t}";;
819 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
820 build_warnings="${t} ${build_warnings}";;
821 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
822esac
823if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
824 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
825fi])dnl
104c1213
JM
826WARN_CFLAGS=""
827WERROR_CFLAGS=""
c906108c
SS
828if test "x${build_warnings}" != x -a "x$GCC" = xyes
829then
746a987d
AC
830 AC_MSG_CHECKING(compiler warning flags)
831 # Separate out the -Werror flag as some files just cannot be
832 # compiled with it enabled.
833 for w in ${build_warnings}; do
834 case $w in
835 -Werr*) WERROR_CFLAGS=-Werror ;;
836 *) # Check that GCC accepts it
4536bbc6
AC
837 saved_CFLAGS="$CFLAGS"
838 CFLAGS="$CFLAGS $w"
839 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
840 CFLAGS="$saved_CFLAGS"
746a987d
AC
841 esac
842 done
843 AC_MSG_RESULT(${WARN_CFLAGS}${WERROR_CFLAGS})
1decb323 844fi
c906108c 845AC_SUBST(WARN_CFLAGS)
104c1213 846AC_SUBST(WERROR_CFLAGS)
c906108c
SS
847
848MMALLOC_CFLAGS=
849MMALLOC=
850AC_SUBST(MMALLOC_CFLAGS)
851AC_SUBST(MMALLOC)
852
853AC_ARG_WITH(mmalloc,
854[ --with-mmalloc Use memory mapped malloc package],
855[case "${withval}" in
856 yes) want_mmalloc=true ;;
857 no) want_mmalloc=false;;
858 *) AC_MSG_ERROR(bad value ${withval} for GDB with-mmalloc option) ;;
859esac],[want_mmalloc=false])dnl
860
861if test x$want_mmalloc = xtrue; then
862 AC_DEFINE(USE_MMALLOC)
863 AC_DEFINE(MMCHECK_FORCE)
864 MMALLOC_CFLAGS="-I$srcdir/../mmalloc"
865 MMALLOC='../mmalloc/libmmalloc.a'
866fi
867
88987551
L
868AC_ARG_WITH(included-regex,
869[ --with-included-regex Use included regex],
870[case "${withval}" in
871 yes) want_included_regex=true ;;
872 no) want_included_regex=false;;
873 *) AC_MSG_ERROR(bad value ${withval} for GDB with-included-regex option) ;;
874esac],[want_included_regex=true])dnl
875
88987551
L
876if test $want_included_regex = false; then
877 AC_MSG_CHECKING(for GNU regex)
878 AC_CACHE_VAL(gdb_cv_have_gnu_regex,
879[AC_TRY_COMPILE([#include <gnu-versions.h>
880#include <sys/types.h>
881#include <regex.h>],
882[#if !defined _GNU_REGEX_INTERFACE_VERSION || !defined __GLIBC__ || __GLIBC__ < 2
883#error No valid GNU regex.
884#endif
885],
886 [gdb_cv_have_gnu_regex=yes],
887 [gdb_cv_have_gnu_regex=no])])
888 AC_MSG_RESULT($gdb_cv_have_gnu_regex)
e48f66e4
AC
889 if test $gdb_cv_have_gnu_regex = no; then
890 want_included_regex=true
88987551
L
891 fi
892fi
e48f66e4
AC
893
894if test x${want_included_regex} = xtrue; then
895 REGEX="gnu-regex.o"
896 AC_DEFINE(USE_INCLUDED_REGEX)
897fi
88987551 898AC_SUBST(REGEX)
7a292a7a
SS
899
900# In the Cygwin environment, we need some additional flags.
901AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
902[AC_EGREP_CPP(lose, [
903#if defined (__CYGWIN__) || defined (__CYGWIN32__)
904lose
905#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
906
aff38e61
AC
907
908dnl Figure out which of the many generic ser-*.c files the _host_ supports.
909SER_HARDWIRE="ser-unix.o ser-pipe.o ser-tcp.o"
910case ${host} in
95cbc983
AC
911 *go32* ) SER_HARDWIRE=ser-go32.o ;;
912 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
aff38e61
AC
913esac
914AC_SUBST(SER_HARDWIRE)
915
916
c906108c 917dnl Figure out which term library to use.
b83266a0
SS
918if test x$gdb_host = xgo32; then
919 TERM_LIB=
920else
c906108c
SS
921if test x$gdb_cv_os_cygwin = xyes; then
922 TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
923else
924 TERM_LIB=
925 AC_CHECK_LIB(ncurses, tgetent, TERM_LIB=-lncurses,
926 AC_CHECK_LIB(Hcurses, tgetent, TERM_LIB=-lHcurses,
927 AC_CHECK_LIB(termlib, tgetent, TERM_LIB=-ltermlib,
928 AC_CHECK_LIB(termcap, tgetent, TERM_LIB=-ltermcap,
929 AC_CHECK_LIB(curses, tgetent, TERM_LIB=-lcurses,
930 AC_CHECK_LIB(terminfo, tgetent, TERM_LIB=-lterminfo))))))
931
932 if test "x$TERM_LIB" = x
933 then
934 AC_MSG_ERROR(Could not find a term library, e.g. termcap or termlib!)
935 fi
936fi
b83266a0 937fi
c906108c
SS
938AC_SUBST(TERM_LIB)
939
cd0fc7c3
SS
940# libreadline needs libuser32.a in a cygwin environment
941WIN32LIBS=
942if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
943 WIN32LIBS="-luser32"
944 case "${target}" in
945 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
946 ;;
947 esac
cd0fc7c3
SS
948fi
949AC_SUBST(WIN32LIBS)
7a292a7a 950
3fc11d3e
JM
951LIBGUI="../libgui/src/libgui.a"
952GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
953AC_SUBST(LIBGUI)
954AC_SUBST(GUI_CFLAGS_X)
7a292a7a 955
8b93c638
JM
956AC_ARG_WITH(cpu,
957[ --with-cpu=CPU Set the default CPU variant to debug],
958[case "${target}" in
959 powerpc-* | powerpcle-* )
960 ## It would be nice to keep this table in sync with the one in
961 ## gcc/configure.
962 case "${with_cpu}" in
963 ppc-uisa | rs6000 | 403 | 403GC | 505 | 860 | 601 | 602 | 603 \
964 | 604 | 750 )
965 ## Those are all handled in variants in rs6000-tdep.c, so they're fine.
966 ;;
967 common | power | power2 | rios | rios1 | rios2 | rsc | rsc1 )
968 ## These are all RS6000 variants, as far as GDB is concerned.
969 with_cpu=rs6000
970 ;;
971 603e | ec603e )
972 with_cpu=603
973 ;;
974 604e )
975 with_cpu=604
976 ;;
977 * )
978 AC_MSG_WARN(GDB: unknown --with-cpu value: \`${with_cpu}'; using \`ppc-uisa'.)
979 with_cpu=ppc-uisa
980 ;;
981 esac
982 ;;
983 * )
984 AC_MSG_WARN(GDB may ignore the --with-cpu flag for ${target} targets)
985 ;;
986esac
987AC_DEFINE_UNQUOTED(TARGET_CPU_DEFAULT, "${with_cpu}")
988],)
989
990
3fc11d3e
JM
991AC_ARG_ENABLE(gdbtk,
992[ --enable-gdbtk Enable GDBTK GUI front end],
993[case "${enableval}" in
994 yes)
995 case "$host" in
996 *go32*)
997 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
998 enable_gdbtk=no ;;
999 *windows*)
1000 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
1001 enable_gdbtk=no ;;
1002 *)
1003 enable_gdbtk=yes ;;
1004 esac ;;
1005 no)
1006 enable_gdbtk=no ;;
1007 *)
1008 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
1009esac],
1010[
1011# Default is on for everything but go32 and Cygwin
1012case "$host" in
1013 *go32* | *windows*)
1014 ;;
1015 *)
379d6434
AC
1016 if test -d "${srcdir}/gdbtk" ; then
1017 enable_gdbtk=yes
1018 fi
1019 ;;
1020esac
3fc11d3e
JM
1021])
1022
1023WIN32LDAPP=
1024AC_SUBST(WIN32LIBS)
1025AC_SUBST(WIN32LDAPP)
1026
1027configdir="unix"
1028
1029GDBTKLIBS=
1030if test "${enable_gdbtk}" = "yes"; then
1031
d1c3b63a
KS
1032 # Gdbtk must have an absolute path to srcdir in order to run
1033 # properly when not installed.
1034 here=`pwd`
1035 cd ${srcdir}
1036 GDBTK_SRC_DIR=`pwd`
1037 cd $here
1038
3fc11d3e
JM
1039 CY_AC_PATH_TCLCONFIG
1040 if test -z "${no_tcl}"; then
1041 CY_AC_LOAD_TCLCONFIG
1042 CY_AC_PATH_TKCONFIG
1043
dd2504ab
JM
1044 # now look for Tcl library stuff
1045
1046 case "${host}" in
1047 *-*-cygwin*)
1048 tcldir=../tcl/win/
1049 ;;
1050 *)
1051 tcldir=../tcl/unix/
1052 ;;
1053 esac
1054
1055 TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
1056
3fc11d3e
JM
1057 # If $no_tk is nonempty, then we can't do Tk, and there is no
1058 # point to doing Tcl.
1059 if test -z "${no_tk}"; then
1060 CY_AC_LOAD_TKCONFIG
1061 CY_AC_PATH_TCLH
1062 CY_AC_PATH_TKH
1063 CY_AC_PATH_ITCLH
1064 CY_AC_PATH_ITKH
3fc11d3e 1065
dd2504ab
JM
1066
1067 # now look for Tk library stuff
1068
1069 case "${host}" in
1070 *-*-cygwin*)
1071 tkdir=../tk/win/
1072 ;;
1073 *)
1074 tkdir=../tk/unix/
1075 ;;
1076 esac
1077
1078 TK_DEPS="${tkdir}${TK_LIB_FILE}"
1079
3fc11d3e
JM
1080 # now look for Itcl library stuff
1081
1082 CY_AC_PATH_ITCLCONFIG
1083 if test -z "${no_itcl}"; then
b381d62d 1084 CY_AC_LOAD_ITCLCONFIG
3fc11d3e
JM
1085
1086 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
b381d62d 1087 ITCL_DEPS="${ITCL_LIB_FULL_PATH}"
3fc11d3e
JM
1088 fi
1089
1090
1091 # now look for Itk library stuff
1092 CY_AC_PATH_ITKCONFIG
1093 if test -z "${no_itcl}"; then
1094 CY_AC_LOAD_ITKCONFIG
1095
3fc11d3e 1096 ITKLIB="${ITK_BUILD_LIB_SPEC}"
b381d62d 1097 ITK_DEPS="${ITK_LIB_FULL_PATH}"
3fc11d3e
JM
1098 fi
1099
4226a5a5 1100 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1101 # Tcl/Tk 8.1 require -fwritable strings. I don't
1102 # know whether 8.2 will or not, but I bet it will.
1103 # I don't have to worry about 7.x since we don't support it.
1104 GDBTK_CFLAGS=""
1105 if test "$GCC" = "yes"; then
1106 if test "$TCL_VERSION" != "8.0" ; then
1107 GDBTK_CFLAGS="-fwritable-strings"
1108 fi
1109 fi
1110
1111 # Include some libraries that Tcl and Tk want.
b2a1bd4f 1112 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1113 # Yes, the ordering seems wrong here. But it isn't.
1114 # TK_LIBS is the list of libraries that need to be linked
1115 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1116 # were in LIBS then any link tests after this point would
1117 # try to include things like `$(LIBGUI)', which wouldn't work.
1118 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1119
1120 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1121 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1122 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
1123 CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_GDBTK_INITS)"
b3a90332 1124 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_GDBTK_ALL)"
ce844ae2 1125 CONFIG_CLEAN="${CONFIG_CLEAN} \$(SUBDIR_GDBTK_CLEAN)"
e56ac5c3
AC
1126 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_GDBTK_INSTALL)"
1127 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_GDBTK_UNINSTALL)"
3fc11d3e
JM
1128
1129 if test x$gdb_cv_os_cygwin = xyes; then
1130 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1131 WIN32LDAPP="-Wl,--subsystem,console"
1132 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1133 fi
1134 fi
1135 fi
ffc6a242
KS
1136
1137 SUBDIRS="${SUBDIRS} gdbtk"
1138 configdirs="${configdirs} gdbtk"
3fc11d3e
JM
1139fi
1140
3fc11d3e
JM
1141AC_SUBST(X_CFLAGS)
1142AC_SUBST(X_LDFLAGS)
1143AC_SUBST(X_LIBS)
dd2504ab
JM
1144AC_SUBST(TCL_DEPS)
1145AC_SUBST(TK_DEPS)
3fc11d3e
JM
1146AC_SUBST(ITCLLIB)
1147AC_SUBST(ITCL_DEPS)
1148AC_SUBST(ITKLIB)
1149AC_SUBST(ITK_DEPS)
3fc11d3e
JM
1150AC_SUBST(GDBTKLIBS)
1151AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1152AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1153
c906108c
SS
1154AC_PATH_X
1155
7a292a7a
SS
1156
1157# Unlike the sim directory, whether a simulator is linked is controlled by
1158# presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
1159# This code just checks for a few cases where we'd like to ignore those
1160# definitions, even when they're present in the '.mt' file. These cases
1161# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1162# not part of the source tree.
7a292a7a
SS
1163#
1164AC_ARG_ENABLE(sim,
1165[ --enable-sim Link gdb with simulator],
1166[echo "enable_sim = $enable_sim";
1167 echo "enableval = ${enableval}";
1168 case "${enableval}" in
1169 yes) ignore_sim=false ;;
1170 no) ignore_sim=true ;;
1171 *) ignore_sim=false ;;
1172 esac],
1173[ignore_sim=false])
1174
1175if test ! -d "${srcdir}/../sim"; then
1176 ignore_sim=true
1177fi
1178
1179if test "${ignore_sim}" = "true"; then
1180 IGNORE_SIM="SIM="
1181 IGNORE_SIM_OBS="SIM_OBS="
1182else
1183 IGNORE_SIM=""
1184 IGNORE_SIM_OBS=""
1185 AC_DEFINE(WITH_SIM)
1186fi
1187AC_SUBST(IGNORE_SIM)
1188AC_SUBST(IGNORE_SIM_OBS)
1189
c906108c
SS
1190AC_SUBST(ENABLE_CFLAGS)
1191
1192AC_SUBST(CONFIG_OBS)
66b965bb 1193AC_SUBST(CONFIG_LIB_OBS)
c906108c
SS
1194AC_SUBST(CONFIG_DEPS)
1195AC_SUBST(CONFIG_SRCS)
dfcd3bfb 1196AC_SUBST(CONFIG_INITS)
b3a90332
AC
1197AC_SUBST(CONFIG_ALL)
1198AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1199AC_SUBST(CONFIG_INSTALL)
1200AC_SUBST(CONFIG_UNINSTALL)
c906108c
SS
1201
1202# Begin stuff to support --enable-shared
1203AC_ARG_ENABLE(shared,
1204[ --enable-shared Use shared libraries],
1205[case "${enableval}" in
1206 yes) shared=true ;;
1207 no) shared=false ;;
1208 *) shared=true ;;
1209esac])dnl
1210
1211HLDFLAGS=
1212HLDENV=
1213# If we have shared libraries, try to set rpath reasonably.
1214if test "${shared}" = "true"; then
1215 case "${host}" in
1216 *-*-hpux*)
1217 HLDFLAGS='-Wl,+s,+b,$(libdir)'
1218 ;;
1219 *-*-irix5* | *-*-irix6*)
1220 HLDFLAGS='-Wl,-rpath,$(libdir)'
1221 ;;
1222 *-*-linux*aout*)
1223 ;;
d332c5ac 1224 *-*-linux* | *-pc-linux-gnu*)
c906108c
SS
1225 HLDFLAGS='-Wl,-rpath,$(libdir)'
1226 ;;
1227 *-*-solaris*)
1228 HLDFLAGS='-R $(libdir)'
1229 ;;
1230 *-*-sysv4*)
1231 HLDENV='if test -z "$${LD_RUN_PATH}"; then LD_RUN_PATH=$(libdir); else LD_RUN_PATH=$${LD_RUN_PATH}:$(libdir); fi; export LD_RUN_PATH;'
1232 ;;
1233 esac
1234fi
1235
1236# On SunOS, if the linker supports the -rpath option, use it to
1237# prevent ../bfd and ../opcodes from being included in the run time
1238# search path.
1239case "${host}" in
1240 *-*-sunos*)
1241 echo 'main () { }' > conftest.c
1242 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
1243 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
1244 :
1245 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
1246 :
1247 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
1248 :
1249 elif grep 'some text already loaded' conftest.t >/dev/null 2>&1; then
1250 :
1251 elif test "${shared}" = "true"; then
1252 HLDFLAGS='-Wl,-rpath=$(libdir)'
1253 else
1254 HLDFLAGS='-Wl,-rpath='
1255 fi
1256 rm -f conftest.t conftest.c conftest
1257 ;;
1258esac
1259AC_SUBST(HLDFLAGS)
1260AC_SUBST(HLDENV)
1261# End stuff to support --enable-shared
1262
1263# target_subdir is used by the testsuite to find the target libraries.
1264target_subdir=
1265if test "${host}" != "${target}"; then
1266 target_subdir="${target_alias}/"
1267fi
1268AC_SUBST(target_subdir)
1269
1270frags=
1271host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1272if test ! -f ${host_makefile_frag}; then
7fd60527
AC
1273 # When building a native debuger the .mh file containing things
1274 # like NATDEPFILES is needed. Cross debuggers don't need .mh
1275 # since it no longer contains anything useful.
1276 if test "${target}" = "${host}"; then
1277 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1278 else
1279 host_makefile_frag=/dev/null
1280 fi
c906108c
SS
1281fi
1282frags="$frags $host_makefile_frag"
1283
1284target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
1285if test ! -f ${target_makefile_frag}; then
1286AC_MSG_ERROR("*** Gdb does not support target ${target}")
1287fi
1288frags="$frags $target_makefile_frag"
1289
1290AC_SUBST_FILE(host_makefile_frag)
1291AC_SUBST_FILE(target_makefile_frag)
1292AC_SUBST(frags)
1293
1294changequote(,)dnl
1295hostfile=`sed -n '
1296s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1297' ${host_makefile_frag}`
1298
1299targetfile=`sed -n '
1300s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1301' ${target_makefile_frag}`
1302
6166d547
AC
1303GDB_MULTI_ARCH=`sed -n '
1304s/GDB_MULTI_ARCH[ ]*=[ ]*\([^ ]*\)[ ]*/\1/p
1305' ${target_makefile_frag}`
1306
c906108c 1307if test "${target}" = "${host}"; then
a85f51e7
DJ
1308# We pick this up from the host configuration file (.mh) because we
1309# do not have a native configuration Makefile fragment.
c906108c
SS
1310nativefile=`sed -n '
1311s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1312' ${host_makefile_frag}`
c906108c
SS
1313fi
1314changequote([,])
1315
6166d547
AC
1316# New targets should just set gdb_multi_arch=yes in configure.tgt.
1317# Old targets being converted can either do that or set GDB_MULTI_ARCH
1318# in the target specific makefile frag. Eventually gdb_multi_arch=yes
1319# will be the default.
1320if test x"${GDB_MULTI_ARCH}" = x ; then
1321 case "${gdb_multi_arch}" in
1322 yes ) GDB_MULTI_ARCH=GDB_MULTI_ARCH_PURE ;;
1323 no ) GDB_MULTI_ARCH=0 ;;
1324 0|1|2 ) GDB_MULTI_ARCH=${gdb_multi_arch} ;;
1325 esac
1326fi
1327if test x"${GDB_MULTI_ARCH}" != x ; then
1328 AC_DEFINE_UNQUOTED(GDB_MULTI_ARCH, ${GDB_MULTI_ARCH})
1329fi
6c5cfe5b 1330# Warn the user when they use an old practice
6166d547
AC
1331case "${GDB_MULTI_ARCH}" in
1332 "" ) ;;
1333 0 | GDB_MULTI_ARCH_PARTIAL | 1 | GDB_MULTI_ARCH_TM | 2 )
1334 AC_MSG_WARN("GDB: Target is not pure multi-arch") ;;
1335 GDB_MULTI_ARCH_PURE )
1336 if test x"${targetfile}" != x ; then
6c5cfe5b 1337 AC_MSG_WARN("GDB: Ignoring TM_FILE in ${target_makefile_frag}")
5a2402b8 1338 targetfile=""
6166d547
AC
1339 fi ;;
1340 *) AC_MSG_ERROR("GDB: Unknown GDB_MULTI_ARCH value ${GDB_MULTI_ARCH}");;
1341esac
1342
96baa820
JM
1343if test "${enable_multi_ice}" = "yes"; then
1344 SUBDIRS="${SUBDIRS} multi-ice"
1345fi
1346
a85f51e7
DJ
1347# ``gdbserver'' can only be built in a native configuration.
1348if test x"${target}" = x"${host}"; then
1349 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1350 if test x"${build_gdbserver}" = xyes ; then
1351 configdirs="${configdirs} gdbserver"
1352 SUBDIRS="${SUBDIRS} gdbserver"
1353 AC_MSG_RESULT(yes)
1354 else
1355 AC_MSG_RESULT(no)
1356 fi
1357fi
1358
96baa820
JM
1359AC_SUBST(SUBDIRS)
1360
c906108c 1361# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
5a2402b8
AC
1362# (NAT_FILE) is not set in config/*/*.m[ht] files, we link to an empty
1363# version.
c906108c
SS
1364
1365files=
1366links=
5a2402b8 1367
c906108c 1368rm -f xm.h
5a2402b8 1369xm_h=""
c906108c 1370if test "${hostfile}" != ""; then
5a2402b8
AC
1371 xm_h=xm.h
1372 GDB_XM_FILE="config/${gdb_host_cpu}/${hostfile}"
1373 files="${files} ${GDB_XM_FILE}"
1374 links="${links} xm.h"
1375 AC_DEFINE_UNQUOTED(GDB_XM_FILE, ${GDB_XM_FILE})
c906108c 1376fi
5a2402b8
AC
1377AC_SUBST(xm_h)
1378
c906108c 1379rm -f tm.h
5a2402b8 1380tm_h=""
c906108c 1381if test "${targetfile}" != ""; then
5a2402b8
AC
1382 tm_h=tm.h
1383 GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}"
1384 files="${files} ${GDB_TM_FILE}"
1385 links="${links} tm.h"
1386 AC_DEFINE_UNQUOTED(GDB_TM_FILE, ${GDB_TM_FILE})
c906108c 1387fi
5a2402b8
AC
1388AC_SUBST(tm_h)
1389
c906108c 1390rm -f nm.h
5a2402b8 1391nm_h=""
c906108c 1392if test "${nativefile}" != ""; then
5a2402b8
AC
1393 nm_h=nm.h
1394 GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}"
1395 files="${files} ${GDB_NM_FILE}"
1396 links="${links} nm.h"
1397 AC_DEFINE_UNQUOTED(GDB_NM_FILE, ${GDB_NM_FILE})
c906108c 1398fi
5a2402b8
AC
1399AC_SUBST(nm_h)
1400
3fc11d3e 1401AC_PROG_LN_S
c906108c
SS
1402
1403AC_LINK_FILES($files, $links)
1404
1405dnl Check for exe extension set on certain hosts (e.g. Win32)
1406AC_EXEEXT
1407
234b45d4
KB
1408dnl Detect the character set used by this host.
1409
1410dnl At the moment, we just assume it's ISO-8859-1 (which is a
1411dnl superset of ASCII containing the characters needed for French,
1412dnl German, Spanish, Italian, and possibly others), but if were
1413dnl *were* to support any host character sets other than ISO-8859-1,
1414dnl here's where we'd detect it.
1415AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1416 [Define to be a string naming the default host character set.])
1417
1418AM_ICONV
1419
c906108c 1420AC_CONFIG_SUBDIRS($configdirs)
ed952ac5 1421AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
c906108c
SS
1422[
1423dnl Autoconf doesn't provide a mechanism for modifying definitions
1424dnl provided by makefile fragments.
1425dnl
1426if test "${nativefile}" = ""; then
c4620205 1427 < Makefile \
e27da16d
JT
1428 sed -e '/^NATDEPFILES[[ ]]*=.*\\$/,/[[^\\]]$/s/^/# /' \
1429 -e '/^NATDEPFILES[[ ]]*=/s/^/# /' \
c4620205
JB
1430 | sed -e '/^\(NATDEPFILES[[ ]]*[[+]]=[[ ]]*\)/s//# \1/' \
1431 > Makefile.tem
c906108c
SS
1432mv -f Makefile.tem Makefile
1433fi
1434
1435changequote(,)dnl
1436sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
1437/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
1438/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
1439mv -f Makefile.tmp Makefile
1440changequote([,])dnl
1441
2acceee2 1442
c906108c
SS
1443case x$CONFIG_HEADERS in
1444xconfig.h:config.in)
1445echo > stamp-h ;;
1446esac
1447],
1448[
1449gdb_host_cpu=$gdb_host_cpu
1450gdb_target_cpu=$gdb_target_cpu
1451nativefile=$nativefile
1452])
1453
1454exit 0
This page took 0.287822 seconds and 4 git commands to generate.