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