* remote.c (remote_parse_stop_reply): Use REG only after its NULL check.
[deliverable/binutils-gdb.git] / gdb / configure.ac
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
0ea3f30e 2dnl Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004,
e28b3332 3dnl 2005, 2006, 2007, 2008
b6ba6518 4dnl Free Software Foundation, Inc.
c906108c
SS
5dnl
6dnl This file is part of GDB.
7dnl
8dnl This program is free software; you can redistribute it and/or modify
9dnl it under the terms of the GNU General Public License as published by
5a0e3bd0 10dnl the Free Software Foundation; either version 3 of the License, or
c906108c 11dnl (at your option) any later version.
5a0e3bd0 12dnl
c906108c
SS
13dnl This program is distributed in the hope that it will be useful,
14dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
15dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16dnl GNU General Public License for more details.
5a0e3bd0 17dnl
c906108c 18dnl You should have received a copy of the GNU General Public License
5a0e3bd0 19dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
20
21dnl Process this file with autoconf to produce a configure script.
22
bec39cab 23AC_PREREQ(2.59)dnl
c906108c
SS
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
e28b3332 32gl_EARLY
c906108c
SS
33AM_PROG_CC_STDC
34
e28b3332 35AC_CONFIG_AUX_DIR(..)
c906108c
SS
36AC_CANONICAL_SYSTEM
37
a417dc56
RW
38# Dependency checking.
39ZW_CREATE_DEPDIR
40ZW_PROG_COMPILER_DEPENDENCIES([CC])
41
42# Check for the 'make' the user wants to use.
43AC_CHECK_PROGS(MAKE, make)
44MAKE_IS_GNU=
45case "`$MAKE --version 2>&1 | sed 1q`" in
46 *GNU*)
47 MAKE_IS_GNU=yes
48 ;;
49esac
50AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
51AC_PROG_MAKE_SET
52
ddc9cd0f
AC
53dnl List of object files and targets accumulated by configure.
54
55CONFIG_OBS=
56CONFIG_DEPS=
57CONFIG_SRCS=
58ENABLE_CFLAGS=
59
60CONFIG_ALL=
61CONFIG_CLEAN=
62CONFIG_INSTALL=
63CONFIG_UNINSTALL=
64
20e95c23
DJ
65dnl Set up for gettext.
66ZW_GNU_GETTEXT_SISTER_DIR
ddc9cd0f
AC
67
68localedir='${datadir}/locale'
69AC_SUBST(localedir)
70
20e95c23 71if test x"$USE_NLS" = xyes; then
ddc9cd0f
AC
72 CONFIG_ALL="$CONFIG_ALL all-po"
73 CONFIG_CLEAN="$CONFIG_CLEAN clean-po"
74 CONFIG_INSTALL="$CONFIG_INSTALL install-po"
75 CONFIG_UNINSTALL="$CONFIG_UNINSTALL uninstall-po"
76fi
77
e28b3332
DJ
78gl_INIT
79
d5af19ba
DJ
80# For Makefile dependencies.
81GNULIB_STDINT_H=
82if test x"$STDINT_H" != x; then
83 GNULIB_STDINT_H=gnulib/$STDINT_H
84fi
85AC_SUBST(GNULIB_STDINT_H)
86
ddc9cd0f
AC
87PACKAGE=gdb
88AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
89AC_SUBST(PACKAGE)
0fbb3da7 90
e28b3332
DJ
91# GDB does not use automake, but gnulib does. This line lets us
92# generate its Makefile.in.
93AM_INIT_AUTOMAKE(gdb, UNUSED-VERSION, [no-define])
94
5b5d99cf
JB
95debugdir=${libdir}/debug
96
97AC_ARG_WITH(separate-debug-dir,
98[ --with-separate-debug-dir=path Look for global separate debug info in this path [LIBDIR/debug]],
99[debugdir="${withval}"])
100
101AC_DEFINE_DIR(DEBUGDIR, debugdir,
102 [Global directory for separate debug files. ])
103#AC_DEFINE_UNQUOTED(DEBUGDIR, "$debugdir"),
c906108c 104
aa28a74e
DJ
105if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
106 if test "x$prefix" = xNONE; then
107 test_prefix=/usr/local
108 else
109 test_prefix=$prefix
110 fi
111else
112 test_prefix=$exec_prefix
113fi
114case ${debugdir} in
115"${test_prefix}"|"${test_prefix}/"*|\
116'${exec_prefix}'|'${exec_prefix}/'*)
117 AC_DEFINE(DEBUGDIR_RELOCATABLE, 1, [Define if the debug directory should be relocated when GDB is moved.])
118 ;;
119esac
120
8dcde887 121AC_CONFIG_SUBDIRS(doc testsuite)
96baa820 122
d0c678e6
UW
123# Check whether to support alternative target configurations
124AC_ARG_ENABLE(targets,
125[ --enable-targets alternative target configurations],
126[case "${enableval}" in
127 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
128 ;;
129 no) enable_targets= ;;
130 *) enable_targets=$enableval ;;
131esac])
132
c0993dbe
UW
133# Check whether to enable 64-bit support on 32-bit hosts
134AC_ARG_ENABLE(64-bit-bfd,
135[ --enable-64-bit-bfd 64-bit support (on hosts with narrower word sizes)],
136[case "${enableval}" in
137 yes) want64=true ;;
138 no) want64=false ;;
139 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
140esac],[want64=false])dnl
141
121ce6e5
DJ
142# Provide defaults for some variables set by the per-host and per-target
143# configuration.
144gdb_host_obs=posix-hdep.o
145
771b4502
UW
146if test "${target}" = "${host}"; then
147 gdb_native=yes
148else
149 gdb_native=no
150fi
151
27e9bf90 152. $srcdir/configure.host
c906108c 153
d0c678e6
UW
154# Accumulate some settings from configure.tgt over all enabled targets
155
156TARGET_OBS=
157all_targets=
158
159for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
160do
161 if test "$targ_alias" = "all"; then
162 all_targets=true
163 else
164 # Canonicalize the secondary target names.
165 result=`$ac_config_sub $targ_alias 2>/dev/null`
166 if test -n "$result"; then
167 targ=$result
168 else
169 targ=$targ_alias
170 fi
171
172 . ${srcdir}/configure.tgt
173
174 # Target-specific object files
175 for i in ${gdb_target_obs}; do
176 case " $TARGET_OBS " in
177 *" ${i} "*) ;;
178 *)
179 TARGET_OBS="$TARGET_OBS ${i}"
180 ;;
181 esac
182 done
c0993dbe
UW
183
184 # Check whether this target needs 64-bit CORE_ADDR
185 if test x${want64} = xfalse; then
186 . ${srcdir}/../bfd/config.bfd
187 fi
d0c678e6
UW
188 fi
189done
190
191if test x${all_targets} = xtrue; then
c0993dbe
UW
192
193 # We want all 64-bit targets if we either:
194 # - run on a 64-bit host or
195 # - already require 64-bit support for some other target or
196 # - the --enable-64-bit-bfd option was supplied
197 # Otherwise we only support all 32-bit targets.
198 #
199 # NOTE: This test must be in sync with the corresponding
200 # tests in BFD!
201
202 if test x${want64} = xfalse; then
203 AC_CHECK_SIZEOF(long)
204 if test "x${ac_cv_sizeof_long}" = "x8"; then
205 want64=true
206 fi
207 fi
208 if test x${want64} = xtrue; then
209 TARGET_OBS='$(ALL_TARGET_OBS) $(ALL_64_TARGET_OBS)'
210 else
211 TARGET_OBS='$(ALL_TARGET_OBS)'
212 fi
d0c678e6
UW
213fi
214
215AC_SUBST(TARGET_OBS)
216
217# For other settings, only the main target counts.
218gdb_sim=
219gdb_osabi=
220build_gdbserver=
221targ=$target; . ${srcdir}/configure.tgt
c906108c 222
27e9bf90
MK
223# Fetch the default architecture and default target vector from BFD.
224targ=$target; . $srcdir/../bfd/config.bfd
5c8cc331 225
27e9bf90
MK
226# We only want the first architecture, so strip off the others if
227# there is more than one.
228targ_archs=`echo $targ_archs | sed 's/ .*//'`
5c8cc331 229
27e9bf90
MK
230if test "x$targ_archs" != x; then
231 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
232 [Define to BFD's default architecture. ])
1ba607ad 233fi
27e9bf90
MK
234if test "x$targ_defvec" != x; then
235 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
236 [Define to BFD's default target vector. ])
1ba607ad
AC
237fi
238
627af7ea
MK
239# The CLI cannot be disabled yet, but may be in the future.
240
241# Enable CLI.
242AC_ARG_ENABLE(gdbcli,
243[ --disable-gdbcli disable command-line interface (CLI)],
244 [case $enableval in
245 yes)
246 ;;
247 no)
248 AC_MSG_ERROR([the command-line interface cannot be disabled yet]) ;;
249 *)
250 AC_MSG_ERROR([bad value $enableval for --enable-gdbcli]) ;;
251 esac],
252 [enable_gdbcli=yes])
253if test x"$enable_gdbcli" = xyes; then
254 if test -d $srcdir/cli; then
255 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_CLI_OBS)"
256 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_CLI_DEPS)"
257 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_CLI_SRCS)"
627af7ea 258 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_CLI_CFLAGS)"
627af7ea
MK
259 fi
260fi
261
262# Enable MI.
263AC_ARG_ENABLE(gdbmi,
264[ --disable-gdbmi disable machine-interface (MI)],
265 [case $enableval in
266 yes | no)
267 ;;
268 *)
269 AC_MSG_ERROR([bad value $enableval for --enable-gdbmi]) ;;
270 esac],
271 [enable_gdbmi=yes])
272if test x"$enable_gdbmi" = xyes; then
273 if test -d $srcdir/mi; then
274 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_MI_OBS)"
275 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_MI_DEPS)"
276 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_MI_SRCS)"
627af7ea 277 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_MI_CFLAGS)"
627af7ea
MK
278 fi
279fi
280
287c1a40
MK
281# Enable TUI.
282AC_ARG_ENABLE(tui,
283[ --enable-tui enable full-screen terminal user interface (TUI)],
284 [case $enableval in
3ca64bd3 285 yes | no | auto)
287c1a40
MK
286 ;;
287 *)
288 AC_MSG_ERROR([bad value $enableval for --enable-tui]) ;;
3ca64bd3 289 esac],enable_tui=auto)
287c1a40 290
8ee53726
MK
291# Enable gdbtk.
292AC_ARG_ENABLE(gdbtk,
d28f9cdf 293[ --enable-gdbtk enable gdbtk graphical user interface (GUI)],
8ee53726
MK
294 [case $enableval in
295 yes | no)
296 ;;
297 *)
298 AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
299 esac],
5062cc19 300 [if test -d $srcdir/gdbtk; then
8ee53726
MK
301 enable_gdbtk=yes
302 else
303 enable_gdbtk=no
304 fi])
305# We unconditionally disable gdbtk tests on selected platforms.
306case $host_os in
307 go32* | windows*)
308 AC_MSG_WARN([gdbtk isn't supported on $host; disabling])
309 enable_gdbtk=no ;;
310esac
311
0e5d83e3
JJ
312# Libunwind support.
313AC_ARG_WITH(libunwind,
314[ --with-libunwind Use libunwind frame unwinding support],
315[case "${withval}" in
316 yes) enable_libunwind=yes ;;
317 no) enable_libunwind=no ;;
318 *) AC_MSG_ERROR(bad value ${withval} for GDB with-libunwind option) ;;
319esac],[
a9322a30 320 AC_CHECK_HEADERS(libunwind.h libunwind-ia64.h)
0e5d83e3
JJ
321 if test x"$ac_cv_header_libunwind_h" = xyes -a x"$ac_cv_header_libunwind_ia64_h" = xyes; then
322 enable_libunwind=yes;
323 fi
324])
325
326if test x"$enable_libunwind" = xyes; then
a9322a30 327 AC_CHECK_HEADERS(libunwind.h libunwind-ia64.h)
60ca704f 328 AC_DEFINE(HAVE_LIBUNWIND, 1, [Define if libunwind library is being used.])
0e5d83e3
JJ
329 CONFIG_OBS="$CONFIG_OBS libunwind-frame.o"
330 CONFIG_DEPS="$CONFIG_DEPS libunwind-frame.o"
331 CONFIG_SRCS="$CONFIG_SRCS libunwind-frame.c"
332fi
333
d28f9cdf
DJ
334# Profiling support.
335AC_ARG_ENABLE(profiling,
336[ --enable-profiling enable profiling of GDB],
337 [case $enableval in
338 yes | no)
339 ;;
340 *)
341 AC_MSG_ERROR([bad value $enableval for --enable-profile]) ;;
342 esac],
343 [enable_profiling=no])
344
d9feb4e7 345AC_CHECK_FUNCS(monstartup _mcleanup)
b0b1c2c0
MK
346AC_CACHE_CHECK([for _etext], ac_cv_var__etext,
347[AC_TRY_LINK(
348[#include <stdlib.h>
349extern char _etext;
350],
351[free (&_etext);], ac_cv_var__etext=yes, ac_cv_var__etext=no)])
352if test $ac_cv_var__etext = yes; then
353 AC_DEFINE(HAVE__ETEXT, 1,
354 [Define to 1 if your system has the _etext variable. ])
355fi
01fe12f6
JB
356AC_CACHE_CHECK([for etext], ac_cv_var_etext,
357[AC_TRY_LINK(
358[#include <stdlib.h>
359extern char etext;
360],
361[free (&etext);], ac_cv_var_etext=yes, ac_cv_var_etext=no)])
362if test $ac_cv_var_etext = yes; then
363 AC_DEFINE(HAVE_ETEXT, 1,
364 [Define to 1 if your system has the etext variable. ])
365fi
d28f9cdf 366if test "$enable_profiling" = yes ; then
d9feb4e7
DJ
367 if test $ac_cv_func_monstartup = no || test $ac_cv_func__mcleanup = no; then
368 AC_MSG_ERROR(--enable-profiling requires monstartup and _mcleanup)
369 fi
d28f9cdf
DJ
370 PROFILE_CFLAGS=-pg
371 OLD_CFLAGS="$CFLAGS"
372 CFLAGS="$CFLAGS $PROFILE_CFLAGS"
373
d9feb4e7
DJ
374 AC_CACHE_CHECK([whether $CC supports -pg], ac_cv_cc_supports_pg,
375 [AC_TRY_COMPILE([], [int x;], ac_cv_cc_supports_pg=yes,
376 ac_cv_cc_supports_pg=no)])
d28f9cdf 377
d9feb4e7
DJ
378 if test $ac_cv_cc_supports_pg = no; then
379 AC_MSG_ERROR(--enable-profiling requires a compiler which supports -pg)
380 fi
d28f9cdf
DJ
381
382 CFLAGS="$OLD_CFLAGS"
383fi
384
c16158bc
JM
385ACX_PKGVERSION([GDB])
386ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
387AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
388AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
389
8bb2c122
MK
390# --------------------- #
391# Checks for programs. #
392# --------------------- #
393
7a292a7a 394AC_PROG_AWK
c906108c 395AC_PROG_INSTALL
8bb2c122
MK
396AC_PROG_LN_S
397AC_PROG_RANLIB
398AC_PROG_YACC
399
c906108c 400AC_CHECK_TOOL(AR, ar)
95ca63c4
CF
401AC_CHECK_TOOL(DLLTOOL, dlltool)
402AC_CHECK_TOOL(WINDRES, windres)
c906108c 403
8bb2c122 404# Needed for GNU/Hurd.
75c6e08a
MK
405AC_CHECK_TOOL(MIG, mig)
406
9a156167
MK
407# ---------------------- #
408# Checks for libraries. #
409# ---------------------- #
410
411# We might need to link with -lm; most simulators need it.
412AC_CHECK_LIB(m, main)
413
414# We need to link with -lw to get `wctype' on Solaris before Solaris
415# 2.6. Solaris 2.6 and beyond have this function in libc, and have a
416# libw that some versions of the GNU linker cannot hanle (GNU ld 2.9.1
417# is known to have this problem). Therefore we avoid libw if we can.
418AC_CHECK_FUNC(wctype, [],
419 [AC_CHECK_LIB(w, wctype)])
420
c890192f
MK
421# Some systems (e.g. Solaris) have `gethostbyname' in libnsl.
422AC_SEARCH_LIBS(gethostbyname, nsl)
423
9a156167
MK
424# Some systems (e.g. Solaris) have `socketpair' in libsocket.
425AC_SEARCH_LIBS(socketpair, socket)
426
233a11ab
CS
427# Link in zlib if we can. This allows us to read compressed debug sections.
428AC_SEARCH_LIBS(zlibVersion, z, [AC_CHECK_HEADERS(zlib.h)])
429
d542061a
UW
430# On HP/UX we may need libxpdl for dlgetmodinfo (used by solib-pa64.c).
431AC_SEARCH_LIBS(dlgetmodinfo, [dl xpdl])
432
77f120bf
JB
433# On alpha-osf, it appears that libtermcap and libcurses are not compatible.
434# There is a very specific comment in /usr/include/curses.h explaining that
435# termcap routines built into libcurses must not be used.
436#
437# The symptoms we observed so far is GDB unexpectedly changing
438# the terminal settings when tgetent is called - this is particularly
439# visible as the output is missing carriage returns, and so rapidly
440# becomes very hard to read.
441#
442# The readline configure script has already decided that libtermcap
443# was enough for its purposes, and so decided to build readline using
444# libtermcap. Since the TUI mode requires curses, building GDB with
445# TUI enabled results in both libraries to be used at the same time,
446# which is not allowed. This basically means that GDB with TUI is
447# broken on alpha-osf.
448
449case $host_os in
450 alpha*-*-osf* )
451 if "$enable_tui" = "yes"; then
452 AC_MSG_ERROR([Building GDB with TUI mode is not supported on this host])
453 fi
454 if "$enable_tui" = "auto"; then
455 enable_tui=no
456 fi
457 ;;
458esac
459
460# Check whether we should enable the TUI, but only do so if we really
461# can.
462if test x"$enable_tui" != xno; then
463 if test -d $srcdir/tui; then
464 # For the TUI, we need enhanced curses functionality.
465 #
466 # FIXME: kettenis/20040905: We prefer ncurses over the vendor-supplied
467 # curses library because the latter might not provide all the
468 # functionality we need. However, this leads to problems on systems
469 # where the linker searches /usr/local/lib, but the compiler doesn't
470 # search /usr/local/include, if ncurses is installed in /usr/local. A
471 # default installation of ncurses on alpha*-dec-osf* will lead to such
472 # a situation.
473 AC_SEARCH_LIBS(waddstr, [ncurses cursesX curses])
474
475 if test "$ac_cv_search_waddstr" != no; then
476 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
477 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
478 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
479 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
480 CONFIG_ALL="${CONFIG_ALL} all-tui"
481 CONFIG_CLEAN="${CONFIG_CLEAN} clean-tui"
482 CONFIG_INSTALL="${CONFIG_INSTALL} install-tui"
483 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-tui"
484 else
485 if test x"$enable_tui" = xyes; then
486 AC_MSG_ERROR([no enhanced curses library found; disable TUI])
487 else
488 AC_MSG_WARN([no enhanced curses library found; disabling TUI])
489 fi
490 fi
491 fi
492fi
493
4f0be353
MK
494# Since GDB uses Readline, we need termcap functionality. In many
495# cases this will be provided by the curses library, but some systems
496# have a seperate termcap library, or no curses library at all.
287c1a40
MK
497
498case $host_os in
499 cygwin*)
500 if test -d $srcdir/libtermcap; then
501 LIBS="../libtermcap/libtermcap.a $LIBS"
502 ac_cv_search_tgetent="../libtermcap/libtermcap.a"
503 fi ;;
228a417c 504 go32* | *djgpp*)
287c1a40
MK
505 ac_cv_search_tgetent="none required"
506 ;;
7ef34f2c
MM
507 *mingw32*)
508 ac_cv_search_tgetent="none required"
509 CONFIG_OBS="$CONFIG_OBS win32-termcap.o"
510 ;;
287c1a40
MK
511esac
512
4f0be353
MK
513# These are the libraries checked by Readline.
514AC_SEARCH_LIBS(tgetent, [termcap tinfo curses ncurses])
287c1a40
MK
515
516if test "$ac_cv_search_tgetent" = no; then
517 AC_MSG_ERROR([no termcap library found])
518fi
519
6a30b0a5
AS
520AC_ARG_WITH([system-readline],
521 [AS_HELP_STRING([--with-system-readline],
522 [use installed readline library])])
523
524if test "$with_system_readline" = yes; then
525 READLINE=-lreadline
526 READLINE_DEPS=
527 READLINE_CFLAGS=
528else
529 READLINE='$(READLINE_DIR)/libreadline.a'
530 READLINE_DEPS='$(READLINE)'
531 READLINE_CFLAGS='-I$(READLINE_SRC)/..'
532fi
533AC_SUBST(READLINE)
534AC_SUBST(READLINE_DEPS)
535AC_SUBST(READLINE_CFLAGS)
536
5c39566f
DJ
537AC_ARG_WITH(expat,
538 AS_HELP_STRING([--with-expat], [include expat support (auto/yes/no)]),
539 [], [with_expat=auto])
540AC_MSG_CHECKING([whether to use expat])
541AC_MSG_RESULT([$with_expat])
542
543if test "${with_expat}" = no; then
544 AC_MSG_WARN([expat support disabled; some features may be unavailable.])
545 HAVE_LIBEXPAT=no
ca4ca11e 546else
5c39566f
DJ
547 AC_LIB_HAVE_LINKFLAGS([expat], [], [#include "expat.h"],
548 [XML_Parser p = XML_ParserCreate (0);])
549 if test "$HAVE_LIBEXPAT" != yes; then
550 if test "$with_expat" = yes; then
551 AC_MSG_ERROR([expat is missing or unusable])
552 else
553 AC_MSG_WARN([expat is missing or unusable; some features may be unavailable.])
554 fi
555 else
556 save_LIBS=$LIBS
557 LIBS="$LIBS $LIBEXPAT"
558 AC_CHECK_FUNCS(XML_StopParser)
559 LIBS=$save_LIBS
560 fi
7fa2210b
DJ
561fi
562
d57a3c85
TJB
563dnl Utility to simplify finding libpython.
564AC_DEFUN([AC_TRY_LIBPYTHON],
565[
566 version=$1
567 define([have_libpython_var],$2)
568 define([VERSION],[translit([$1],[abcdefghijklmnopqrstuvwxyz./-],
569 [ABCDEFGHIJKLMNOPQRSTUVWXYZ___])])
570 [HAVE_LIB]VERSION=no
571 AC_MSG_CHECKING([for ${version}])
572 save_LIBS=$LIBS
573 LIBS="$LIBS -l${version}"
574 AC_LINK_IFELSE(AC_LANG_PROGRAM([[#include "${version}/Python.h"]],
575 [[Py_Initialize ();]]),
576 [[HAVE_LIB]VERSION=yes
577 have_libpython_var=yes],
578 [LIBS=$save_LIBS])
579 AC_MSG_RESULT([$[HAVE_LIB]VERSION])
580])
581
582AC_ARG_WITH(python,
583 AS_HELP_STRING([--with-python], [include python support (auto/yes/no/<path>)]),
584 [], [with_python=auto])
585AC_MSG_CHECKING([whether to use python])
586AC_MSG_RESULT([$with_python])
587
588if test "${with_python}" = no; then
589 AC_MSG_WARN([python support disabled; some features may be unavailable.])
590 have_libpython=no
591else
592 case "${with_python}" in
593 yes | auto)
594 # Leave as empty, use defaults.
595 python_includes=
596 python_libs=
597 ;;
598 /*)
599 python_includes="-I${with_python}/include"
600 python_libs="-L${with_python}/lib"
601 ;;
602 *)
603 AC_ERROR(invalid value for --with-python)
604 ;;
605 esac
606
607 save_CPPFLAGS=$CPPFLAGS
608 CPPFLAGS="$CPPFLAGS ${python_includes}"
609 save_LIBS=$LIBS
610 LIBS="$LIBS ${python_libs}"
611 have_libpython=no
612 if test "${have_libpython}" = no; then
613 AC_TRY_LIBPYTHON(python2.6, have_libpython)
614 if test "${HAVE_LIBPYTHON2_6}" = yes; then
615 AC_DEFINE(HAVE_LIBPYTHON2_6, 1, [Define if Python 2.6 is being used.])
616 fi
617 fi
618 if test ${have_libpython} = no; then
619 AC_TRY_LIBPYTHON(python2.5, have_libpython)
620 if test "${HAVE_LIBPYTHON2_5}" = yes; then
621 AC_DEFINE(HAVE_LIBPYTHON2_5, 1, [Define if Python 2.5 is being used.])
622 fi
623 fi
624 if test ${have_libpython} = no; then
625 AC_TRY_LIBPYTHON(python2.4, have_libpython)
626 if test "${HAVE_LIBPYTHON2_4}" = yes; then
627 AC_DEFINE(HAVE_LIBPYTHON2_4, 1, [Define if Python 2.4 is being used.])
628 fi
629 fi
630 if test ${have_libpython} = no; then
631 case "${with_python}" in
632 yes)
633 AC_MSG_ERROR([python is missing or unusable])
634 ;;
635 auto)
636 AC_MSG_WARN([python is missing or unusable; some features may be unavailable.])
637 ;;
638 *)
639 AC_MSG_ERROR([no usable python found at ${with_python}])
640 ;;
641 esac
642 CPPFLAGS=$save_CPPFLAGS
643 LIBS=$save_LIBS
644 fi
645fi
646
647if test "${have_libpython}" = yes; then
648 AC_DEFINE(HAVE_PYTHON, 1, [Define if Python interpreter is being linked in.])
649 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_PYTHON_OBS)"
650 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_PYTHON_DEPS)"
651 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_PYTHON_SRCS)"
652 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_PYTHON_CFLAGS)"
653
654 # Flags needed to compile Python code (taken from python-config --cflags).
655 # We cannot call python-config directly because it will output whatever was
656 # used when compiling the Python interpreter itself, including flags which
657 # would make the python-related objects be compiled differently from the
658 # rest of GDB (e.g., -O2 and -fPIC).
659 if test "${GCC}" = yes; then
660 tentative_python_cflags="-fno-strict-aliasing -DNDEBUG -fwrapv"
661 fi
662
663 if test "x${tentative_python_cflags}" != x; then
664 AC_MSG_CHECKING(compiler flags for python code)
665 for flag in ${tentative_python_cflags}; do
666 # Check that the compiler accepts it
667 saved_CFLAGS="$CFLAGS"
668 CFLAGS="$CFLAGS $flag"
669 AC_TRY_COMPILE([],[],PYTHON_CFLAGS="${PYTHON_CFLAGS} $flag",)
670 CFLAGS="$saved_CFLAGS"
671 done
672 AC_MSG_RESULT(${PYTHON_CFLAGS})
673 fi
674else
a08702d6 675 # Even if Python support is not compiled in, we need to have these files
d57a3c85 676 # included in order to recognize the GDB command "python".
a08702d6
TJB
677 CONFIG_OBS="$CONFIG_OBS python.o python-value.o"
678 CONFIG_SRCS="$CONFIG_SRCS python/python.c python/python-value.c"
d57a3c85
TJB
679fi
680AC_SUBST(PYTHON_CFLAGS)
681
5ee754fc
MK
682# ------------------------- #
683# Checks for header files. #
684# ------------------------- #
c906108c 685
9608ab8b 686AC_HEADER_DIRENT
5ee754fc 687AC_HEADER_STAT
c906108c 688AC_HEADER_STDC
a9322a30
TT
689# elf_hp.h is for HP/UX 64-bit shared library support.
690# FIXME: kettenis/20030102: In most cases we include these (ctype.h, time.h)
691# unconditionally, so what's the point in checking these?
692AC_CHECK_HEADERS([nlist.h machine/reg.h poll.h sys/poll.h proc_service.h \
693 thread_db.h gnu/libc-version.h signal.h stddef.h \
694 stdlib.h string.h memory.h strings.h sys/fault.h \
695 sys/file.h sys/filio.h sys/ioctl.h sys/param.h \
696 sys/resource.h sys/procfs.h sys/ptrace.h ptrace.h \
697 sys/reg.h sys/debugreg.h sys/select.h sys/syscall.h \
698 sys/types.h sys/wait.h wait.h termios.h termio.h \
699 sgtty.h unistd.h elf_hp.h ctype.h time.h])
7cb9022a
MK
700AC_CHECK_HEADERS(link.h, [], [],
701[#if HAVE_SYS_TYPES_H
702# include <sys/types.h>
703#endif
704#if HAVE_NLIST_H
705# include <nlist.h>
706#endif
707])
7cb9022a
MK
708AC_CHECK_HEADERS(sys/proc.h, [], [],
709[#if HAVE_SYS_PARAM_H
710# include <sys/param.h>
711#endif
712])
7cb9022a
MK
713AC_CHECK_HEADERS(sys/user.h, [], [],
714[#if HAVE_SYS_PARAM_H
715# include <sys/param.h>
716#endif
717])
5ee754fc 718
b1d19a62 719# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash
5ee754fc
MK
720# between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to
721# think that we don't have <curses.h> if we're using GCC.
722case $host_os in
b1d19a62 723 solaris2.[[789]])
5ee754fc
MK
724 if test "$GCC" = yes; then
725 AC_DEFINE(_MSE_INT_H, 1,
ba1e897e
EZ
726 [Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
727 Solaris 2.[789] when using GCC. ])
5ee754fc
MK
728 fi ;;
729esac
a9322a30 730AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncurses/ncurses.h ncurses/term.h)
c401b55a
MK
731AC_CHECK_HEADERS(term.h, [], [],
732[#if HAVE_CURSES_H
733# include <curses.h>
734#endif
735])
5ee754fc 736
b9362cc7
AC
737# ------------------------- #
738# Checks for declarations. #
739# ------------------------- #
740
a9322a30
TT
741AC_CHECK_DECLS([free, malloc, realloc, strerror, strstr, getopt,
742 snprintf, vsnprintf])
b9362cc7 743
666ec76f
MK
744# ----------------------- #
745# Checks for structures. #
746# ----------------------- #
747
a9322a30 748AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
666ec76f 749
5ee754fc
MK
750# ------------------ #
751# Checks for types. #
752# ------------------ #
c906108c 753
5ee754fc 754AC_TYPE_SIGNAL
f9f87d2c
MK
755AC_CHECK_TYPES(socklen_t, [], [],
756[#include <sys/types.h>
757#include <sys/socket.h>
758])
5ee754fc
MK
759
760# ------------------------------------- #
761# Checks for compiler characteristics. #
762# ------------------------------------- #
c906108c
SS
763
764AC_C_CONST
bce58c09 765AC_C_INLINE
9b913628 766AC_C_BIGENDIAN
c906108c 767
5ee754fc
MK
768# ------------------------------ #
769# Checks for library functions. #
770# ------------------------------ #
771
c906108c 772AC_FUNC_ALLOCA
97bf5e38 773AC_FUNC_MMAP
46711df8 774AC_FUNC_VFORK
a9322a30
TT
775AC_CHECK_FUNCS([canonicalize_file_name realpath getrusage getuid \
776 getgid poll pread64 sbrk setpgid setpgrp setsid \
777 sigaction sigprocmask sigsetmask socketpair syscall \
778 ttrace wborder])
97bf5e38 779
086ec9eb
MK
780# Check the return and argument types of ptrace. No canned test for
781# this, so roll our own.
782gdb_ptrace_headers='
783#if HAVE_SYS_TYPES_H
784# include <sys/types.h>
785#endif
786#if HAVE_SYS_PTRACE_H
787# include <sys/ptrace.h>
788#endif
789#if HAVE_UNISTD_H
790# include <unistd.h>
791#endif
792'
793# There is no point in checking if we don't have a prototype.
a3828db0 794AC_CHECK_DECLS(ptrace, [], [
086ec9eb
MK
795 : ${gdb_cv_func_ptrace_ret='int'}
796 : ${gdb_cv_func_ptrace_args='int,int,long,long'}
797], $gdb_ptrace_headers)
064ef605
DJ
798# Check return type. Varargs (used on GNU/Linux) conflict with the
799# empty argument list, so check for that explicitly.
086ec9eb
MK
800AC_CACHE_CHECK([return type of ptrace], gdb_cv_func_ptrace_ret,
801 AC_TRY_COMPILE($gdb_ptrace_headers,
064ef605
DJ
802 [extern long ptrace (enum __ptrace_request, ...);],
803 gdb_cv_func_ptrace_ret='long',
804 AC_TRY_COMPILE($gdb_ptrace_headers,
805 [extern int ptrace ();],
806 gdb_cv_func_ptrace_ret='int',
807 gdb_cv_func_ptrace_ret='long')))
086ec9eb
MK
808AC_DEFINE_UNQUOTED(PTRACE_TYPE_RET, $gdb_cv_func_ptrace_ret,
809 [Define as the return type of ptrace.])
810# Check argument types.
811AC_CACHE_CHECK([types of arguments for ptrace], gdb_cv_func_ptrace_args, [
064ef605
DJ
812 AC_TRY_COMPILE($gdb_ptrace_headers,
813 [extern long ptrace (enum __ptrace_request, ...);],
814 [gdb_cv_func_ptrace_args='int,int,long,long'],[
086ec9eb
MK
815for gdb_arg1 in 'int' 'long'; do
816 for gdb_arg2 in 'pid_t' 'int' 'long'; do
5ed10e6e 817 for gdb_arg3 in 'int *' 'caddr_t' 'int' 'long' 'void *'; do
086ec9eb
MK
818 for gdb_arg4 in 'int' 'long'; do
819 AC_TRY_COMPILE($gdb_ptrace_headers, [
820extern $gdb_cv_func_ptrace_ret
821 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4);
822], [gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4";
823 break 4;])
824 for gdb_arg5 in 'int *' 'int' 'long'; do
825 AC_TRY_COMPILE($gdb_ptrace_headers, [
826extern $gdb_cv_func_ptrace_ret
827 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4, $gdb_arg5);
828], [
829gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4,$gdb_arg5";
830 break 5;])
831 done
832 done
833 done
834 done
835done
836# Provide a safe default value.
837: ${gdb_cv_func_ptrace_args='int,int,long,long'}
064ef605 838])])
086ec9eb
MK
839ac_save_IFS=$IFS; IFS=','
840set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
841IFS=$ac_save_IFS
842shift
64218d3e 843AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, $[3],
086ec9eb
MK
844 [Define to the type of arg 3 for ptrace.])
845if test -n "$[5]"; then
64218d3e 846 AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, $[5],
086ec9eb
MK
847 [Define to the type of arg 5 for ptrace.])
848fi
849
72473524
DJ
850dnl AC_FUNC_SETPGRP does not work when cross compiling
851dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
852if test "$cross_compiling" = no; then
853 AC_FUNC_SETPGRP
854else
855 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
856 [AC_TRY_COMPILE([
857#include <unistd.h>
858], [
859 if (setpgrp(1,1) == -1)
860 exit (0);
861 else
862 exit (1);
863], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
864if test $ac_cv_func_setpgrp_void = yes; then
865 AC_DEFINE(SETPGRP_VOID, 1)
866fi
867fi
c906108c 868
2b2d558c
MK
869# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
870# since sigsetjmp might only be defined as a macro.
871AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
872[AC_TRY_COMPILE([
873#include <setjmp.h>
874], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
875gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
876if test $gdb_cv_func_sigsetjmp = yes; then
877 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
878fi
879
06825bd1
MK
880# Assume we'll default to using the included libiberty regex.
881gdb_use_included_regex=yes
882
883# However, if the system regex is GNU regex, then default to *not*
884# using the included regex.
885AC_CACHE_CHECK(
886 [for GNU regex],
887 [gdb_cv_have_gnu_regex],
888 [AC_TRY_COMPILE(
889 [#include <gnu-versions.h>],
890 [#define REGEX_INTERFACE_VERSION 1
891#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
892# error "Version mismatch"
893#endif],
894 gdb_cv_have_gnu_regex=yes,
895 gdb_cv_have_gnu_regex=no)])
896if test $gdb_cv_have_gnu_regex = yes; then
897 gdb_use_included_regex=no
898fi
899
900AC_ARG_WITH(included-regex,
901 [ --without-included-regex don't use included regex; this is the default
902 on systems with version 2 of the GNU C library
903 (use with caution on other system)],
904 gdb_with_regex=$withval,
905 gdb_with_regex=$gdb_use_included_regex)
906if test "$gdb_with_regex" = yes; then
907 AC_DEFINE(USE_INCLUDED_REGEX, 1,
908 [Define to 1 if the regex included in libiberty should be used.])
909fi
910
5c45e068
MK
911# Check if <sys/proc.h> defines `struct thread' with a td_pcb member.
912AC_CHECK_MEMBERS([struct thread.td_pcb], [], [],
913[#include <sys/param.h>
914#include <sys/proc.h>
915])
70f9f479 916
da7d81e3
NW
917# See if <sys/lwp.h> defines `struct lwp`.
918AC_CACHE_CHECK([for struct lwp], gdb_cv_struct_lwp,
919[AC_TRY_COMPILE([#include <sys/param.h>
920#include <sys/lwp.h>], [struct lwp l;],
921gdb_cv_struct_lwp=yes, gdb_cv_struct_lwp=no)])
922if test $gdb_cv_struct_lwp = yes; then
923 AC_DEFINE(HAVE_STRUCT_LWP, 1,
924 [Define to 1 if your system has struct lwp.])
925fi
926
78434e59
MK
927# See if <machine/reg.h> degines `struct reg'.
928AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
929[AC_TRY_COMPILE([#include <sys/types.h>
930#include <machine/reg.h>], [struct reg r;],
931gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
932if test $gdb_cv_struct_reg = yes; then
933 AC_DEFINE(HAVE_STRUCT_REG, 1,
934 [Define to 1 if your system has struct reg in <machine/reg.h>.])
935fi
936
0afdd437 937# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 938# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
5c45e068
MK
939AC_CHECK_MEMBERS([struct reg.r_fs, struct reg.r_gs], [], [],
940 [#include <machine/reg.h>])
7dfa765c 941
0afdd437 942# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
943AC_MSG_CHECKING(for PTRACE_GETREGS)
944AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
945[AC_TRY_COMPILE([#include <sys/ptrace.h>],
946 [PTRACE_GETREGS;],
947 [gdb_cv_have_ptrace_getregs=yes],
948 [gdb_cv_have_ptrace_getregs=no])])
949AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
950if test $gdb_cv_have_ptrace_getregs = yes; then
60ca704f
SE
951 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
952 [Define if sys/ptrace.h defines the PTRACE_GETREGS request.])
f60300e7
MK
953fi
954
0afdd437 955# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
956AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
957AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 958[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
959 [PTRACE_GETFPXREGS;],
960 [gdb_cv_have_ptrace_getfpxregs=yes],
961 [gdb_cv_have_ptrace_getfpxregs=no])])
962AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
963if test $gdb_cv_have_ptrace_getfpxregs = yes; then
60ca704f
SE
964 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
965 [Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request.])
5c44784c
JM
966fi
967
0afdd437
MK
968# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
969AC_MSG_CHECKING(for PT_GETDBREGS)
970AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
971[AC_TRY_COMPILE([#include <sys/types.h>
972#include <sys/ptrace.h>],
973 [PT_GETDBREGS;],
974 [gdb_cv_have_pt_getdbregs=yes],
975 [gdb_cv_have_pt_getdbregs=no])])
976AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
977if test $gdb_cv_have_pt_getdbregs = yes; then
60ca704f
SE
978 AC_DEFINE(HAVE_PT_GETDBREGS, 1,
979 [Define if sys/ptrace.h defines the PT_GETDBREGS request.])
0afdd437
MK
980fi
981
7e89e357
JT
982# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
983AC_MSG_CHECKING(for PT_GETXMMREGS)
984AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
985[AC_TRY_COMPILE([#include <sys/types.h>
986#include <sys/ptrace.h>],
987 [PT_GETXMMREGS;],
988 [gdb_cv_have_pt_getxmmregs=yes],
989 [gdb_cv_have_pt_getxmmregs=no])])
990AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
991if test $gdb_cv_have_pt_getxmmregs = yes; then
60ca704f
SE
992 AC_DEFINE(HAVE_PT_GETXMMREGS, 1,
993 [Define if sys/ptrace.h defines the PT_GETXMMREGS request.])
7e89e357
JT
994fi
995
eb368090 996# Detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
997
998if test "${target}" = "${host}"; then
999 case "${host}" in
1045b512 1000 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
60ca704f
SE
1001 AC_DEFINE(NEW_PROC_API, 1,
1002 [Define if you want to use new multi-fd /proc interface
1003 (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).])
c3f6f71d 1004 ;;
c162e8c9 1005 *-*-solaris2.[[6789]] | *-*-solaris2.1[[0-9]]*)
60ca704f
SE
1006 AC_DEFINE(NEW_PROC_API, 1,
1007 [Define if you want to use new multi-fd /proc interface
1008 (replaces HAVE_MULTIPLE_PROC_FDS as well as other macros).])
c3f6f71d 1009 ;;
c960c18f
AC
1010 mips-sgi-irix5*)
1011 # Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
60ca704f
SE
1012 AC_DEFINE([_KMEMUSER], 1,
1013 [Define to 1 so <sys/proc.h> gets a definition of anon_hdl. Works
1014 around a <sys/proc.h> problem on IRIX 5.])
c960c18f 1015 ;;
c906108c 1016 esac
c906108c
SS
1017fi
1018
1019if test "$ac_cv_header_sys_procfs_h" = yes; then
1020 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
1021 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
1022 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
1023 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
1024 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
1025 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
1026 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
1027 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
1028 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
1029 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
1030 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
1031 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
1032 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
1033 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 1034
23e04971 1035
d84dd0c5
MK
1036 dnl Check for broken prfpregset_t type
1037
1038 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
1039 dnl prfpregset_t type (it's a typedef for the pointer to a struct
1040 dnl instead of the struct itself). We detect this here, and work
a3007b6f 1041 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
1042
1043 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
1044 AC_MSG_CHECKING(whether prfpregset_t type is broken)
1045 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
1046 [AC_TRY_RUN([#include <sys/procfs.h>
1047 int main ()
1048 {
1049 if (sizeof (prfpregset_t) == sizeof (void *))
1050 return 1;
1051 return 0;
1052 }],
1053 gdb_cv_prfpregset_t_broken=no,
1054 gdb_cv_prfpregset_t_broken=yes,
1055 gdb_cv_prfpregset_t_broken=yes)])
1056 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
1057 if test $gdb_cv_prfpregset_t_broken = yes; then
60ca704f
SE
1058 AC_DEFINE(PRFPREGSET_T_BROKEN, 1,
1059 [Define if the prfpregset_t type is broken.])
d84dd0c5
MK
1060 fi
1061 fi
1062
c906108c
SS
1063 dnl Check for PIOCSET ioctl entry
1064
1065 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
1066 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
1067 [AC_TRY_COMPILE([#include <unistd.h>
1068#include <sys/types.h>
1069#include <sys/procfs.h>
1070], [
1071 int dummy;;
1072 dummy = ioctl(0, PIOCSET, &dummy);
1073 ],
1074 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
1075 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
1076 if test $gdb_cv_have_procfs_piocset = yes; then
60ca704f
SE
1077 AC_DEFINE(HAVE_PROCFS_PIOCSET, 1,
1078 [Define if ioctl argument PIOCSET is available.])
c906108c
SS
1079 fi
1080fi
1081
d45fe813
KB
1082dnl For native ports (host == target), check to see what kind of
1083dnl legacy link.h support is needed. (See solib-legacy.c.)
1084if test ${host} = ${target} ; then
1085 dnl Check for struct link_map with l_ members which are indicative
1086 dnl of SVR4-like shared libraries
1087
1088 AC_MSG_CHECKING(for member l_addr in struct link_map)
1089 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
1090 [AC_TRY_COMPILE([#include <link.h>],
1091 [struct link_map lm; (void) lm.l_addr;],
1092 gdb_cv_have_struct_link_map_with_l_members=yes,
1093 gdb_cv_have_struct_link_map_with_l_members=no)])
1094 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
1095 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
60ca704f
SE
1096 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS,1,
1097 [Define if <link.h> exists and defines struct link_map which has
1098 members with an ``l_'' prefix. (For Solaris, SVR4, and
1099 SVR4-like systems.)])
d45fe813
KB
1100 fi
1101
1102 dnl Check for struct link_map with lm_ members which are indicative
1103 dnl of SunOS-like shared libraries
1104
1105 AC_MSG_CHECKING(for member lm_addr in struct link_map)
1106 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
1107 [AC_TRY_COMPILE([#include <sys/types.h>
1108#include <link.h>],
1109 [struct link_map lm; (void) lm.lm_addr;],
1110 gdb_cv_have_struct_link_map_with_lm_members=yes,
1111 gdb_cv_have_struct_link_map_with_lm_members=no)])
1112 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
1113 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
60ca704f
SE
1114 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS, 1,
1115 [Define if <link.h> exists and defines struct link_map which has
1116 members with an ``lm_'' prefix. (For SunOS.)])
d45fe813
KB
1117 fi
1118
1119 dnl Check for struct so_map with som_ members which are found on
1120 dnl some *BSD systems.
1121
1122 AC_MSG_CHECKING(for member som_addr in struct so_map)
1123 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
1124 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
1125#ifdef HAVE_NLIST_H
1126#include <nlist.h>
1127#endif
d45fe813
KB
1128#include <link.h>],
1129 [struct so_map lm; (void) lm.som_addr;],
1130 gdb_cv_have_struct_so_map_with_som_members=yes,
1131 gdb_cv_have_struct_so_map_with_som_members=no)])
1132 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
1133 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
60ca704f
SE
1134 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS, 1,
1135 [Define if <link.h> exists and defines a struct so_map which has
1136 members with an ``som_'' prefix. (Found on older *BSD systems.)])
d45fe813
KB
1137 fi
1138
1139 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
1140 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
1141
1142 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
1143 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
1144 [AC_TRY_COMPILE([#define _SYSCALL32
1145#include <sys/link.h>], [struct link_map32 l;],
1146 gdb_cv_have_struct_link_map32=yes,
1147 gdb_cv_have_struct_link_map32=no)])
1148 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
1149 if test $gdb_cv_have_struct_link_map32 = yes; then
60ca704f
SE
1150 AC_DEFINE(HAVE_STRUCT_LINK_MAP32, 1,
1151 [Define if <sys/link.h> has struct link_map32])
1152 AC_DEFINE(_SYSCALL32, 1,
1153 [Define if <sys/link.h> has link_map32 (solaris sparc-64 target)])
d45fe813
KB
1154 fi
1155fi
1156
bc8bcb4b
MK
1157# Check if the compiler supports the `long long' type.
1158
1159AC_CACHE_CHECK([for long long support in compiler], gdb_cv_c_long_long,
1160 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1161[[extern long long foo;]],
1162[[switch (foo & 2) { case 0: return 1; }]])],
1163 gdb_cv_c_long_long=yes,
1164 gdb_cv_c_long_long=no)])
c906108c 1165if test $gdb_cv_c_long_long = yes; then
bc8bcb4b
MK
1166 AC_DEFINE(CC_HAS_LONG_LONG, 1,
1167 [Define to 1 if the compiler supports long long.])
c906108c
SS
1168fi
1169
bc8bcb4b 1170# Check if the compiler and runtime support printing long longs.
c906108c 1171
bc8bcb4b
MK
1172AC_CACHE_CHECK([for long long support in printf],
1173 gdb_cv_printf_has_long_long,
1174 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1175[[char buf[32];
c906108c
SS
1176 long long l = 0;
1177 l = (l << 16) + 0x0123;
1178 l = (l << 16) + 0x4567;
1179 l = (l << 16) + 0x89ab;
1180 l = (l << 16) + 0xcdef;
1181 sprintf (buf, "0x%016llx", l);
bc8bcb4b
MK
1182 return (strcmp ("0x0123456789abcdef", buf));]])],
1183 gdb_cv_printf_has_long_long=yes,
1184 gdb_cv_printf_has_long_long=no,
1185 gdb_cv_printf_has_long_long=no)])
c906108c 1186if test $gdb_cv_printf_has_long_long = yes; then
bc8bcb4b
MK
1187 AC_DEFINE(PRINTF_HAS_LONG_LONG, 1,
1188 [Define to 1 if the "%ll" format works to print long longs.])
c906108c 1189fi
c906108c 1190
1a619819
LM
1191# Check if the compiler and runtime support printing decfloats.
1192
1193AC_CACHE_CHECK([for decfloat support in printf],
1194 gdb_cv_printf_has_decfloat,
1195 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1196[[char buf[64];
1197 _Decimal32 d32 = 1.2345df;
1198 _Decimal64 d64 = 1.2345dd;
1199 _Decimal128 d128 = 1.2345dl;
1200 sprintf (buf, "Decimal32: %H\nDecimal64: %D\nDecimal128: %DD", d32, d64, d128);
1201 return (strcmp ("Decimal32: 1.2345\nDecimal64: 1.2345\nDecimal128: 1.2345", buf));]])],
1202 gdb_cv_printf_has_decfloat=yes,
1203 gdb_cv_printf_has_decfloat=no,
1204 gdb_cv_printf_has_decfloat=no)])
1205if test $gdb_cv_printf_has_decfloat = yes; then
1206 AC_DEFINE(PRINTF_HAS_DECFLOAT, 1,
1207 [Define to 1 if the "%H, %D and %DD" formats work to print decfloats.])
1208fi
1209
bc8bcb4b
MK
1210# Check if the compiler supports the `long double' type. We can't use
1211# AC_C_LONG_DOUBLE because that one does additional checks on the
1212# constants defined in <float.h> that fail on some systems,
1213# e.g. FreeBSD/i386 4.7 and OpenBSD/i386 3.6.
c906108c 1214
bc8bcb4b
MK
1215AC_CACHE_CHECK([for long double support in compiler], gdb_cv_c_long_double,
1216 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[long double foo;]])],
1217 gdb_cv_c_long_double=yes,
1218 gdb_cv_c_long_double=no)])
1219if test $gdb_cv_c_long_double = yes; then
1220 AC_DEFINE(HAVE_LONG_DOUBLE, 1,
1221 [Define to 1 if the compiler supports long double.])
c906108c
SS
1222fi
1223
bc8bcb4b 1224# Check if the compiler and runtime support printing long doubles.
c906108c 1225
bc8bcb4b
MK
1226AC_CACHE_CHECK([for long double support in printf],
1227 gdb_cv_printf_has_long_double,
1228 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1229[[char buf[16];
c906108c
SS
1230 long double f = 3.141592653;
1231 sprintf (buf, "%Lg", f);
bc8bcb4b
MK
1232 return (strncmp ("3.14159", buf, 7));]])],
1233 gdb_cv_printf_has_long_double=yes,
1234 gdb_cv_printf_has_long_double=no,
1235 gdb_cv_printf_has_long_double=no)])
c906108c 1236if test $gdb_cv_printf_has_long_double = yes; then
bc8bcb4b
MK
1237 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE, 1,
1238 [Define to 1 if the "%Lg" format works to print long doubles.])
c906108c 1239fi
c906108c 1240
bc8bcb4b 1241# Check if the compiler and runtime support scanning long doubles.
c906108c 1242
bc8bcb4b
MK
1243AC_CACHE_CHECK([for long double support in scanf],
1244 gdb_cv_scanf_has_long_double,
1245 [AC_RUN_IFELSE([AC_LANG_PROGRAM(
1246[[#include <stdio.h>]],
1247[[char *buf = "3.141592653";
c906108c
SS
1248 long double f = 0;
1249 sscanf (buf, "%Lg", &f);
bc8bcb4b
MK
1250 return !(f > 3.14159 && f < 3.14160);]])],
1251 gdb_cv_scanf_has_long_double=yes,
1252 gdb_cv_scanf_has_long_double=no,
1253 gdb_cv_scanf_has_long_double=no)])
c906108c 1254if test $gdb_cv_scanf_has_long_double = yes; then
bc8bcb4b
MK
1255 AC_DEFINE(SCANF_HAS_LONG_DOUBLE, 1,
1256 [Define to 1 if the "%Lg" format works to scan long doubles.])
c906108c 1257fi
c906108c 1258
438013df
AO
1259case ${host_os} in
1260aix*)
1261 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1262 SAVE_LDFLAGS=$LDFLAGS
1263
1264 case $GCC in
1265 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1266 *) gdb_cv_bigtoc=-bbigtoc ;;
1267 esac
1268
1269 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1270 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 1271 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
1272 ])
1273 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
1274 ;;
1275esac
1276
c906108c 1277
d92419e5
JB
1278dnl For certain native configurations, we need to check whether thread
1279dnl support can be built in or not.
1280dnl
1281dnl Note that we only want this if we are both native (host == target),
1282dnl and not doing a canadian cross build (build == host).
c906108c
SS
1283
1284if test ${build} = ${host} -a ${host} = ${target} ; then
1285 case ${host_os} in
1286 hpux*)
1287 AC_MSG_CHECKING(for HPUX/OSF thread support)
1288 if test -f /usr/include/dce/cma_config.h ; then
1289 if test "$GCC" = "yes" ; then
1290 AC_MSG_RESULT(yes)
60ca704f
SE
1291 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT, 1,
1292 [Define if you have HPUX threads])
3483b318 1293 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
1294 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
1295 else
1296 AC_MSG_RESULT(no (suppressed because you are not using GCC))
1297 fi
1298 else
1299 AC_MSG_RESULT(no)
1300 fi
1301 ;;
1302 solaris*)
d92419e5
JB
1303 # See if thread_db library is around for Solaris thread debugging.
1304 # Note that we must explicitly test for version 1 of the library
1305 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
1306 # the same API.
c906108c
SS
1307 AC_MSG_CHECKING(for Solaris thread debugging library)
1308 if test -f /usr/lib/libthread_db.so.1 ; then
1309 AC_MSG_RESULT(yes)
60ca704f
SE
1310 AC_DEFINE(HAVE_THREAD_DB_LIB, 1,
1311 [Define if using Solaris thread debugging.])
3483b318 1312 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
1313 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
1314 AC_CHECK_LIB(dl, dlopen)
1315 if test "$GCC" = "yes" ; then
1316 # The GNU linker requires the -export-dynamic option to make
1317 # all symbols visible in the dynamic symbol table.
1318 hold_ldflags=$LDFLAGS
1319 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1320 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1321 AC_TRY_LINK(, [int i;], found=yes, found=no)
1322 LDFLAGS=$hold_ldflags
1323 AC_MSG_RESULT($found)
1324 if test $found = yes; then
1325 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
1326 fi
1327 fi
1328 # Sun randomly tweaked the prototypes in <proc_service.h>
1329 # at one point.
1330 AC_MSG_CHECKING(if <proc_service.h> is old)
1331 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
1332 AC_TRY_COMPILE([
1333 #include <proc_service.h>
1334 ps_err_e ps_pdwrite
1335 (struct ps_prochandle*, psaddr_t, const void*, size_t);
1336 ],, gdb_cv_proc_service_is_old=no,
1337 gdb_cv_proc_service_is_old=yes)
1338 ])
1339 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
1340 if test $gdb_cv_proc_service_is_old = yes; then
60ca704f
SE
1341 AC_DEFINE(PROC_SERVICE_IS_OLD, 1,
1342 [Define if <proc_service.h> on solaris uses int instead of
1343 size_t, and assorted other type changes.])
c906108c
SS
1344 fi
1345 else
1346 AC_MSG_RESULT(no)
1347 fi
1348 ;;
d92419e5
JB
1349 aix*)
1350 AC_MSG_CHECKING(for AiX thread debugging library)
1351 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1352 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1353 [#ifndef PTHDB_VERSION_3
1354 #error
1355 #endif],
1356 gdb_cv_have_aix_thread_debug=yes,
1357 gdb_cv_have_aix_thread_debug=no)])
1358 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1359 if test $gdb_cv_have_aix_thread_debug = yes; then
1360 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1361 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1362 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1363 fi
1364 ;;
c906108c
SS
1365 esac
1366 AC_SUBST(CONFIG_LDFLAGS)
1367fi
1368
59f80f10
DJ
1369dnl See if we have a thread_db header file that has TD_NOTALLOC and
1370dnl other error codes.
3f47be5c
EZ
1371if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1372 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1373 gdb_cv_thread_db_h_has_td_notalloc,
1374 AC_TRY_COMPILE(
1375 [#include <thread_db.h>],
1376 [int i = TD_NOTALLOC;],
1377 gdb_cv_thread_db_h_has_td_notalloc=yes,
1378 gdb_cv_thread_db_h_has_td_notalloc=no
1379 )
1380 )
59f80f10
DJ
1381 AC_CACHE_CHECK([whether <thread_db.h> has TD_VERSION],
1382 gdb_cv_thread_db_h_has_td_version,
1383 AC_TRY_COMPILE(
1384 [#include <thread_db.h>],
1385 [int i = TD_VERSION;],
1386 gdb_cv_thread_db_h_has_td_version=yes,
1387 gdb_cv_thread_db_h_has_td_version=no
1388 )
1389 )
1390 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTLS],
1391 gdb_cv_thread_db_h_has_td_notls,
1392 AC_TRY_COMPILE(
1393 [#include <thread_db.h>],
1394 [int i = TD_NOTLS;],
1395 gdb_cv_thread_db_h_has_td_notls=yes,
1396 gdb_cv_thread_db_h_has_td_notls=no
1397 )
1398 )
3f47be5c
EZ
1399fi
1400if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1401 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1402 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1403fi
59f80f10
DJ
1404if test "x$gdb_cv_thread_db_h_has_td_version" = "xyes"; then
1405 AC_DEFINE(THREAD_DB_HAS_TD_VERSION, 1,
1406 [Define if <thread_db.h> has the TD_VERSION error code.])
1407fi
1408if test "x$gdb_cv_thread_db_h_has_td_notls" = "xyes"; then
1409 AC_DEFINE(THREAD_DB_HAS_TD_NOTLS, 1,
1410 [Define if <thread_db.h> has the TD_NOTLS error code.])
1411fi
3f47be5c 1412
b757528f
JJ
1413dnl See if we have a sys/syscall header file that has __NR_tkill.
1414if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1415 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1416 gdb_cv_sys_syscall_h_has_tkill,
1417 AC_TRY_COMPILE(
1418 [#include <sys/syscall.h>],
1419 [int i = __NR_tkill;],
1420 gdb_cv_sys_syscall_h_has_tkill=yes,
1421 gdb_cv_sys_syscall_h_has_tkill=no
1422 )
1423 )
1424fi
1425dnl See if we can issue tkill syscall.
1426if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
60ca704f 1427 AC_DEFINE(HAVE_TKILL_SYSCALL, 1, [Define if you support the tkill syscall.])
b757528f
JJ
1428fi
1429
10568435
JK
1430dnl Check if we can disable the virtual address space randomization.
1431dnl The functionality of setarch -R.
1432AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
1433define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
1434# if !HAVE_DECL_ADDR_NO_RANDOMIZE
1435# define ADDR_NO_RANDOMIZE 0x0040000
1436# endif
1437 /* Test the flag could be set and stays set. */
1438 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
1439 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
1440 return 1])])
1441AC_RUN_IFELSE([PERSONALITY_TEST],
1442 [have_personality=true],
1443 [have_personality=false],
1444 [AC_LINK_IFELSE([PERSONALITY_TEST],
1445 [have_personality=true],
1446 [have_personality=false])])
1447if $have_personality
1448then
1449 AC_DEFINE([HAVE_PERSONALITY], 1,
1450 [Define if you support the personality syscall.])
1451fi
1452
c906108c 1453dnl Handle optional features that can be enabled.
fb40c209 1454
030292b7
DJ
1455AC_ARG_WITH(sysroot,
1456[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
1457[
1458 case ${with_sysroot} in
715d1656 1459 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1460 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1461 esac
1462
1463 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1464
07abfebf
RS
1465 if test "x$prefix" = xNONE; then
1466 test_prefix=/usr/local
1467 else
1468 test_prefix=$prefix
1469 fi
aa28a74e 1470 if test "x$exec_prefix" = xNONE || test "x$exec_prefix" = 'x${prefix}'; then
07abfebf 1471 test_exec_prefix=$test_prefix
030292b7 1472 else
07abfebf 1473 test_exec_prefix=$exec_prefix
030292b7
DJ
1474 fi
1475 case ${TARGET_SYSTEM_ROOT} in
715d1656 1476 "${test_prefix}"|"${test_prefix}/"*|\
07abfebf
RS
1477 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
1478 '${prefix}'|'${prefix}/'*|\
715d1656 1479 '${exec_prefix}'|'${exec_prefix}/'*)
030292b7
DJ
1480 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
1481 TARGET_SYSTEM_ROOT_DEFINE="$t"
1482 ;;
1483 esac
1484], [
1485 TARGET_SYSTEM_ROOT=
1486 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1487])
1488AC_SUBST(TARGET_SYSTEM_ROOT)
1489AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1490
094a342e
MK
1491AC_ARG_ENABLE(werror,
1492 [ --enable-werror treat compile warnings as errors],
1493 [case "${enableval}" in
1494 yes | y) ERROR_ON_WARNING="yes" ;;
1495 no | n) ERROR_ON_WARNING="no" ;;
1496 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
1497 esac])
1498
1499# Enable -Werror by default when using gcc
1500if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
1501 ERROR_ON_WARNING=yes
1502fi
1503
1504WERROR_CFLAGS=""
1505if test "${ERROR_ON_WARNING}" = yes ; then
1506 WERROR_CFLAGS="-Werror"
1507fi
1508
aa79a185
DJ
1509# The entries after -Wno-pointer-sign are disabled warnings which may
1510# be enabled in the future, which can not currently be used to build
1511# GDB.
1512# NOTE: If you change this list, remember to update
3b851bce 1513# gdb/doc/gdbint.texinfo.
aa79a185
DJ
1514build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
1515-Wformat-nonliteral -Wno-pointer-sign \
58b38ee2 1516-Wno-unused -Wno-switch -Wno-char-subscripts"
a3b362c4 1517
3526781e
DJ
1518# Enable -Wno-format by default when using gcc on mingw since many
1519# GCC versions complain about %I64.
1520case "${host}" in
1521 *-*-mingw32*) build_warnings="$build_warnings -Wno-format" ;;
1522esac
1523
c906108c
SS
1524AC_ARG_ENABLE(build-warnings,
1525[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 1526[case "${enableval}" in
c906108c
SS
1527 yes) ;;
1528 no) build_warnings="-w";;
1529 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1530 build_warnings="${build_warnings} ${t}";;
1531 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1532 build_warnings="${t} ${build_warnings}";;
1533 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1534esac
1535if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1536 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1537fi])dnl
3b851bce
AC
1538AC_ARG_ENABLE(gdb-build-warnings,
1539[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
1540[case "${enableval}" in
1541 yes) ;;
1542 no) build_warnings="-w";;
1543 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1544 build_warnings="${build_warnings} ${t}";;
1545 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1546 build_warnings="${t} ${build_warnings}";;
1547 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1548esac
1549if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1550 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1551fi])dnl
104c1213 1552WARN_CFLAGS=""
c906108c
SS
1553if test "x${build_warnings}" != x -a "x$GCC" = xyes
1554then
746a987d
AC
1555 AC_MSG_CHECKING(compiler warning flags)
1556 # Separate out the -Werror flag as some files just cannot be
1557 # compiled with it enabled.
1558 for w in ${build_warnings}; do
1559 case $w in
1560 -Werr*) WERROR_CFLAGS=-Werror ;;
1561 *) # Check that GCC accepts it
4536bbc6
AC
1562 saved_CFLAGS="$CFLAGS"
1563 CFLAGS="$CFLAGS $w"
1564 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1565 CFLAGS="$saved_CFLAGS"
746a987d
AC
1566 esac
1567 done
aa79a185 1568 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
1decb323 1569fi
c906108c 1570AC_SUBST(WARN_CFLAGS)
104c1213 1571AC_SUBST(WERROR_CFLAGS)
c906108c 1572
7a292a7a
SS
1573# In the Cygwin environment, we need some additional flags.
1574AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1575[AC_EGREP_CPP(lose, [
1576#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1577lose
1578#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1579
aff38e61
AC
1580
1581dnl Figure out which of the many generic ser-*.c files the _host_ supports.
3eb25fda 1582SER_HARDWIRE="ser-base.o ser-unix.o ser-pipe.o ser-tcp.o"
aff38e61 1583case ${host} in
95cbc983
AC
1584 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1585 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
0ea3f30e 1586 *mingw32*) SER_HARDWIRE="ser-base.o ser-tcp.o ser-mingw.o" ;;
aff38e61
AC
1587esac
1588AC_SUBST(SER_HARDWIRE)
1589
cd0fc7c3
SS
1590# libreadline needs libuser32.a in a cygwin environment
1591WIN32LIBS=
1592if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1593 WIN32LIBS="-luser32"
1594 case "${target}" in
1595 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1596 ;;
1597 esac
cd0fc7c3 1598fi
b4505029
MM
1599
1600# The ser-tcp.c module requires sockets.
1601case ${host} in
1602 *mingw32*)
1603 AC_DEFINE(USE_WIN32API, 1,
1604 [Define if we should use the Windows API, instead of the
1605 POSIX API. On Windows, we use the Windows API when
1606 building for MinGW, but the POSIX API when building
1607 for Cygwin.])
1608 WIN32LIBS="$WIN32LIBS -lws2_32"
1609 ;;
1610esac
cd0fc7c3 1611AC_SUBST(WIN32LIBS)
7a292a7a 1612
31d99776
DJ
1613# Add ELF support to GDB, but only if BFD includes ELF support.
1614OLD_CFLAGS=$CFLAGS
1615OLD_LDFLAGS=$LDFLAGS
1616OLD_LIBS=$LIBS
cab58a69 1617CFLAGS="$CFLAGS -I${srcdir}/../include -I../bfd -I${srcdir}/../bfd"
31d99776 1618LDFLAGS="$LDFLAGS -L../bfd -L../libiberty"
7b3200f9 1619intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
0f72fb1c 1620LIBS="-lbfd -liberty $intl $LIBS"
31d99776
DJ
1621AC_CACHE_CHECK([for ELF support in BFD], gdb_cv_var_elf,
1622[AC_TRY_LINK(
1623[#include <stdlib.h>
1624#include "bfd.h"
1625#include "elf-bfd.h"
1626],
1627[bfd *abfd = NULL; bfd_get_elf_phdr_upper_bound (abfd); ],
1628gdb_cv_var_elf=yes, gdb_cv_var_elf=no)])
1629if test $gdb_cv_var_elf = yes; then
1630 CONFIG_OBS="$CONFIG_OBS elfread.o"
1631 AC_DEFINE(HAVE_ELF, 1,
1632 [Define if ELF support should be included.])
1633fi
1634CFLAGS=$OLD_CFLAGS
1635LDFLAGS=$OLD_LDFLAGS
1636LIBS=$OLD_LIBS
1637
121ce6e5
DJ
1638# Add any host-specific objects to GDB.
1639CONFIG_OBS="${CONFIG_OBS} ${gdb_host_obs}"
1640
3fc11d3e
JM
1641LIBGUI="../libgui/src/libgui.a"
1642GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1643AC_SUBST(LIBGUI)
1644AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1645
3fc11d3e
JM
1646WIN32LDAPP=
1647AC_SUBST(WIN32LIBS)
1648AC_SUBST(WIN32LDAPP)
1649
d91670b9 1650case "${host}" in
686a5eed 1651*-*-cygwin* | *-*-mingw* )
d91670b9
CV
1652 configdir="win"
1653 ;;
1654*)
1655 configdir="unix"
1656 ;;
1657esac
3fc11d3e
JM
1658
1659GDBTKLIBS=
1660if test "${enable_gdbtk}" = "yes"; then
1661
d1c3b63a
KS
1662 # Gdbtk must have an absolute path to srcdir in order to run
1663 # properly when not installed.
1664 here=`pwd`
1665 cd ${srcdir}
1666 GDBTK_SRC_DIR=`pwd`
1667 cd $here
1668
5062cc19 1669 SC_PATH_TCLCONFIG
3fc11d3e 1670 if test -z "${no_tcl}"; then
5062cc19
KS
1671 SC_LOAD_TCLCONFIG
1672
1673 # Check for in-tree tcl
1674 here=`pwd`
1675 cd ${srcdir}/..
1676 topdir=`pwd`
1677 cd ${here}
1678
1679 intree="no"
1680 if test "${TCL_SRC_DIR}" = "${topdir}/tcl"; then
1681 intree="yes"
1682 fi
1683
1684 # Find Tcl private headers
1685 if test x"${intree}" = xno; then
1686 CY_AC_TCL_PRIVATE_HEADERS
1687 TCL_INCLUDE="${TCL_INCLUDE_SPEC} ${TCL_PRIVATE_INCLUDE}"
1688 TCL_LIBRARY="${TCL_LIB_SPEC}"
1689 TCL_DEPS=""
1690 else
1691 # If building tcl in the same src tree, private headers
1692 # are not needed, but we need to be sure to use the right
1693 # headers library
1694 TCL_INCLUDE="-I${TCL_SRC_DIR}/generic"
1695 TCL_LIBRARY="${TCL_BUILD_LIB_SPEC}"
1696 TCL_DEPS="../tcl/${configdir}${TCL_LIB_FILE}"
1697 fi
1698 AC_SUBST(TCL_INCLUDE)
1699 AC_SUBST(TCL_LIBRARY)
1700 AC_SUBST(TCL_DEPS)
dd2504ab 1701
3fc11d3e
JM
1702 # If $no_tk is nonempty, then we can't do Tk, and there is no
1703 # point to doing Tcl.
1704 if test -z "${no_tk}"; then
5062cc19
KS
1705 SC_PATH_TKCONFIG
1706 SC_LOAD_TKCONFIG
dd2504ab 1707
5062cc19
KS
1708 # Check for in-tree Tk
1709 intree="no"
1710 if test "${TK_SRC_DIR}" = "${topdir}/tk"; then
1711 intree="yes"
3fc11d3e
JM
1712 fi
1713
5062cc19
KS
1714 # Find Tk private headers
1715 if test x"${intree}" = xno; then
1716 CY_AC_TK_PRIVATE_HEADERS
1717 TK_INCLUDE="${TK_INCLUDE_SPEC} ${TK_PRIVATE_INCLUDE}"
1718 TK_LIBRARY=${TK_LIB_SPEC}
1719 TK_DEPS=""
1720 else
1721 TK_INCLUDE="-I${TK_SRC_DIR}/generic"
1722 TK_LIBRARY="${TK_BUILD_LIB_SPEC}"
1723 TK_DEPS="../tk/${configdir}/${TK_LIB_FILE}"
3fc11d3e 1724 fi
5062cc19
KS
1725 AC_SUBST(TK_INCLUDE)
1726 AC_SUBST(TK_LIBRARY)
1727 AC_SUBST(TK_DEPS)
1728 AC_SUBST(TK_XINCLUDES)
3fc11d3e 1729
4226a5a5 1730 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1731
1732 # Include some libraries that Tcl and Tk want.
5062cc19 1733 TCL_LIBS='$(LIBGUI) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1734 # Yes, the ordering seems wrong here. But it isn't.
1735 # TK_LIBS is the list of libraries that need to be linked
1736 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1737 # were in LIBS then any link tests after this point would
1738 # try to include things like `$(LIBGUI)', which wouldn't work.
1739 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1740
1741 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1742 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1743 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
33f8ca73
AC
1744 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1745 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1746 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1747 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
3fc11d3e
JM
1748
1749 if test x$gdb_cv_os_cygwin = xyes; then
1750 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1751 WIN32LDAPP="-Wl,--subsystem,console"
1752 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1753 fi
1754 fi
1755 fi
ffc6a242 1756
3ace7edb 1757 AC_CONFIG_SUBDIRS(gdbtk)
3fc11d3e
JM
1758fi
1759
3fc11d3e
JM
1760AC_SUBST(X_CFLAGS)
1761AC_SUBST(X_LDFLAGS)
1762AC_SUBST(X_LIBS)
3fc11d3e
JM
1763AC_SUBST(GDBTKLIBS)
1764AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1765AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1766
c906108c
SS
1767AC_PATH_X
1768
7a292a7a 1769# Unlike the sim directory, whether a simulator is linked is controlled by
9b624dbe 1770# presence of a gdb_sim definition in the target configure.tgt entry.
7a292a7a
SS
1771# This code just checks for a few cases where we'd like to ignore those
1772# definitions, even when they're present in the '.mt' file. These cases
1773# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1774# not part of the source tree.
7a292a7a
SS
1775#
1776AC_ARG_ENABLE(sim,
1777[ --enable-sim Link gdb with simulator],
1778[echo "enable_sim = $enable_sim";
1779 echo "enableval = ${enableval}";
1780 case "${enableval}" in
1781 yes) ignore_sim=false ;;
1782 no) ignore_sim=true ;;
1783 *) ignore_sim=false ;;
1784 esac],
1785[ignore_sim=false])
1786
1787if test ! -d "${srcdir}/../sim"; then
1788 ignore_sim=true
1789fi
1790
9b624dbe
UW
1791SIM=
1792SIM_OBS=
1793if test "${ignore_sim}" = "false"; then
1794 if test x"${gdb_sim}" != x ; then
1795 SIM="${gdb_sim}"
1796 SIM_OBS="remote-sim.o"
60ca704f 1797 AC_DEFINE(WITH_SIM, 1, [Define if the simulator is being linked in.])
9b624dbe 1798 fi
7a292a7a 1799fi
9b624dbe
UW
1800AC_SUBST(SIM)
1801AC_SUBST(SIM_OBS)
7a292a7a 1802
c906108c 1803AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1804AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1805
1806AC_SUBST(CONFIG_OBS)
1807AC_SUBST(CONFIG_DEPS)
1808AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1809AC_SUBST(CONFIG_ALL)
1810AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1811AC_SUBST(CONFIG_INSTALL)
1812AC_SUBST(CONFIG_UNINSTALL)
c906108c 1813
c35f4ffc
AC
1814# List of host floatformats.
1815AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1816AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1817AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1818
c906108c
SS
1819# target_subdir is used by the testsuite to find the target libraries.
1820target_subdir=
1821if test "${host}" != "${target}"; then
1822 target_subdir="${target_alias}/"
1823fi
1824AC_SUBST(target_subdir)
1825
1826frags=
771b4502 1827if test "${gdb_native}" = "yes"; then
0dad8a66
MK
1828 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1829 if test ! -f ${host_makefile_frag}; then
1830 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1831 fi
1832 frags="$frags $host_makefile_frag"
1833else
1834 host_makefile_frag=/dev/null
c906108c 1835fi
c906108c 1836
c906108c 1837AC_SUBST_FILE(host_makefile_frag)
c906108c
SS
1838AC_SUBST(frags)
1839
1840changequote(,)dnl
771b4502 1841if test "${gdb_native}" = "yes"; then
a85f51e7
DJ
1842# We pick this up from the host configuration file (.mh) because we
1843# do not have a native configuration Makefile fragment.
c906108c
SS
1844nativefile=`sed -n '
1845s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1846' ${host_makefile_frag}`
c906108c
SS
1847fi
1848changequote([,])
1849
b00a8037
DJ
1850if test x"${gdb_osabi}" != x ; then
1851 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1852 [Define to the default OS ABI for this configuration.])
1853fi
1854
8dcde887
MK
1855# Enable multi-ice-gdb-server.
1856AC_ARG_ENABLE(multi-ice,
1857[ --enable-multi-ice build the multi-ice-gdb-server],
1858 [case $enableval in
1859 yes | no)
1860 ;;
1861 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1862 esac])
1863if test "x$enable_multi_ice" = xyes; then
3ace7edb 1864 AC_CONFIG_SUBDIRS(multi-ice)
96baa820
JM
1865fi
1866
a13e2c95
UW
1867# We only build gdbserver automatically in a native configuration.
1868if test "$gdb_native" = "yes"; then
8dcde887
MK
1869 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1870 if test "x$build_gdbserver" = xyes; then
8dcde887 1871 AC_MSG_RESULT(yes)
3ace7edb 1872 AC_CONFIG_SUBDIRS(gdbserver)
8dcde887
MK
1873 else
1874 AC_MSG_RESULT(no)
1875 fi
a85f51e7
DJ
1876fi
1877
db985757 1878# If nativefile (NAT_FILE) is not set in config/*/*.m[ht] files, we link
2c0fc042 1879# to an empty version.
c906108c
SS
1880
1881files=
1882links=
5a2402b8 1883
c906108c 1884rm -f nm.h
5a2402b8 1885nm_h=""
c906108c 1886if test "${nativefile}" != ""; then
5a2402b8 1887 nm_h=nm.h
0f475e27
AC
1888 case "${nativefile}" in
1889 nm-*.h ) GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}" ;;
1890 * ) GDB_NM_FILE="${nativefile}"
1891 esac
5a2402b8
AC
1892 files="${files} ${GDB_NM_FILE}"
1893 links="${links} nm.h"
60ca704f 1894 AC_DEFINE_UNQUOTED(GDB_NM_FILE, "${GDB_NM_FILE}", [nativefile])
c906108c 1895fi
5a2402b8
AC
1896AC_SUBST(nm_h)
1897
c906108c
SS
1898AC_LINK_FILES($files, $links)
1899
1900dnl Check for exe extension set on certain hosts (e.g. Win32)
1901AC_EXEEXT
1902
234b45d4
KB
1903dnl Detect the character set used by this host.
1904
1905dnl At the moment, we just assume it's ISO-8859-1 (which is a
1906dnl superset of ASCII containing the characters needed for French,
1907dnl German, Spanish, Italian, and possibly others), but if were
1908dnl *were* to support any host character sets other than ISO-8859-1,
1909dnl here's where we'd detect it.
1910AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1911 [Define to be a string naming the default host character set.])
1912
1913AM_ICONV
1914
e28b3332 1915AC_OUTPUT(Makefile .gdbinit:gdbinit.in gnulib/Makefile,
c906108c
SS
1916[
1917dnl Autoconf doesn't provide a mechanism for modifying definitions
1918dnl provided by makefile fragments.
1919dnl
c906108c
SS
1920
1921changequote(,)dnl
db985757 1922sed -e '/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
c906108c
SS
1923mv -f Makefile.tmp Makefile
1924changequote([,])dnl
1925
2acceee2 1926
c906108c
SS
1927case x$CONFIG_HEADERS in
1928xconfig.h:config.in)
1929echo > stamp-h ;;
1930esac
1931],
1932[
1933gdb_host_cpu=$gdb_host_cpu
c906108c
SS
1934nativefile=$nativefile
1935])
1936
1937exit 0
This page took 0.71197 seconds and 4 git commands to generate.