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