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