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