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