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