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