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