gdbsupport/configure.ac: source development.sh
[deliverable/binutils-gdb.git] / gdb / configure.ac
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
b811d2c2 2dnl Copyright (C) 1995-2020 Free Software Foundation, Inc.
c906108c
SS
3dnl
4dnl This file is part of GDB.
4869db5e 5dnl
c906108c
SS
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
5a0e3bd0 8dnl the Free Software Foundation; either version 3 of the License, or
c906108c 9dnl (at your option) any later version.
5a0e3bd0 10dnl
c906108c
SS
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
5a0e3bd0 15dnl
c906108c 16dnl You should have received a copy of the GNU General Public License
5a0e3bd0 17dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
c906108c
SS
18
19dnl Process this file with autoconf to produce a configure script.
20
0d79cdc4
AM
21m4_include(../config/debuginfod.m4)
22
c906108c 23AC_INIT(main.c)
c5adaa19 24AC_CONFIG_HEADERS(config.h:config.in, [echo > stamp-h])
413ccac7 25AM_MAINTAINER_MODE
c906108c 26
17ef446e 27# Set the 'development' global.
270c9937 28. $srcdir/../bfd/development.sh
f5f1cdb6 29
c906108c 30AC_PROG_CC
3bc3d82a
PA
31AC_PROG_CXX
32
c462b41b 33AC_USE_SYSTEM_EXTENSIONS
da2f07f1 34ACX_LARGEFILE
c906108c 35AM_PROG_CC_STDC
4869db5e 36AM_PROG_INSTALL_STRIP
c906108c 37
e28b3332 38AC_CONFIG_AUX_DIR(..)
c906108c 39AC_CANONICAL_SYSTEM
9009e1ae 40AC_ARG_PROGRAM
c906108c 41
0bcda685
PA
42# We require a C++11 compiler. Check if one is available, and if
43# necessary, set CXX_DIALECT to some -std=xxx switch.
44AX_CXX_COMPILE_STDCXX(11, , mandatory)
45
a417dc56
RW
46# Dependency checking.
47ZW_CREATE_DEPDIR
48ZW_PROG_COMPILER_DEPENDENCIES([CC])
49
ddc9cd0f
AC
50dnl List of object files and targets accumulated by configure.
51
52CONFIG_OBS=
53CONFIG_DEPS=
54CONFIG_SRCS=
55ENABLE_CFLAGS=
56
57CONFIG_ALL=
58CONFIG_CLEAN=
59CONFIG_INSTALL=
60CONFIG_UNINSTALL=
61
20e95c23
DJ
62dnl Set up for gettext.
63ZW_GNU_GETTEXT_SISTER_DIR
ddc9cd0f
AC
64
65localedir='${datadir}/locale'
66AC_SUBST(localedir)
67
20e95c23 68if test x"$USE_NLS" = xyes; then
ddc9cd0f 69 CONFIG_ALL="$CONFIG_ALL all-po"
4869db5e 70 CONFIG_CLEAN="$CONFIG_CLEAN clean-po"
ddc9cd0f
AC
71 CONFIG_INSTALL="$CONFIG_INSTALL install-po"
72 CONFIG_UNINSTALL="$CONFIG_UNINSTALL uninstall-po"
73fi
74
75PACKAGE=gdb
76AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
77AC_SUBST(PACKAGE)
0fbb3da7 78
f06e05e0
JK
79# We never need to detect it in this sub-configure.
80# But preserve it for config.status --recheck.
81AC_ARG_VAR(MAKEINFO,
82 [Parent configure detects if it is of sufficient version.])
83AC_ARG_VAR(MAKEINFOFLAGS,
84 [Parameters for MAKEINFO.])
5048e516
JK
85
86MAKEINFO_EXTRA_FLAGS=""
87AC_CACHE_CHECK([whether $MAKEINFO supports @click], gdb_cv_have_makeinfo_click,
88 [echo '@clicksequence{a @click{} b}' >conftest.texinfo
89 if eval "$MAKEINFO conftest.texinfo >&5 2>&5"; then
90 gdb_cv_have_makeinfo_click=yes
91 else
92 gdb_cv_have_makeinfo_click=no
93 fi])
94if test x"$gdb_cv_have_makeinfo_click" = xyes; then
95 MAKEINFO_EXTRA_FLAGS="$MAKEINFO_EXTRA_FLAGS -DHAVE_MAKEINFO_CLICK"
96fi
97AC_SUBST(MAKEINFO_EXTRA_FLAGS)
98
b14b1491
TT
99GDB_AC_WITH_DIR(DEBUGDIR, separate-debug-dir,
100 [look for global separate debug info in this path @<:@LIBDIR/debug@:>@],
101 [${libdir}/debug])
102
f83d8a90
DE
103# We can't pass paths as command line arguments.
104# Mingw32 tries to be clever and will convert the paths for us.
105# For example -DBINDIR="/usr/local/bin" passed on the command line may get
106# converted to -DBINDIR="E:/msys/mingw32/msys/1.0/local/bin".
107# This breaks GDB's relocatable path conversions since paths passed in
108# config.h would not get so translated, the path prefixes no longer match.
109AC_DEFINE_DIR(BINDIR, bindir, [Directory of programs.])
110
b14b1491
TT
111# GDB's datadir relocation
112
113GDB_AC_WITH_DIR(GDB_DATADIR, gdb-datadir,
114 [look for global separate data files in this path @<:@DATADIR/gdb@:>@],
115 [${datadir}/gdb])
aa28a74e 116
29b0e8a2 117AC_ARG_WITH(relocated-sources,
d2596e2e 118AS_HELP_STRING([--with-relocated-sources=PATH], [automatically relocate this path for source files]),
29b0e8a2
JM
119[reloc_srcdir="${withval}"
120 AC_DEFINE_DIR(RELOC_SRCDIR, reloc_srcdir,
121 [Relocated directory for source files. ])
122])
123
7349ff92
JK
124AC_MSG_CHECKING([for default auto-load directory])
125AC_ARG_WITH(auto-load-dir,
126AS_HELP_STRING([--with-auto-load-dir=PATH],
1564a261
JK
127 [directories from which to load auto-loaded scripts @<:@$debugdir:$datadir/auto-load@:>@]),,
128 [with_auto_load_dir='$debugdir:$datadir/auto-load'])
2861ee4f 129escape_dir=`echo $with_auto_load_dir | sed -e 's/[[$]]datadir\>/\\\\\\\\\\\\&/g' -e 's/[[$]]debugdir\>/\\\\\\\\\\\\&/g'`
7349ff92
JK
130AC_DEFINE_DIR(AUTO_LOAD_DIR, escape_dir,
131 [Directories from which to load auto-loaded scripts.])
132AC_MSG_RESULT([$with_auto_load_dir])
133
bccbefd2
JK
134AC_MSG_CHECKING([for default auto-load safe-path])
135AC_ARG_WITH(auto-load-safe-path,
6dea1fbd 136AS_HELP_STRING([--with-auto-load-safe-path=PATH],
aff139ff 137 [directories safe to hold auto-loaded files @<:@--with-auto-load-dir@:>@])
6dea1fbd
JK
138AS_HELP_STRING([--without-auto-load-safe-path],
139 [do not restrict auto-loaded files locations]),
140 [if test "$with_auto_load_safe_path" = "no"; then
141 with_auto_load_safe_path="/"
142 fi],
7349ff92 143[with_auto_load_safe_path="$with_auto_load_dir"])
2861ee4f 144escape_dir=`echo $with_auto_load_safe_path | sed -e 's/[[$]]datadir\>/\\\\\\\\\\\\&/g' -e 's/[[$]]debugdir\>/\\\\\\\\\\\\&/g'`
6dea1fbd 145AC_DEFINE_DIR(AUTO_LOAD_SAFE_PATH, escape_dir,
bccbefd2
JK
146 [Directories safe to hold auto-loaded files.])
147AC_MSG_RESULT([$with_auto_load_safe_path])
148
5ae98d25 149AC_CONFIG_SUBDIRS(testsuite)
96baa820 150
d0c678e6
UW
151# Check whether to support alternative target configurations
152AC_ARG_ENABLE(targets,
d2596e2e 153AS_HELP_STRING([--enable-targets=TARGETS], [alternative target configurations]),
d0c678e6
UW
154[case "${enableval}" in
155 yes | "") AC_ERROR(enable-targets option must specify target names or 'all')
156 ;;
157 no) enable_targets= ;;
158 *) enable_targets=$enableval ;;
159esac])
160
c0993dbe
UW
161# Check whether to enable 64-bit support on 32-bit hosts
162AC_ARG_ENABLE(64-bit-bfd,
d2596e2e 163AS_HELP_STRING([--enable-64-bit-bfd], [64-bit support (on hosts with narrower word sizes)]),
c0993dbe
UW
164[case "${enableval}" in
165 yes) want64=true ;;
166 no) want64=false ;;
167 *) AC_MSG_ERROR(bad value ${enableval} for 64-bit-bfd option) ;;
168esac],[want64=false])dnl
169
121ce6e5
DJ
170# Provide defaults for some variables set by the per-host and per-target
171# configuration.
172gdb_host_obs=posix-hdep.o
173
771b4502
UW
174if test "${target}" = "${host}"; then
175 gdb_native=yes
176else
177 gdb_native=no
178fi
179
27e9bf90 180. $srcdir/configure.host
c906108c 181
d0c678e6
UW
182# Accumulate some settings from configure.tgt over all enabled targets
183
184TARGET_OBS=
185all_targets=
b292c783 186HAVE_NATIVE_GCORE_TARGET=
d0c678e6
UW
187
188for targ_alias in `echo $target_alias $enable_targets | sed 's/,/ /g'`
189do
190 if test "$targ_alias" = "all"; then
191 all_targets=true
192 else
193 # Canonicalize the secondary target names.
194 result=`$ac_config_sub $targ_alias 2>/dev/null`
195 if test -n "$result"; then
196 targ=$result
197 else
198 targ=$targ_alias
199 fi
200
201 . ${srcdir}/configure.tgt
202
bf307134
JB
203 AS_IF([test -z "${gdb_target_obs}"],
204 [AC_MSG_ERROR([configuration ${targ} is unsupported.])])
205
d0c678e6
UW
206 # Target-specific object files
207 for i in ${gdb_target_obs}; do
208 case " $TARGET_OBS " in
209 *" ${i} "*) ;;
210 *)
211 TARGET_OBS="$TARGET_OBS ${i}"
212 ;;
213 esac
214 done
c0993dbe
UW
215
216 # Check whether this target needs 64-bit CORE_ADDR
217 if test x${want64} = xfalse; then
218 . ${srcdir}/../bfd/config.bfd
219 fi
b292c783
JK
220
221 # Check whether this target is native and supports gcore.
222 if test $gdb_native = yes -a "$targ_alias" = "$target_alias" \
223 && $gdb_have_gcore; then
224 HAVE_NATIVE_GCORE_TARGET=1
225 fi
d0c678e6
UW
226 fi
227done
228
229if test x${all_targets} = xtrue; then
c0993dbe
UW
230
231 # We want all 64-bit targets if we either:
232 # - run on a 64-bit host or
233 # - already require 64-bit support for some other target or
234 # - the --enable-64-bit-bfd option was supplied
235 # Otherwise we only support all 32-bit targets.
236 #
237 # NOTE: This test must be in sync with the corresponding
238 # tests in BFD!
239
240 if test x${want64} = xfalse; then
241 AC_CHECK_SIZEOF(long)
242 if test "x${ac_cv_sizeof_long}" = "x8"; then
243 want64=true
244 fi
245 fi
246 if test x${want64} = xtrue; then
247 TARGET_OBS='$(ALL_TARGET_OBS) $(ALL_64_TARGET_OBS)'
248 else
249 TARGET_OBS='$(ALL_TARGET_OBS)'
250 fi
d0c678e6
UW
251fi
252
253AC_SUBST(TARGET_OBS)
b292c783 254AC_SUBST(HAVE_NATIVE_GCORE_TARGET)
d0c678e6
UW
255
256# For other settings, only the main target counts.
257gdb_sim=
258gdb_osabi=
d0c678e6 259targ=$target; . ${srcdir}/configure.tgt
c906108c 260
27e9bf90
MK
261# Fetch the default architecture and default target vector from BFD.
262targ=$target; . $srcdir/../bfd/config.bfd
5c8cc331 263
27e9bf90
MK
264# We only want the first architecture, so strip off the others if
265# there is more than one.
266targ_archs=`echo $targ_archs | sed 's/ .*//'`
5c8cc331 267
27e9bf90
MK
268if test "x$targ_archs" != x; then
269 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
270 [Define to BFD's default architecture. ])
1ba607ad 271fi
27e9bf90
MK
272if test "x$targ_defvec" != x; then
273 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
274 [Define to BFD's default target vector. ])
1ba607ad
AC
275fi
276
627af7ea
MK
277# Enable MI.
278AC_ARG_ENABLE(gdbmi,
d2596e2e 279AS_HELP_STRING([--disable-gdbmi], [disable machine-interface (MI)]),
627af7ea
MK
280 [case $enableval in
281 yes | no)
282 ;;
283 *)
284 AC_MSG_ERROR([bad value $enableval for --enable-gdbmi]) ;;
285 esac],
286 [enable_gdbmi=yes])
287if test x"$enable_gdbmi" = xyes; then
0ad6b8ee 288 if test -d "$srcdir/mi"; then
627af7ea
MK
289 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_MI_OBS)"
290 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_MI_DEPS)"
291 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_MI_SRCS)"
627af7ea 292 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_MI_CFLAGS)"
627af7ea
MK
293 fi
294fi
295
287c1a40
MK
296# Enable TUI.
297AC_ARG_ENABLE(tui,
d2596e2e 298AS_HELP_STRING([--enable-tui], [enable full-screen terminal user interface (TUI)]),
287c1a40 299 [case $enableval in
3ca64bd3 300 yes | no | auto)
287c1a40
MK
301 ;;
302 *)
303 AC_MSG_ERROR([bad value $enableval for --enable-tui]) ;;
3ca64bd3 304 esac],enable_tui=auto)
287c1a40 305
8ee53726
MK
306# Enable gdbtk.
307AC_ARG_ENABLE(gdbtk,
d2596e2e 308AS_HELP_STRING([--enable-gdbtk], [enable gdbtk graphical user interface (GUI)]),
8ee53726
MK
309 [case $enableval in
310 yes | no)
311 ;;
312 *)
313 AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
314 esac],
0ad6b8ee 315 [if test -d "$srcdir/gdbtk"; then
8ee53726
MK
316 enable_gdbtk=yes
317 else
318 enable_gdbtk=no
319 fi])
320# We unconditionally disable gdbtk tests on selected platforms.
321case $host_os in
322 go32* | windows*)
323 AC_MSG_WARN([gdbtk isn't supported on $host; disabling])
324 enable_gdbtk=no ;;
325esac
326
0d79cdc4
AM
327# Handle optional debuginfod support
328AC_DEBUGINFOD
05e7c244 329
0d79cdc4 330# Libunwind support for ia64.
05e7c244
JK
331AC_ARG_WITH(libunwind-ia64,
332AS_HELP_STRING([--with-libunwind-ia64],
333 [use libunwind frame unwinding for ia64 targets]),,
334 [with_libunwind_ia64=auto])
335
336# Backward compatibility option.
337if test "${with_libunwind+set}" = set; then
338 if test x"$with_libunwind_ia64" != xauto; then
339 AC_MSG_ERROR(
340 [option --with-libunwind is deprecated, use --with-libunwind-ia64])
0e5d83e3 341 fi
05e7c244
JK
342 AC_MSG_WARN([option --with-libunwind is deprecated, use --with-libunwind-ia64])
343 with_libunwind_ia64="$with_libunwind"
344fi
345
346case "$with_libunwind_ia64" in
347 yes | no)
348 ;;
349 auto)
350 AC_CHECK_HEADERS(libunwind-ia64.h)
351 with_libunwind_ia64=$ac_cv_header_libunwind_ia64_h
352 ;;
353 *)
354 AC_MSG_ERROR(
355 [bad value $with_libunwind_ia64 for GDB --with-libunwind-ia64 option])
356 ;;
357esac
358
359if test x"$with_libunwind_ia64" = xyes; then
b54a8fd7 360 AC_CHECK_HEADERS(libunwind-ia64.h)
05e7c244
JK
361 if test x"$ac_cv_header_libunwind_ia64_h" != xyes; then
362 AC_MSG_ERROR([GDB option --with-libunwind-ia64 requires libunwind-ia64.h])
363 fi
364 CONFIG_OBS="$CONFIG_OBS ia64-libunwind-tdep.o"
365 CONFIG_DEPS="$CONFIG_DEPS ia64-libunwind-tdep.o"
366 CONFIG_SRCS="$CONFIG_SRCS ia64-libunwind-tdep.c"
0e5d83e3
JJ
367fi
368
cb01cfba 369opt_curses=no
d2596e2e 370AC_ARG_WITH(curses, AS_HELP_STRING([--with-curses], [use the curses library instead of the termcap library]), opt_curses=$withval)
cb01cfba 371
76a39ba7 372prefer_curses=no
cb01cfba 373if test "$opt_curses" = "yes"; then
76a39ba7 374 prefer_curses=yes
cb01cfba
JB
375fi
376
d28f9cdf
DJ
377# Profiling support.
378AC_ARG_ENABLE(profiling,
d2596e2e 379AS_HELP_STRING([--enable-profiling], [enable profiling of GDB]),
d28f9cdf
DJ
380 [case $enableval in
381 yes | no)
382 ;;
383 *)
384 AC_MSG_ERROR([bad value $enableval for --enable-profile]) ;;
385 esac],
386 [enable_profiling=no])
387
d9feb4e7 388AC_CHECK_FUNCS(monstartup _mcleanup)
b0b1c2c0
MK
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)])
0ad6b8ee 395if test "$ac_cv_var__etext" = yes; then
b0b1c2c0
MK
396 AC_DEFINE(HAVE__ETEXT, 1,
397 [Define to 1 if your system has the _etext variable. ])
398fi
01fe12f6
JB
399AC_CACHE_CHECK([for etext], ac_cv_var_etext,
400[AC_TRY_LINK(
401[#include <stdlib.h>
402extern char etext;
403],
404[free (&etext);], ac_cv_var_etext=yes, ac_cv_var_etext=no)])
0ad6b8ee 405if test "$ac_cv_var_etext" = yes; then
01fe12f6
JB
406 AC_DEFINE(HAVE_ETEXT, 1,
407 [Define to 1 if your system has the etext variable. ])
408fi
d28f9cdf 409if test "$enable_profiling" = yes ; then
0ad6b8ee 410 if test "$ac_cv_func_monstartup" = no || test "$ac_cv_func__mcleanup" = no; then
d9feb4e7
DJ
411 AC_MSG_ERROR(--enable-profiling requires monstartup and _mcleanup)
412 fi
d28f9cdf
DJ
413 PROFILE_CFLAGS=-pg
414 OLD_CFLAGS="$CFLAGS"
415 CFLAGS="$CFLAGS $PROFILE_CFLAGS"
416
d9feb4e7
DJ
417 AC_CACHE_CHECK([whether $CC supports -pg], ac_cv_cc_supports_pg,
418 [AC_TRY_COMPILE([], [int x;], ac_cv_cc_supports_pg=yes,
419 ac_cv_cc_supports_pg=no)])
d28f9cdf 420
0ad6b8ee 421 if test "$ac_cv_cc_supports_pg" = no; then
d9feb4e7
DJ
422 AC_MSG_ERROR(--enable-profiling requires a compiler which supports -pg)
423 fi
d28f9cdf
DJ
424
425 CFLAGS="$OLD_CFLAGS"
426fi
427
44cee4fd
TT
428CODESIGN_CERT=
429AC_ARG_ENABLE([codesign],
430 AS_HELP_STRING([--enable-codesign=CERT],
431 [sign gdb with 'codesign -s CERT']),
432 [CODESIGN_CERT=$enableval])
433AC_SUBST([CODESIGN_CERT])
434
c16158bc
JM
435ACX_PKGVERSION([GDB])
436ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
437AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
438AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
439
8bb2c122
MK
440# --------------------- #
441# Checks for programs. #
442# --------------------- #
443
7a292a7a 444AC_PROG_AWK
c906108c 445AC_PROG_INSTALL
8bb2c122
MK
446AC_PROG_LN_S
447AC_PROG_RANLIB
448AC_PROG_YACC
449
c906108c 450AC_CHECK_TOOL(AR, ar)
95ca63c4
CF
451AC_CHECK_TOOL(DLLTOOL, dlltool)
452AC_CHECK_TOOL(WINDRES, windres)
c906108c 453
036c3acb
TS
454case $host_os in
455 gnu*)
456 # Needed for GNU Hurd hosts.
457 AC_CHECK_TOOL(MIG, mig)
458 if test x"$MIG" = x; then
459 AC_MSG_ERROR([MIG not found but required for $host hosts])
460 fi
461 ;;
462esac
75c6e08a 463
9a156167
MK
464# ---------------------- #
465# Checks for libraries. #
466# ---------------------- #
467
468# We might need to link with -lm; most simulators need it.
469AC_CHECK_LIB(m, main)
470
c890192f
MK
471# Some systems (e.g. Solaris) have `gethostbyname' in libnsl.
472AC_SEARCH_LIBS(gethostbyname, nsl)
473
9a156167
MK
474# Some systems (e.g. Solaris) have `socketpair' in libsocket.
475AC_SEARCH_LIBS(socketpair, socket)
476
233a11ab 477# Link in zlib if we can. This allows us to read compressed debug sections.
b040ad30 478AM_ZLIB
233a11ab 479
25268153 480# On FreeBSD we may need libutil for kinfo_getvmmap (used by fbsd-nat.c).
37773e78
JB
481# On GNU/kFreeBSD systems, FreeBSD libutil is renamed to libutil-freebsd.
482AC_SEARCH_LIBS(kinfo_getvmmap, util util-freebsd,
25268153
JB
483 [AC_DEFINE(HAVE_KINFO_GETVMMAP, 1,
484 [Define to 1 if your system has the kinfo_getvmmap function. ])])
485
6c7a06a3
TT
486AM_ICONV
487
478aac75
DE
488# GDB may fork/exec the iconv program to get the list of supported character
489# sets. Allow the user to specify where to find it.
490# There are several factors affecting the choice of option name:
491# - There is already --with-libiconv-prefix but we can't use it, it specifies
492# the build-time location of libiconv files.
493# - The program we need to find is iconv, which comes with glibc. The user
494# doesn't necessarily have libiconv installed. Therefore naming this
495# --with-libiconv-foo feels wrong.
496# - We want the path to be relocatable, but GDB_AC_DEFINE_RELOCATABLE is
497# defined to work on directories not files (though it really doesn't know
498# the difference).
499# - Calling this --with-iconv-prefix is perceived to cause too much confusion
500# with --with-libiconv-prefix.
501# Putting these together is why the option name is --with-iconv-bin.
502
503AC_ARG_WITH(iconv-bin,
504AS_HELP_STRING([--with-iconv-bin=PATH], [specify where to find the iconv program]),
505[iconv_bin="${withval}"
506 AC_DEFINE_UNQUOTED([ICONV_BIN], ["${iconv_bin}"],
507 [Path of directory of iconv program.])
508 GDB_AC_DEFINE_RELOCATABLE(ICONV_BIN, iconv, ${iconv_bin})
509])
510
cb01cfba 511# For the TUI, we need enhanced curses functionality.
bd8a8e1b 512if test x"$enable_tui" != xno; then
cb01cfba
JB
513 prefer_curses=yes
514fi
515
516curses_found=no
517if test x"$prefer_curses" = xyes; then
518 # FIXME: kettenis/20040905: We prefer ncurses over the vendor-supplied
519 # curses library because the latter might not provide all the
520 # functionality we need. However, this leads to problems on systems
521 # where the linker searches /usr/local/lib, but the compiler doesn't
522 # search /usr/local/include, if ncurses is installed in /usr/local. A
523 # default installation of ncurses on alpha*-dec-osf* will lead to such
524 # a situation.
5007d765 525 AC_SEARCH_LIBS(waddstr, [ncursesw ncurses cursesX curses])
cb01cfba
JB
526
527 if test "$ac_cv_search_waddstr" != no; then
528 curses_found=yes
529 fi
530fi
531
77f120bf
JB
532# Check whether we should enable the TUI, but only do so if we really
533# can.
534if test x"$enable_tui" != xno; then
0ad6b8ee 535 if test -d "$srcdir/tui"; then
cb01cfba 536 if test "$curses_found" != no; then
77f120bf
JB
537 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
538 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
539 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
540 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
77f120bf
JB
541 else
542 if test x"$enable_tui" = xyes; then
543 AC_MSG_ERROR([no enhanced curses library found; disable TUI])
544 else
545 AC_MSG_WARN([no enhanced curses library found; disabling TUI])
546 fi
547 fi
548 fi
549fi
550
4f0be353
MK
551# Since GDB uses Readline, we need termcap functionality. In many
552# cases this will be provided by the curses library, but some systems
96fe4562 553# have a separate termcap library, or no curses library at all.
287c1a40
MK
554
555case $host_os in
556 cygwin*)
0ad6b8ee 557 if test -d "$srcdir/libtermcap"; then
287c1a40
MK
558 LIBS="../libtermcap/libtermcap.a $LIBS"
559 ac_cv_search_tgetent="../libtermcap/libtermcap.a"
560 fi ;;
228a417c 561 go32* | *djgpp*)
287c1a40
MK
562 ac_cv_search_tgetent="none required"
563 ;;
287c1a40
MK
564esac
565
4f0be353 566# These are the libraries checked by Readline.
2578ecb1 567AC_SEARCH_LIBS(tgetent, [termcap tinfow tinfo curses ncursesw ncurses])
287c1a40
MK
568
569if test "$ac_cv_search_tgetent" = no; then
7a85168d 570 CONFIG_OBS="$CONFIG_OBS stub-termcap.o"
287c1a40
MK
571fi
572
6a30b0a5
AS
573AC_ARG_WITH([system-readline],
574 [AS_HELP_STRING([--with-system-readline],
575 [use installed readline library])])
576
577if test "$with_system_readline" = yes; then
86c6b807
TT
578 AC_CACHE_CHECK([whether system readline is new enough],
579 [gdb_cv_readline_ok],
580 [AC_TRY_COMPILE(
581 [#include <stdio.h>
582#include <readline/readline.h>],
583 [#if RL_VERSION_MAJOR < 7
584# error "readline version 7 required"
585#endif],
586 gdb_cv_readline_ok=yes,
587 gdb_cv_readline_ok=no)])
588 if test "$gdb_cv_readline_ok" != yes; then
589 AC_MSG_ERROR([system readline is not new enough])
590 fi
591
6a30b0a5
AS
592 READLINE=-lreadline
593 READLINE_DEPS=
594 READLINE_CFLAGS=
39037522 595 READLINE_TEXI_INCFLAG=
6a30b0a5
AS
596else
597 READLINE='$(READLINE_DIR)/libreadline.a'
598 READLINE_DEPS='$(READLINE)'
599 READLINE_CFLAGS='-I$(READLINE_SRC)/..'
39037522 600 READLINE_TEXI_INCFLAG='-I $(READLINE_DIR)'
6a30b0a5
AS
601fi
602AC_SUBST(READLINE)
603AC_SUBST(READLINE_DEPS)
604AC_SUBST(READLINE_CFLAGS)
39037522 605AC_SUBST(READLINE_TEXI_INCFLAG)
6a30b0a5 606
f997c383
SD
607# Generate jit-reader.h
608
609# This is typedeffed to GDB_CORE_ADDR in jit-reader.h
610TARGET_PTR=
611
612AC_CHECK_SIZEOF(unsigned long long)
613AC_CHECK_SIZEOF(unsigned long)
614AC_CHECK_SIZEOF(unsigned __int128)
615
616if test "x${ac_cv_sizeof_unsigned_long}" = "x8"; then
617 TARGET_PTR="unsigned long"
618elif test "x${ac_cv_sizeof_unsigned_long_long}" = "x8"; then
619 TARGET_PTR="unsigned long long"
620elif test "x${ac_cv_sizeof_unsigned___int128}" = "x16"; then
621 TARGET_PTR="unsigned __int128"
622else
623 TARGET_PTR="unsigned long"
624fi
625
626AC_SUBST(TARGET_PTR)
627AC_CONFIG_FILES([jit-reader.h:jit-reader.in])
628
a2d08b9e
SD
629AC_SEARCH_LIBS(dlopen, dl)
630
b8e0a31c
SD
631GDB_AC_WITH_DIR([JIT_READER_DIR], [jit-reader-dir],
632 [directory to load the JIT readers from],
633 [${libdir}/gdb])
634
5c39566f
DJ
635AC_ARG_WITH(expat,
636 AS_HELP_STRING([--with-expat], [include expat support (auto/yes/no)]),
637 [], [with_expat=auto])
638AC_MSG_CHECKING([whether to use expat])
639AC_MSG_RESULT([$with_expat])
640
641if test "${with_expat}" = no; then
642 AC_MSG_WARN([expat support disabled; some features may be unavailable.])
643 HAVE_LIBEXPAT=no
ca4ca11e 644else
5c39566f
DJ
645 AC_LIB_HAVE_LINKFLAGS([expat], [], [#include "expat.h"],
646 [XML_Parser p = XML_ParserCreate (0);])
647 if test "$HAVE_LIBEXPAT" != yes; then
648 if test "$with_expat" = yes; then
649 AC_MSG_ERROR([expat is missing or unusable])
650 else
651 AC_MSG_WARN([expat is missing or unusable; some features may be unavailable.])
652 fi
653 else
654 save_LIBS=$LIBS
655 LIBS="$LIBS $LIBEXPAT"
656 AC_CHECK_FUNCS(XML_StopParser)
657 LIBS=$save_LIBS
658 fi
7fa2210b
DJ
659fi
660
2400729e
UW
661AC_ARG_WITH(mpfr,
662 AS_HELP_STRING([--with-mpfr], [include MPFR support (auto/yes/no)]),
663 [], [with_mpfr=auto])
664AC_MSG_CHECKING([whether to use MPFR])
665AC_MSG_RESULT([$with_mpfr])
666
667if test "${with_mpfr}" = no; then
668 AC_MSG_WARN([MPFR support disabled; some features may be unavailable.])
669 HAVE_LIBMPFR=no
670else
da658607 671 AC_LIB_HAVE_LINKFLAGS([mpfr], [gmp], [#include <mpfr.h>],
2400729e
UW
672 [mpfr_exp_t exp; mpfr_t x;
673 mpfr_frexp (&exp, x, x, MPFR_RNDN);])
674 if test "$HAVE_LIBMPFR" != yes; then
675 if test "$with_mpfr" = yes; then
676 AC_MSG_ERROR([MPFR is missing or unusable])
677 else
678 AC_MSG_WARN([MPFR is missing or unusable; some features may be unavailable.])
679 fi
680 fi
681fi
682
d344e670
DE
683# --------------------- #
684# Check for libpython. #
685# --------------------- #
686
d57a3c85 687dnl Utility to simplify finding libpython.
71737c43 688dnl $1 = the shell variable to assign the result to
ec685c5e 689dnl If libpython is found we store $version here.
71737c43
CB
690dnl $2 = additional flags to add to CPPFLAGS
691dnl $3 = additional flags to add to LIBS
ec685c5e 692
d57a3c85
TJB
693AC_DEFUN([AC_TRY_LIBPYTHON],
694[
71737c43
CB
695 define([have_libpython_var],$1)
696 new_CPPFLAGS=$2
697 new_LIBS=$3
698 AC_MSG_CHECKING([for python])
ec685c5e 699 save_CPPFLAGS=$CPPFLAGS
d57a3c85 700 save_LIBS=$LIBS
ec685c5e 701 CPPFLAGS="$CPPFLAGS $new_CPPFLAGS"
bf27f0e2 702 LIBS="$new_LIBS $LIBS"
ec685c5e 703 found_usable_python=no
d0ac1c44
SM
704 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "Python.h"]],
705 [[Py_Initialize ();]])],
71737c43 706 [have_libpython_var=yes
ac534cba
JB
707 found_usable_python=yes
708 PYTHON_CPPFLAGS=$new_CPPFLAGS
709 PYTHON_LIBS=$new_LIBS])
710 CPPFLAGS=$save_CPPFLAGS
711 LIBS=$save_LIBS
ec685c5e 712 AC_MSG_RESULT([${found_usable_python}])
d57a3c85
TJB
713])
714
0c4a4063
DE
715dnl There are several different values for --with-python:
716dnl
717dnl no - Don't include python support.
718dnl yes - Include python support, error if it's missing.
719dnl If we find python in $PATH, use it to fetch configure options,
720dnl otherwise assume the compiler can find it with no help from us.
6c28e44a 721dnl Python 2.7 and 2.6 are tried in turn.
0c4a4063
DE
722dnl auto - Same as "yes", but if python is missing from the system,
723dnl fall back to "no".
724dnl /path/to/python/exec-prefix -
725dnl Use the python located in this directory.
726dnl If /path/to/python/exec-prefix/bin/python exists, use it to find
727dnl the compilation parameters. Otherwise use
728dnl -I/path/to/python/exec-prefix/include,
729dnl -L/path/to/python/exec-prefix/lib.
6c28e44a 730dnl Python 2.7 and 2.6 are tried in turn.
0c4a4063
DE
731dnl NOTE: This case is historical. It is what was done for 7.0/7.1
732dnl but is deprecated.
733dnl /path/to/python/executable -
734dnl Run python-config.py with this version of python to fetch the
735dnl compilation parameters.
736dnl NOTE: This needn't be the real python executable.
737dnl In a cross-compilation scenario (build != host), this could be
738dnl a shell script that provides what python-config.py provides for
739dnl --ldflags, --includes, --exec-prefix.
740dnl python-executable -
741dnl Find python-executable in $PATH, and then handle the same as
742dnl /path/to/python/executable.
743dnl
744dnl If a python program is specified, it is used to run python-config.py and
745dnl is passed --ldflags, --includes, --exec-prefix.
746
d57a3c85 747AC_ARG_WITH(python,
0c4a4063 748 AS_HELP_STRING([--with-python@<:@=PYTHON@:>@], [include python support (auto/yes/no/<python-program>)]),
d57a3c85
TJB
749 [], [with_python=auto])
750AC_MSG_CHECKING([whether to use python])
751AC_MSG_RESULT([$with_python])
752
753if test "${with_python}" = no; then
754 AC_MSG_WARN([python support disabled; some features may be unavailable.])
755 have_libpython=no
756else
757 case "${with_python}" in
8c85a4e2 758 [[\\/]]* | ?:[[\\/]]*)
0ad6b8ee 759 if test -d "${with_python}"; then
ec685c5e 760 # Assume the python binary is ${with_python}/bin/python.
ec685c5e 761 python_prog="${with_python}/bin/python"
0c4a4063 762 python_prefix=
9c4ea6c5
JB
763 # If python does not exit ${with_python}/bin, then try in
764 # ${with_python}. On Windows/MinGW, this is where the Python
765 # executable is.
766 if test ! -x "${python_prog}"; then
767 python_prog="${with_python}/python"
768 python_prefix=
769 fi
e7a30f46 770 if test ! -x "${python_prog}"; then
ec685c5e
DE
771 # Fall back to gdb 7.0/7.1 behaviour.
772 python_prog=missing
0c4a4063 773 python_prefix=${with_python}
ec685c5e 774 fi
e7a30f46 775 elif test -x "${with_python}"; then
ec685c5e
DE
776 # While we can't run python compiled for $host (unless host == build),
777 # the user could write a script that provides the needed information,
778 # so we support that.
ec685c5e 779 python_prog=${with_python}
0c4a4063 780 python_prefix=
ec685c5e
DE
781 else
782 AC_ERROR(invalid value for --with-python)
783 fi
d57a3c85 784 ;;
ec685c5e
DE
785 */*)
786 # Disallow --with-python=foo/bar.
d57a3c85
TJB
787 AC_ERROR(invalid value for --with-python)
788 ;;
ec685c5e
DE
789 *)
790 # The user has either specified auto, yes, or the name of the python
791 # program assumed to be in $PATH.
792 python_prefix=
793 case "${with_python}" in
794 yes | auto)
0ad6b8ee 795 if test "${build}" = "${host}"; then
ec685c5e
DE
796 AC_PATH_PROG(python_prog_path, python, missing)
797 if test "${python_prog_path}" = missing; then
798 python_prog=missing
799 else
800 python_prog=${python_prog_path}
801 fi
802 else
803 # Not much we can do except assume the cross-compiler will find the
804 # right files.
805 python_prog=missing
806 fi
807 ;;
808 *)
809 # While we can't run python compiled for $host (unless host == build),
810 # the user could write a script that provides the needed information,
811 # so we support that.
812 python_prog="${with_python}"
813 AC_PATH_PROG(python_prog_path, ${python_prog}, missing)
814 if test "${python_prog_path}" = missing; then
815 AC_ERROR(unable to find python program ${python_prog})
816 fi
817 ;;
818 esac
d57a3c85
TJB
819 esac
820
ec685c5e 821 if test "${python_prog}" != missing; then
e7a30f46
DE
822 # We have a python program to use, but it may be too old.
823 # Don't flag an error for --with-python=auto (the default).
824 have_python_config=yes
ec685c5e
DE
825 python_includes=`${python_prog} ${srcdir}/python/python-config.py --includes`
826 if test $? != 0; then
e7a30f46
DE
827 have_python_config=failed
828 if test "${with_python}" != auto; then
829 AC_ERROR(failure running python-config --includes)
830 fi
d57a3c85 831 fi
ec685c5e
DE
832 python_libs=`${python_prog} ${srcdir}/python/python-config.py --ldflags`
833 if test $? != 0; then
e7a30f46
DE
834 have_python_config=failed
835 if test "${with_python}" != auto; then
836 AC_ERROR(failure running python-config --ldflags)
837 fi
ec685c5e 838 fi
0c4a4063
DE
839 python_prefix=`${python_prog} ${srcdir}/python/python-config.py --exec-prefix`
840 if test $? != 0; then
e7a30f46
DE
841 have_python_config=failed
842 if test "${with_python}" != auto; then
843 AC_ERROR(failure running python-config --exec-prefix)
844 fi
0c4a4063 845 fi
ec685c5e 846 else
ac534cba
JB
847 # We do not have a python executable we can use to determine where
848 # to find the Python headers and libs. We cannot guess the include
849 # path from the python_prefix either, because that include path
850 # depends on the Python version. So, there is nothing much we can
851 # do except assume that the compiler will be able to find those files.
852 python_includes=
853 python_libs=
0c4a4063 854 have_python_config=no
d57a3c85 855 fi
ec685c5e 856
ec685c5e
DE
857 # If we have python-config, only try the configuration it provides.
858 # Otherwise fallback on the old way of trying different versions of
859 # python in turn.
860
861 have_libpython=no
862 if test "${have_python_config}" = yes; then
71737c43
CB
863 AC_TRY_LIBPYTHON(have_libpython,
864 ${python_includes}, ${python_libs})
e7a30f46 865 elif test "${have_python_config}" != failed; then
420697bb 866 if test "${have_libpython}" = no; then
71737c43 867 AC_TRY_LIBPYTHON(have_libpython,
bf27f0e2 868 ${python_includes}, "-lpython2.7 ${python_libs}")
420697bb 869 fi
ec685c5e 870 if test "${have_libpython}" = no; then
71737c43 871 AC_TRY_LIBPYTHON(have_libpython,
bf27f0e2 872 ${python_includes}, "-lpython2.6 ${python_libs}")
ec685c5e 873 fi
d57a3c85 874 fi
ec685c5e
DE
875
876 if test "${have_libpython}" = no; then
d57a3c85
TJB
877 case "${with_python}" in
878 yes)
879 AC_MSG_ERROR([python is missing or unusable])
880 ;;
881 auto)
882 AC_MSG_WARN([python is missing or unusable; some features may be unavailable.])
883 ;;
884 *)
885 AC_MSG_ERROR([no usable python found at ${with_python}])
886 ;;
887 esac
0c4a4063
DE
888 else
889 if test -n "${python_prefix}"; then
890 AC_DEFINE_UNQUOTED(WITH_PYTHON_PATH, "${python_prefix}",
891 [Define if --with-python provides a path, either directly or via python-config.py --exec-prefix.])
892 GDB_AC_DEFINE_RELOCATABLE(PYTHON_PATH, python, ${python_prefix})
893 fi
d57a3c85
TJB
894 fi
895fi
896
d13c7322
AB
897dnl Use --with-python-libdir to control where GDB looks for the Python
898dnl libraries.
899dnl
900dnl If this is not given then the default will be based on the value
901dnl passed to --with-python, which is in the python_prefix variable.
902dnl If the --with-python option wasn't given then the default value in
903dnl python_prefix is based on running the 'gdb/python/python-config
904dnl --exec-prefix' script.
905AC_ARG_WITH(python-libdir,
906 AS_HELP_STRING([--with-python-libdir@<:@=DIR@:>@], [search for python's libraries in DIR]),
907 [],[
908 # If no python libdir is specified then select one based on
909 # python's prefix path.
910 if test -n "${python_prefix}"; then
911 with_python_libdir=${python_prefix}/lib
912 fi
913 ])
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
d13c7322
AB
923 if test -n "${with_python_libdir}"; then
924 AC_DEFINE_UNQUOTED(WITH_PYTHON_LIBDIR, "${with_python_libdir}",
925 [Directory containing Python's standard libraries from --with-python-libdir.])
926 GDB_AC_DEFINE_RELOCATABLE(PYTHON_LIBDIR, [python lib], ${with_python_libdir})
927 fi
928
d57a3c85
TJB
929 # Flags needed to compile Python code (taken from python-config --cflags).
930 # We cannot call python-config directly because it will output whatever was
931 # used when compiling the Python interpreter itself, including flags which
932 # would make the python-related objects be compiled differently from the
933 # rest of GDB (e.g., -O2 and -fPIC).
934 if test "${GCC}" = yes; then
ae292b3a
TT
935 tentative_python_cflags="-fno-strict-aliasing -fwrapv"
936 # Python headers recommend -DNDEBUG, but it's unclear if that just
937 # refers to building Python itself. In release mode, though, it
938 # doesn't hurt for the Python code in gdb to follow.
939 $development || tentative_python_cflags="$tentative_python_cflags -DNDEBUG"
d57a3c85
TJB
940 fi
941
942 if test "x${tentative_python_cflags}" != x; then
943 AC_MSG_CHECKING(compiler flags for python code)
944 for flag in ${tentative_python_cflags}; do
945 # Check that the compiler accepts it
946 saved_CFLAGS="$CFLAGS"
947 CFLAGS="$CFLAGS $flag"
948 AC_TRY_COMPILE([],[],PYTHON_CFLAGS="${PYTHON_CFLAGS} $flag",)
949 CFLAGS="$saved_CFLAGS"
950 done
951 AC_MSG_RESULT(${PYTHON_CFLAGS})
952 fi
043b6510 953
c83393b9
JB
954 # On x64 Windows, Python's include headers, and pyconfig.h in
955 # particular, rely on MS_WIN64 macro to detect that it's a 64bit
956 # version of Windows. Unfortunately, MS_WIN64 is only defined if
957 # _MSC_VER, a Microsoft-specific macro, is defined. So, when
958 # building on x64 Windows with GCC, we define MS_WIN64 ourselves.
959 # The issue was reported to the Python community, but still isn't
960 # solved as of 2012-10-02 (http://bugs.python.org/issue4709).
961
043b6510 962 case "$gdb_host" in
c83393b9
JB
963 mingw64)
964 if test "${GCC}" = yes; then
965 CPPFLAGS="$CPPFLAGS -DMS_WIN64"
966 fi
967 ;;
043b6510 968 esac
d57a3c85 969else
6dddc817
DE
970 # Even if Python support is not compiled in, we need to have this file
971 # included so that the "python" command, et.al., still exists.
8fd8d003 972 CONFIG_OBS="$CONFIG_OBS python/python.o"
6dddc817 973 CONFIG_SRCS="$CONFIG_SRCS python/python.c"
d57a3c85 974fi
a4a1c157
PA
975
976# Work around Python http://bugs.python.org/issue10112. See also
977# http://bugs.python.org/issue11410, otherwise -Wl,--dynamic-list has
978# no effect. Note that the only test after this that uses Python is
979# the -rdynamic/-Wl,--dynamic-list test, and we do want that one to be
980# run without -export-dynamic too.
981PYTHON_LIBS=`echo $PYTHON_LIBS | sed -e 's/-Xlinker -export-dynamic//'`
982
d57a3c85 983AC_SUBST(PYTHON_CFLAGS)
ac534cba
JB
984AC_SUBST(PYTHON_CPPFLAGS)
985AC_SUBST(PYTHON_LIBS)
4df42755 986AM_CONDITIONAL(HAVE_PYTHON, test "${have_libpython}" != no)
d57a3c85 987
ed3ef339
DE
988# -------------------- #
989# Check for libguile. #
990# -------------------- #
991
ed3ef339
DE
992dnl Utility to simplify finding libguile.
993dnl $1 = pkg-config-program
994dnl $2 = space-separate list of guile versions to try
995dnl $3 = yes|no, indicating whether to flag errors or ignore them
996dnl $4 = the shell variable to assign the result to
997dnl If libguile is found we store "yes" here.
998
999AC_DEFUN([AC_TRY_LIBGUILE],
1000[
1001 pkg_config=$1
1002 guile_version_list=$2
1003 flag_errors=$3
1004 define([have_libguile_var],$4)
ed3ef339
DE
1005 found_usable_guile=checking
1006 AC_MSG_CHECKING([for usable guile from ${pkg_config}])
1007 for guile_version in ${guile_version_list}; do
1008 ${pkg_config} --exists ${guile_version} 2>/dev/null
1009 if test $? != 0; then
1010 continue
1011 fi
1012 dnl pkg-config says the package exists, so if we get an error now,
1013 dnl that's bad.
1014 new_CPPFLAGS=`${pkg_config} --cflags ${guile_version}`
1015 if test $? != 0; then
e1402065 1016 AC_MSG_ERROR([failure running pkg-config --cflags ${guile_version}])
ed3ef339
DE
1017 fi
1018 new_LIBS=`${pkg_config} --libs ${guile_version}`
1019 if test $? != 0; then
e1402065 1020 AC_MSG_ERROR([failure running pkg-config --libs ${guile_version}])
ed3ef339
DE
1021 fi
1022 dnl If we get this far, great.
1023 found_usable_guile=${guile_version}
1024 break
1025 done
1026 if test "${found_usable_guile}" = "checking"; then
1027 if test "${flag_errors}" = "yes"; then
e1402065 1028 AC_MSG_ERROR([unable to find usable guile version from "${guile_version_list}"])
ed3ef339
DE
1029 else
1030 found_usable_guile=no
1031 fi
1032 fi
1033 dnl One final sanity check.
1034 dnl The user could have said --with-guile=python-2.7.
1035 if test "${found_usable_guile}" != no; then
1036 save_CPPFLAGS=$CPPFLAGS
1037 save_LIBS=$LIBS
1038 CPPFLAGS="$CPPFLAGS $new_CPPFLAGS"
1039 LIBS="$LIBS $new_LIBS"
d0ac1c44
SM
1040 AC_LINK_IFELSE([AC_LANG_PROGRAM([[#include "libguile.h"]],
1041 [[scm_init_guile ();]])],
ed3ef339
DE
1042 [have_libguile_var=yes
1043 GUILE_CPPFLAGS=$new_CPPFLAGS
1044 GUILE_LIBS=$new_LIBS],
1045 [found_usable_guile=no])
92fab5a6
AW
1046 dnl scm_set_automatic_finalization_enabled added in Guile 2.2.
1047 AC_CHECK_FUNC(scm_set_automatic_finalization_enabled,
1048 AC_DEFINE(HAVE_GUILE_MANUAL_FINALIZATION, 1,
1049 [Define if Guile supports manual finalization.])
1050 )
ed3ef339
DE
1051 CPPFLAGS=$save_CPPFLAGS
1052 LIBS=$save_LIBS
1053 if test "${found_usable_guile}" = no; then
1054 if test "${flag_errors}" = yes; then
e1402065 1055 AC_MSG_FAILURE([linking guile version ${guile_version} test program failed])
ed3ef339
DE
1056 fi
1057 fi
1058 fi
1059 AC_MSG_RESULT([${found_usable_guile}])
1060])
1061
1062dnl There are several different values for --with-guile:
1063dnl
1064dnl no - Don't include guile support.
1065dnl yes - Include guile support, error if it's missing.
1066dnl The pkg-config program must be in $PATH.
1067dnl auto - Same as "yes", but if guile is missing from the system,
1068dnl fall back to "no".
1069dnl guile-version [guile-version-choice-2 ...] -
1070dnl A space-separated list of guile package versions to try.
1071dnl These are passed to pkg-config as-is.
1072dnl E.g., guile-2.0 or guile-2.2-uninstalled
1073dnl This requires making sure PKG_CONFIG_PATH is set appropriately.
1074dnl /path/to/pkg-config -
1075dnl Use this pkg-config program.
1076dnl NOTE: This needn't be the "real" pkg-config program.
1077dnl It could be a shell script. It is invoked as:
1078dnl pkg-config --exists $version
1079dnl pkg-config --cflags $version
1080dnl pkg-config --libs $version
d342a0da
DE
1081dnl pkg-config --variable guild $version
1082dnl The script will be called with $version having each value in
1083dnl $try_guile_versions until --exists indicates success.
ed3ef339
DE
1084
1085AC_ARG_WITH(guile,
1086 AS_HELP_STRING([--with-guile@<:@=GUILE@:>@], [include guile support (auto/yes/no/<guile-version>/<pkg-config-program>)]),
1087 [], [with_guile=auto])
1088AC_MSG_CHECKING([whether to use guile])
1089AC_MSG_RESULT([$with_guile])
1090
e1402065
DE
1091dnl We check guile with pkg-config.
1092AC_PATH_PROG(pkg_config_prog_path, pkg-config, missing)
1093
6e66f753 1094try_guile_versions="guile-2.0"
ed3ef339
DE
1095have_libguile=no
1096case "${with_guile}" in
1097no)
1098 AC_MSG_WARN([guile support disabled; some features will be unavailable.])
1099 ;;
1100auto)
e1402065
DE
1101 if test "${pkg_config_prog_path}" = "missing"; then
1102 AC_MSG_WARN([pkg-config not found, guile support disabled])
1103 else
1104 AC_TRY_LIBGUILE(${pkg_config_prog_path}, ${try_guile_versions}, no, have_libguile)
1105 fi
ed3ef339
DE
1106 ;;
1107yes)
e1402065
DE
1108 if test "${pkg_config_prog_path}" = "missing"; then
1109 AC_MSG_ERROR([pkg-config not found])
1110 fi
ed3ef339
DE
1111 AC_TRY_LIBGUILE(${pkg_config_prog_path}, ${try_guile_versions}, yes, have_libguile)
1112 ;;
1113[[\\/]]* | ?:[[\\/]]*)
e1402065
DE
1114 if test -x "${with_guile}"; then
1115 AC_TRY_LIBGUILE(${with_guile}, ${try_guile_versions}, yes, have_libguile)
1116 else
1117 AC_MSG_ERROR([Guile config program not executable: ${with_guile}])
1118 fi
ed3ef339
DE
1119 ;;
1120"" | */*)
1121 # Disallow --with=guile="" and --with-guile=foo/bar.
e1402065 1122 AC_MSG_ERROR([invalid value for --with-guile])
ed3ef339
DE
1123 ;;
1124*)
1125 # A space separate list of guile versions to try, in order.
e1402065
DE
1126 if test "${pkg_config_prog_path}" = "missing"; then
1127 AC_MSG_ERROR([pkg-config not found])
1128 fi
ed3ef339
DE
1129 AC_TRY_LIBGUILE(${pkg_config_prog_path}, ${with_guile}, yes, have_libguile)
1130 ;;
1131esac
1132
e76c5d17
DE
1133if test "${have_libguile}" != no; then
1134 dnl Get the name of the 'guild' program.
d342a0da
DE
1135 case "${with_guile}" in
1136 [[\\/]]* | ?:[[\\/]]*)
1137 GDB_GUILE_PROGRAM_NAMES(["${with_guile}"], ["${guile_version}"])
1138 ;;
1139 *)
1140 GDB_GUILE_PROGRAM_NAMES(["${pkg_config_prog_path}"], ["${guile_version}"])
1141 ;;
1142 esac
e76c5d17
DE
1143
1144 dnl Make sure guild can handle this host.
1145 GDB_TRY_GUILD([$srcdir/guile/lib/gdb/support.scm])
1146 dnl If not, disable guile support.
1147 if test "$ac_cv_guild_ok" = no; then
1148 have_libguile=no
1149 AC_MSG_WARN(disabling guile support, $GUILD fails compiling for $host)
1150 fi
1151fi
1152
ed3ef339
DE
1153if test "${have_libguile}" != no; then
1154 AC_DEFINE(HAVE_GUILE, 1, [Define if Guile interpreter is being linked in.])
1155 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_GUILE_OBS)"
1156 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_GUILE_DEPS)"
1157 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_GUILE_SRCS)"
1158 CONFIG_INSTALL="$CONFIG_INSTALL install-guile"
1159 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_GUILE_CFLAGS)"
16954d5d
LC
1160
1161 dnl The 'scm_new_smob' function appeared in Guile 2.0.6.
1162 save_LIBS="$LIBS"
1163 save_CPPFLAGS="$CPPFLAGS"
1164 LIBS="$GUILE_LIBS"
1165 CPPFLAGS="$GUILE_CPPFLAGS"
1166 AC_CHECK_FUNCS([scm_new_smob])
1167 LIBS="$save_LIBS"
1168 CPPFLAGS="$save_CPPFLAGS"
ed3ef339
DE
1169else
1170 # Even if Guile support is not compiled in, we need to have these files
1171 # included.
bd810fff 1172 CONFIG_OBS="$CONFIG_OBS guile/guile.o"
ed3ef339
DE
1173 CONFIG_SRCS="$CONFIG_SRCS guile/guile.c"
1174fi
1175AC_SUBST(GUILE_CPPFLAGS)
1176AC_SUBST(GUILE_LIBS)
4df42755 1177AM_CONDITIONAL(HAVE_GUILE, test "${have_libguile}" != no)
ed3ef339 1178
62f29fda
TT
1179# ---------------------------- #
1180# Check for source highlight. #
1181# ---------------------------- #
1182
1183SRCHIGH_LIBS=
1184SRCHIGH_CFLAGS=
189b8c2e
ST
1185
1186AC_ARG_ENABLE(source-highlight,
1187 AS_HELP_STRING([--enable-source-highlight],
1188 [enable source-highlight for source listings]),
1189 [case "${enableval}" in
1190 yes) enable_source_highlight=yes ;;
1191 no) enable_source_highlight=no ;;
1192 *) AC_MSG_ERROR(bad value ${enableval} for source-highlight option) ;;
1193esac],
1194[enable_source_highlight=auto])
1195
1196if test "${enable_source_highlight}" != "no"; then
1197 AC_MSG_CHECKING([for the source-highlight library])
1198 if test "${pkg_config_prog_path}" = "missing"; then
1199 AC_MSG_RESULT([no - pkg-config not found])
1200 if test "${enable_source_highlight}" = "yes"; then
1201 AC_MSG_ERROR([pkg-config was not found in your system])
1202 fi
1203 else
d806ea2d
TT
1204 case "$LDFLAGS" in
1205 *static-libstdc*)
1206 AC_MSG_ERROR([source highlight is incompatible with -static-libstdc++; dnl
1207either use --disable-source-highlight or dnl
1208--without-static-standard-libraries])
1209 ;;
1210 esac
1211
189b8c2e 1212 if ${pkg_config_prog_path} --exists source-highlight; then
62f29fda
TT
1213 SRCHIGH_CFLAGS=`${pkg_config_prog_path} --cflags source-highlight`
1214 SRCHIGH_LIBS=`${pkg_config_prog_path} --libs source-highlight`
1215 AC_DEFINE([HAVE_SOURCE_HIGHLIGHT], 1,
1216 [Define to 1 if the source-highlight library is available])
1217 AC_MSG_RESULT([yes])
189b8c2e 1218 else
62f29fda 1219 AC_MSG_RESULT([no])
189b8c2e
ST
1220 if test "${enable_source_highlight}" = "yes"; then
1221 AC_MSG_ERROR([source-highlight was not found in your system])
1222 fi
1223 fi
1224 fi
62f29fda
TT
1225fi
1226AC_SUBST(SRCHIGH_LIBS)
1227AC_SUBST(SRCHIGH_CFLAGS)
1228
5ee754fc
MK
1229# ------------------------- #
1230# Checks for header files. #
1231# ------------------------- #
c906108c
SS
1232
1233AC_HEADER_STDC
a9322a30 1234# elf_hp.h is for HP/UX 64-bit shared library support.
05ea2a05
TT
1235AC_CHECK_HEADERS([nlist.h machine/reg.h poll.h sys/poll.h \
1236 thread_db.h \
a9322a30 1237 sys/file.h sys/filio.h sys/ioctl.h sys/param.h \
05ea2a05 1238 sys/resource.h sys/ptrace.h ptrace.h \
44122162 1239 sys/reg.h sys/debugreg.h sys/select.h \
2d41fa11 1240 termios.h elf_hp.h])
7cb9022a
MK
1241AC_CHECK_HEADERS(sys/user.h, [], [],
1242[#if HAVE_SYS_PARAM_H
1243# include <sys/param.h>
1244#endif
1245])
5ee754fc 1246
5007d765 1247AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncursesw/ncurses.h ncurses/ncurses.h ncurses/term.h)
c401b55a
MK
1248AC_CHECK_HEADERS(term.h, [], [],
1249[#if HAVE_CURSES_H
1250# include <curses.h>
1251#endif
1252])
5ee754fc 1253
b9362cc7
AC
1254# ------------------------- #
1255# Checks for declarations. #
1256# ------------------------- #
1257
07697489
PA
1258libiberty_INIT
1259
29d17e47 1260AC_CHECK_DECLS([snprintf])
a8111142 1261AM_LC_MESSAGES
b9362cc7 1262
5ee754fc
MK
1263# ------------------ #
1264# Checks for types. #
1265# ------------------ #
c906108c 1266
f9f87d2c
MK
1267AC_CHECK_TYPES(socklen_t, [], [],
1268[#include <sys/types.h>
1269#include <sys/socket.h>
1270])
5ee754fc
MK
1271
1272# ------------------------------------- #
1273# Checks for compiler characteristics. #
1274# ------------------------------------- #
c906108c
SS
1275
1276AC_C_CONST
bce58c09 1277AC_C_INLINE
9b913628 1278AC_C_BIGENDIAN
c906108c 1279
5ee754fc
MK
1280# ------------------------------ #
1281# Checks for library functions. #
1282# ------------------------------ #
1283
05ea2a05 1284AC_CHECK_FUNCS([getuid getgid \
bdca27a2 1285 pipe poll pread pread64 pwrite resize_term \
05ea2a05 1286 getpgid setsid \
c12d372d 1287 sigaction sigsetmask socketpair \
110ed339 1288 ttrace wborder wresize setlocale iconvlist libiconvlist btowc \
3332aaf2 1289 setrlimit getrlimit posix_madvise waitpid \
05ea2a05 1290 use_default_colors])
6c7a06a3 1291AM_LANGINFO_CODESET
3266f10b 1292GDB_AC_COMMON
97bf5e38 1293
eb7aa561
PA
1294# Check the return and argument types of ptrace.
1295GDB_AC_PTRACE
086ec9eb 1296
72473524
DJ
1297dnl AC_FUNC_SETPGRP does not work when cross compiling
1298dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
1299if test "$cross_compiling" = no; then
1300 AC_FUNC_SETPGRP
1301else
1302 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
1303 [AC_TRY_COMPILE([
1304#include <unistd.h>
1305], [
1306 if (setpgrp(1,1) == -1)
1307 exit (0);
1308 else
1309 exit (1);
1310], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
0ad6b8ee 1311if test "$ac_cv_func_setpgrp_void" = yes; then
72473524
DJ
1312 AC_DEFINE(SETPGRP_VOID, 1)
1313fi
1314fi
c906108c 1315
db1ff28b
JK
1316# Assume we'll default to using the included libiberty regex.
1317gdb_use_included_regex=yes
1318
1319# However, if the system regex is GNU regex, then default to *not*
1320# using the included regex.
1321AC_CACHE_CHECK(
1322 [for GNU regex],
1323 [gdb_cv_have_gnu_regex],
1324 [AC_TRY_COMPILE(
1325 [#include <gnu-versions.h>],
1326 [#define REGEX_INTERFACE_VERSION 1
1327#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
1328# error "Version mismatch"
1329#endif],
1330 gdb_cv_have_gnu_regex=yes,
1331 gdb_cv_have_gnu_regex=no)])
0ad6b8ee 1332if test "$gdb_cv_have_gnu_regex" = yes; then
db1ff28b
JK
1333 gdb_use_included_regex=no
1334fi
1335
1336AC_ARG_WITH(included-regex,
1337 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)]),
1338 gdb_with_regex=$withval,
1339 gdb_with_regex=$gdb_use_included_regex)
1340if test "$gdb_with_regex" = yes; then
1341 AC_DEFINE(USE_INCLUDED_REGEX, 1,
1342 [Define to 1 if the regex included in libiberty should be used.])
1343fi
1344
5c45e068
MK
1345# Check if <sys/proc.h> defines `struct thread' with a td_pcb member.
1346AC_CHECK_MEMBERS([struct thread.td_pcb], [], [],
1347[#include <sys/param.h>
1348#include <sys/proc.h>
1349])
70f9f479 1350
da7d81e3
NW
1351# See if <sys/lwp.h> defines `struct lwp`.
1352AC_CACHE_CHECK([for struct lwp], gdb_cv_struct_lwp,
1353[AC_TRY_COMPILE([#include <sys/param.h>
c49fbc6c 1354#define _KMEMUSER
da7d81e3
NW
1355#include <sys/lwp.h>], [struct lwp l;],
1356gdb_cv_struct_lwp=yes, gdb_cv_struct_lwp=no)])
0ad6b8ee 1357if test "$gdb_cv_struct_lwp" = yes; then
da7d81e3
NW
1358 AC_DEFINE(HAVE_STRUCT_LWP, 1,
1359 [Define to 1 if your system has struct lwp.])
1360fi
1361
78434e59
MK
1362# See if <machine/reg.h> degines `struct reg'.
1363AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
1364[AC_TRY_COMPILE([#include <sys/types.h>
1365#include <machine/reg.h>], [struct reg r;],
1366gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
0ad6b8ee 1367if test "$gdb_cv_struct_reg" = yes; then
78434e59
MK
1368 AC_DEFINE(HAVE_STRUCT_REG, 1,
1369 [Define to 1 if your system has struct reg in <machine/reg.h>.])
1370fi
1371
0afdd437 1372# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 1373# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
5c45e068 1374AC_CHECK_MEMBERS([struct reg.r_fs, struct reg.r_gs], [], [],
a6e69c1f
JB
1375 [#include <sys/types.h>
1376#include <machine/reg.h>])
7dfa765c 1377
6fea9e18
L
1378# See if <sys/user.h> supports the %fs_base and %gs_bas amd64 segment registers.
1379# Older amd64 Linux's don't have the fs_base and gs_base members of
1380# `struct user_regs_struct'.
1381AC_CHECK_MEMBERS([struct user_regs_struct.fs_base, struct user_regs_struct.gs_base],
f517c180
EA
1382 [], [], [#include <sys/types.h>
1383#include <sys/user.h>])
6fea9e18 1384
0afdd437 1385# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
1386AC_MSG_CHECKING(for PTRACE_GETREGS)
1387AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
1388[AC_TRY_COMPILE([#include <sys/ptrace.h>],
1389 [PTRACE_GETREGS;],
1390 [gdb_cv_have_ptrace_getregs=yes],
1391 [gdb_cv_have_ptrace_getregs=no])])
1392AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
0ad6b8ee 1393if test "$gdb_cv_have_ptrace_getregs" = yes; then
4869db5e 1394 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
60ca704f 1395 [Define if sys/ptrace.h defines the PTRACE_GETREGS request.])
f60300e7
MK
1396fi
1397
0afdd437 1398# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
1399AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
1400AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 1401[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
1402 [PTRACE_GETFPXREGS;],
1403 [gdb_cv_have_ptrace_getfpxregs=yes],
1404 [gdb_cv_have_ptrace_getfpxregs=no])])
1405AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
0ad6b8ee 1406if test "$gdb_cv_have_ptrace_getfpxregs" = yes; then
60ca704f
SE
1407 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
1408 [Define if sys/ptrace.h defines the PTRACE_GETFPXREGS request.])
5c44784c
JM
1409fi
1410
0afdd437
MK
1411# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
1412AC_MSG_CHECKING(for PT_GETDBREGS)
1413AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
1414[AC_TRY_COMPILE([#include <sys/types.h>
1415#include <sys/ptrace.h>],
1416 [PT_GETDBREGS;],
1417 [gdb_cv_have_pt_getdbregs=yes],
1418 [gdb_cv_have_pt_getdbregs=no])])
1419AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
0ad6b8ee 1420if test "$gdb_cv_have_pt_getdbregs" = yes; then
60ca704f
SE
1421 AC_DEFINE(HAVE_PT_GETDBREGS, 1,
1422 [Define if sys/ptrace.h defines the PT_GETDBREGS request.])
0afdd437
MK
1423fi
1424
7e89e357
JT
1425# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
1426AC_MSG_CHECKING(for PT_GETXMMREGS)
1427AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
1428[AC_TRY_COMPILE([#include <sys/types.h>
1429#include <sys/ptrace.h>],
1430 [PT_GETXMMREGS;],
1431 [gdb_cv_have_pt_getxmmregs=yes],
1432 [gdb_cv_have_pt_getxmmregs=no])])
1433AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
0ad6b8ee 1434if test "$gdb_cv_have_pt_getxmmregs" = yes; then
60ca704f
SE
1435 AC_DEFINE(HAVE_PT_GETXMMREGS, 1,
1436 [Define if sys/ptrace.h defines the PT_GETXMMREGS request.])
7e89e357
JT
1437fi
1438
6e9567fe
JB
1439# See if <sys/ptrace.h> supports LWP names on FreeBSD
1440# Older FreeBSD versions don't have the pl_tdname member of
1441# `struct ptrace_lwpinfo'.
1442AC_CHECK_MEMBERS([struct ptrace_lwpinfo.pl_tdname], [], [],
1443 [#include <sys/ptrace.h>])
1444
e6cdd38e
JB
1445# See if <sys/ptrace.h> supports syscall fields on FreeBSD. The
1446# pl_syscall_code member of `struct ptrace_lwpinfo' was added in
1447# FreeBSD 10.3.
1448AC_CHECK_MEMBERS([struct ptrace_lwpinfo.pl_syscall_code], [], [],
1449 [#include <sys/ptrace.h>])
6e9567fe 1450
bc8bcb4b
MK
1451# Check if the compiler supports the `long long' type.
1452
1453AC_CACHE_CHECK([for long long support in compiler], gdb_cv_c_long_long,
1454 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1455[[extern long long foo;]],
1456[[switch (foo & 2) { case 0: return 1; }]])],
1457 gdb_cv_c_long_long=yes,
1458 gdb_cv_c_long_long=no)])
0ad6b8ee 1459if test "$gdb_cv_c_long_long" != yes; then
74a0d9f6
JK
1460 # libdecnumber requires long long.
1461 AC_MSG_ERROR([Compiler must support long long for GDB.])
c906108c
SS
1462fi
1463
bc8bcb4b 1464# Check if the compiler and runtime support printing long longs.
c906108c 1465
bc8bcb4b
MK
1466AC_CACHE_CHECK([for long long support in printf],
1467 gdb_cv_printf_has_long_long,
1468 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1469[[char buf[32];
c906108c
SS
1470 long long l = 0;
1471 l = (l << 16) + 0x0123;
1472 l = (l << 16) + 0x4567;
1473 l = (l << 16) + 0x89ab;
1474 l = (l << 16) + 0xcdef;
1475 sprintf (buf, "0x%016llx", l);
bc8bcb4b
MK
1476 return (strcmp ("0x0123456789abcdef", buf));]])],
1477 gdb_cv_printf_has_long_long=yes,
1478 gdb_cv_printf_has_long_long=no,
1479 gdb_cv_printf_has_long_long=no)])
0ad6b8ee 1480if test "$gdb_cv_printf_has_long_long" = yes; then
bc8bcb4b
MK
1481 AC_DEFINE(PRINTF_HAS_LONG_LONG, 1,
1482 [Define to 1 if the "%ll" format works to print long longs.])
c906108c 1483fi
c906108c 1484
1a619819
LM
1485# Check if the compiler and runtime support printing decfloats.
1486
1487AC_CACHE_CHECK([for decfloat support in printf],
1488 gdb_cv_printf_has_decfloat,
1489 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1490[[char buf[64];
1491 _Decimal32 d32 = 1.2345df;
1492 _Decimal64 d64 = 1.2345dd;
1493 _Decimal128 d128 = 1.2345dl;
1494 sprintf (buf, "Decimal32: %H\nDecimal64: %D\nDecimal128: %DD", d32, d64, d128);
1495 return (strcmp ("Decimal32: 1.2345\nDecimal64: 1.2345\nDecimal128: 1.2345", buf));]])],
1496 gdb_cv_printf_has_decfloat=yes,
1497 gdb_cv_printf_has_decfloat=no,
1498 gdb_cv_printf_has_decfloat=no)])
0ad6b8ee 1499if test "$gdb_cv_printf_has_decfloat" = yes; then
1a619819
LM
1500 AC_DEFINE(PRINTF_HAS_DECFLOAT, 1,
1501 [Define to 1 if the "%H, %D and %DD" formats work to print decfloats.])
1502fi
1503
bc8bcb4b
MK
1504# Check if the compiler supports the `long double' type. We can't use
1505# AC_C_LONG_DOUBLE because that one does additional checks on the
1506# constants defined in <float.h> that fail on some systems,
1507# e.g. FreeBSD/i386 4.7 and OpenBSD/i386 3.6.
c906108c 1508
bc8bcb4b
MK
1509AC_CACHE_CHECK([for long double support in compiler], gdb_cv_c_long_double,
1510 [AC_COMPILE_IFELSE([AC_LANG_SOURCE([[long double foo;]])],
1511 gdb_cv_c_long_double=yes,
1512 gdb_cv_c_long_double=no)])
0ad6b8ee 1513if test "$gdb_cv_c_long_double" = yes; then
bc8bcb4b
MK
1514 AC_DEFINE(HAVE_LONG_DOUBLE, 1,
1515 [Define to 1 if the compiler supports long double.])
c906108c
SS
1516fi
1517
bc8bcb4b 1518# Check if the compiler and runtime support printing long doubles.
c906108c 1519
bc8bcb4b
MK
1520AC_CACHE_CHECK([for long double support in printf],
1521 gdb_cv_printf_has_long_double,
1522 [AC_RUN_IFELSE([AC_LANG_PROGRAM([AC_INCLUDES_DEFAULT],
1523[[char buf[16];
c906108c
SS
1524 long double f = 3.141592653;
1525 sprintf (buf, "%Lg", f);
bc8bcb4b
MK
1526 return (strncmp ("3.14159", buf, 7));]])],
1527 gdb_cv_printf_has_long_double=yes,
1528 gdb_cv_printf_has_long_double=no,
1529 gdb_cv_printf_has_long_double=no)])
0ad6b8ee 1530if test "$gdb_cv_printf_has_long_double" = yes; then
bc8bcb4b
MK
1531 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE, 1,
1532 [Define to 1 if the "%Lg" format works to print long doubles.])
c906108c 1533fi
c906108c 1534
bc8bcb4b 1535# Check if the compiler and runtime support scanning long doubles.
c906108c 1536
4869db5e 1537AC_CACHE_CHECK([for long double support in scanf],
bc8bcb4b
MK
1538 gdb_cv_scanf_has_long_double,
1539 [AC_RUN_IFELSE([AC_LANG_PROGRAM(
1540[[#include <stdio.h>]],
1541[[char *buf = "3.141592653";
c906108c
SS
1542 long double f = 0;
1543 sscanf (buf, "%Lg", &f);
bc8bcb4b
MK
1544 return !(f > 3.14159 && f < 3.14160);]])],
1545 gdb_cv_scanf_has_long_double=yes,
1546 gdb_cv_scanf_has_long_double=no,
1547 gdb_cv_scanf_has_long_double=no)])
0ad6b8ee 1548if test "$gdb_cv_scanf_has_long_double" = yes; then
bc8bcb4b
MK
1549 AC_DEFINE(SCANF_HAS_LONG_DOUBLE, 1,
1550 [Define to 1 if the "%Lg" format works to scan long doubles.])
c906108c 1551fi
c906108c 1552
438013df
AO
1553case ${host_os} in
1554aix*)
1555 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
1556 SAVE_LDFLAGS=$LDFLAGS
1557
1558 case $GCC in
1559 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
1560 *) gdb_cv_bigtoc=-bbigtoc ;;
1561 esac
1562
1563 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
1564 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 1565 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
1566 ])
1567 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
1568 ;;
1569esac
1570
38f6b338
JK
1571AC_MSG_CHECKING(for the dynamic export flag)
1572dynamic_list=false
0407b3f1 1573if test "${gdb_native}" = yes; then
38f6b338
JK
1574 # The dynamically loaded libthread_db needs access to symbols in the gdb
1575 # executable. Older GNU ld supports --export-dynamic but --dynamic-list
1576 # may not be supported there.
1577 old_LDFLAGS="$LDFLAGS"
1578 # Older GNU ld supports --export-dynamic but --dynamic-list it does not.
1579 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
1580 LDFLAGS="$LDFLAGS $RDYNAMIC"
1581 if test "${have_libpython}" = no; then
1582 AC_TRY_LINK([], [], [dynamic_list=true])
1583 else
1584 # Workaround http://bugs.python.org/issue4434 where static
1585 # libpythonX.Y.a would get its symbols required for
1586 # pythonX.Y/lib-dynload/*.so modules hidden by -Wl,--dynamic-list.
1587 # Problem does not happen for the recommended libpythonX.Y.so linkage.
a4a1c157
PA
1588
1589 # Note the workaround for Python
1590 # http://bugs.python.org/issue10112 earlier has removed
1591 # -export-dynamic from PYTHON_LIBS. That's exactly what we want
1592 # here too, as otherwise it'd make this -Wl,--dynamic-list test
1593 # always pass.
38f6b338
JK
1594 old_CFLAGS="$CFLAGS"
1595 CFLAGS="$CFLAGS $PYTHON_CFLAGS"
8c1fb155
JK
1596 old_LIBS="$LIBS"
1597 LIBS="$LIBS $PYTHON_LIBS"
1b4f615e
PA
1598 old_CPPFLAGS="$CPPFLAGS"
1599 CPPFLAGS="$CPPFLAGS $PYTHON_CPPFLAGS"
38f6b338 1600 AC_RUN_IFELSE(
d0ac1c44 1601 [AC_LANG_PROGRAM(
1b4f615e 1602 [#include "Python.h"],
38f6b338
JK
1603 [int err;
1604 Py_Initialize ();
1605 err = PyRun_SimpleString ("import itertools\n");
1606 Py_Finalize ();
d0ac1c44 1607 return err == 0 ? 0 : 1;])],
38f6b338 1608 [dynamic_list=true], [], [true])
8c1fb155 1609 LIBS="$old_LIBS"
38f6b338 1610 CFLAGS="$old_CFLAGS"
1b4f615e 1611 CPPFLAGS="$old_CPPFLAGS"
f6528abd 1612 fi
38f6b338
JK
1613 LDFLAGS="$old_LDFLAGS"
1614fi
1615if $dynamic_list; then
1616 found="-Wl,--dynamic-list"
1617 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'
1618else
1619 found="-rdynamic"
1620 RDYNAMIC="-rdynamic"
0407b3f1 1621fi
38f6b338
JK
1622AC_SUBST(RDYNAMIC)
1623AC_MSG_RESULT($found)
0407b3f1
AS
1624
1625dnl For certain native configurations, we need to check whether thread
1626dnl support can be built in or not.
1627dnl
1628dnl Note that we only want this if we are both native (host == target),
1629dnl and not doing a canadian cross build (build == host).
f6528abd 1630
0ad6b8ee 1631if test "${build}" = "${host}" -a "${host}" = "${target}" ; then
c906108c 1632 case ${host_os} in
d92419e5
JB
1633 aix*)
1634 AC_MSG_CHECKING(for AiX thread debugging library)
1635 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1636 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1637 [#ifndef PTHDB_VERSION_3
1638 #error
1639 #endif],
1640 gdb_cv_have_aix_thread_debug=yes,
1641 gdb_cv_have_aix_thread_debug=no)])
1642 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
0ad6b8ee 1643 if test "$gdb_cv_have_aix_thread_debug" = yes; then
d92419e5 1644 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1645 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
7f533142 1646 LIBS="$LIBS -lpthdebug"
d645e32e
JB
1647
1648 # Older versions of AIX do not provide the declaration for
1649 # the getthrds function (it appears that it was introduced
1650 # with AIX 6.x).
1651 AC_CHECK_DECLS(getthrds, [], [], [[#include <procinfo.h>]])
d92419e5
JB
1652 fi
1653 ;;
c906108c
SS
1654 esac
1655 AC_SUBST(CONFIG_LDFLAGS)
1656fi
1657
59f80f10
DJ
1658dnl See if we have a thread_db header file that has TD_NOTALLOC and
1659dnl other error codes.
3f47be5c
EZ
1660if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1661 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1662 gdb_cv_thread_db_h_has_td_notalloc,
1663 AC_TRY_COMPILE(
1664 [#include <thread_db.h>],
1665 [int i = TD_NOTALLOC;],
1666 gdb_cv_thread_db_h_has_td_notalloc=yes,
1667 gdb_cv_thread_db_h_has_td_notalloc=no
1668 )
1669 )
59f80f10
DJ
1670 AC_CACHE_CHECK([whether <thread_db.h> has TD_VERSION],
1671 gdb_cv_thread_db_h_has_td_version,
1672 AC_TRY_COMPILE(
1673 [#include <thread_db.h>],
1674 [int i = TD_VERSION;],
1675 gdb_cv_thread_db_h_has_td_version=yes,
1676 gdb_cv_thread_db_h_has_td_version=no
1677 )
1678 )
1679 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTLS],
1680 gdb_cv_thread_db_h_has_td_notls,
1681 AC_TRY_COMPILE(
1682 [#include <thread_db.h>],
1683 [int i = TD_NOTLS;],
1684 gdb_cv_thread_db_h_has_td_notls=yes,
1685 gdb_cv_thread_db_h_has_td_notls=no
1686 )
1687 )
3f47be5c
EZ
1688fi
1689if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1690 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1691 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1692fi
59f80f10
DJ
1693if test "x$gdb_cv_thread_db_h_has_td_version" = "xyes"; then
1694 AC_DEFINE(THREAD_DB_HAS_TD_VERSION, 1,
1695 [Define if <thread_db.h> has the TD_VERSION error code.])
1696fi
1697if test "x$gdb_cv_thread_db_h_has_td_notls" = "xyes"; then
1698 AC_DEFINE(THREAD_DB_HAS_TD_NOTLS, 1,
1699 [Define if <thread_db.h> has the TD_NOTLS error code.])
1700fi
3f47be5c 1701
e655c1a2
PA
1702dnl Set the host's .gdbinit filename.
1703case $host_os in
1704 go32* | *djgpp*)
1705 gdbinit=gdb.ini
1706 ;;
1707 *)
1708 gdbinit=.gdbinit
1709 ;;
1710esac
1711AC_DEFINE_UNQUOTED(GDBINIT,"$gdbinit",[The .gdbinit filename.])
1712
c906108c 1713dnl Handle optional features that can be enabled.
fb40c209 1714
f83d8a90
DE
1715# Support for --with-sysroot is a copy of GDB_AC_WITH_DIR,
1716# except that the argument to --with-sysroot is optional.
1717# --with-sysroot (or --with-sysroot=yes) sets the default sysroot path.
1718if test "x$with_sysroot" = xyes; then
1719 with_sysroot="${exec_prefix}/${target_alias}/sys-root"
1720fi
030292b7 1721AC_ARG_WITH(sysroot,
f83d8a90
DE
1722 AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@],
1723 [search for usr/lib et al within DIR]),
1724 [TARGET_SYSTEM_ROOT=$withval], [TARGET_SYSTEM_ROOT=])
1725AC_DEFINE_DIR(TARGET_SYSTEM_ROOT, TARGET_SYSTEM_ROOT,
1726 [search for usr/lib et al within DIR])
030292b7 1727AC_SUBST(TARGET_SYSTEM_ROOT)
f83d8a90 1728GDB_AC_DEFINE_RELOCATABLE(TARGET_SYSTEM_ROOT, sysroot, ${ac_define_dir})
030292b7 1729
b14b1491
TT
1730GDB_AC_WITH_DIR(SYSTEM_GDBINIT, system-gdbinit,
1731 [automatically load a system-wide gdbinit file],
1732 [])
ed2a2229
CB
1733GDB_AC_WITH_DIR(SYSTEM_GDBINIT_DIR, system-gdbinit-dir,
1734 [automatically load system-wide gdbinit files from this directory],
1735 [])
16e7150e 1736
b835bb52 1737AM_GDB_WARNINGS
f35d5ade 1738AM_GDB_UBSAN
3bc3d82a 1739
7a292a7a
SS
1740# In the Cygwin environment, we need some additional flags.
1741AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
92a021de 1742[AC_EGREP_CPP(^lose$, [
7a292a7a
SS
1743#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1744lose
1745#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1746
aff38e61
AC
1747
1748dnl Figure out which of the many generic ser-*.c files the _host_ supports.
3eb25fda 1749SER_HARDWIRE="ser-base.o ser-unix.o ser-pipe.o ser-tcp.o"
aff38e61 1750case ${host} in
95cbc983
AC
1751 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1752 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
0ea3f30e 1753 *mingw32*) SER_HARDWIRE="ser-base.o ser-tcp.o ser-mingw.o" ;;
c1168a2f 1754 *) SER_HARDWIRE="$SER_HARDWIRE ser-uds.o" ;;
aff38e61
AC
1755esac
1756AC_SUBST(SER_HARDWIRE)
1757
cd0fc7c3
SS
1758# libreadline needs libuser32.a in a cygwin environment
1759WIN32LIBS=
0ad6b8ee 1760if test x"$gdb_cv_os_cygwin" = xyes; then
c5394b80
JM
1761 WIN32LIBS="-luser32"
1762 case "${target}" in
1763 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1764 ;;
1765 esac
cd0fc7c3 1766fi
b4505029
MM
1767
1768# The ser-tcp.c module requires sockets.
b2ceabe8
TT
1769# Note that WIN32APILIBS is set by GDB_AC_COMMON.
1770WIN32LIBS="$WIN32LIBS $WIN32APILIBS"
7a292a7a 1771
31d99776 1772# Add ELF support to GDB, but only if BFD includes ELF support.
def63ff0
TT
1773GDB_AC_CHECK_BFD([for ELF support in BFD], gdb_cv_var_elf,
1774 [bfd_get_elf_phdr_upper_bound (NULL)], elf-bfd.h)
0ad6b8ee 1775if test "$gdb_cv_var_elf" = yes; then
d4777acb 1776 CONFIG_OBS="$CONFIG_OBS elfread.o stap-probe.o dtrace-probe.o"
31d99776
DJ
1777 AC_DEFINE(HAVE_ELF, 1,
1778 [Define if ELF support should be included.])
075ff26d
JK
1779 # -ldl is provided by bfd/Makfile.am (LIBDL) <PLUGINS>.
1780 if test "$plugins" = "yes"; then
a48b32c0 1781 AC_SEARCH_LIBS(dlopen, dl)
075ff26d 1782 fi
31d99776 1783fi
31d99776 1784
4f05add4
TT
1785# Add macho support to GDB, but only if BFD includes it.
1786GDB_AC_CHECK_BFD([for Mach-O support in BFD], gdb_cv_var_macho,
1787 [bfd_mach_o_lookup_command (NULL, 0, NULL)], mach-o.h)
0ad6b8ee 1788if test "$gdb_cv_var_macho" = yes; then
4f05add4
TT
1789 CONFIG_OBS="$CONFIG_OBS machoread.o"
1790fi
1791
121ce6e5
DJ
1792# Add any host-specific objects to GDB.
1793CONFIG_OBS="${CONFIG_OBS} ${gdb_host_obs}"
1794
608e2dbb 1795# If building on ELF, look for lzma support for embedded compressed debug info.
0ad6b8ee 1796if test "$gdb_cv_var_elf" = yes; then
608e2dbb
TT
1797 AC_ARG_WITH(lzma,
1798 AS_HELP_STRING([--with-lzma], [support lzma compression (auto/yes/no)]),
1799 [], [with_lzma=auto])
1800 AC_MSG_CHECKING([whether to use lzma])
1801 AC_MSG_RESULT([$with_lzma])
1802
1803 if test "${with_lzma}" != no; then
1804 AC_LIB_HAVE_LINKFLAGS([lzma], [], [#include "lzma.h"],
1805 [lzma_index_iter iter;
1806 lzma_index_iter_init (&iter, 0);
1807 lzma_mf_is_supported (LZMA_MF_HC3);])
1808 if test "$HAVE_LIBLZMA" != yes; then
1809 if test "$with_lzma" = yes; then
1810 AC_MSG_ERROR([missing liblzma for --with-lzma])
1811 fi
1812 fi
1813 fi
1814fi
1815
3fc11d3e
JM
1816LIBGUI="../libgui/src/libgui.a"
1817GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1818AC_SUBST(LIBGUI)
1819AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1820
3fc11d3e
JM
1821WIN32LDAPP=
1822AC_SUBST(WIN32LIBS)
1823AC_SUBST(WIN32LDAPP)
1824
d91670b9 1825case "${host}" in
686a5eed 1826*-*-cygwin* | *-*-mingw* )
d91670b9
CV
1827 configdir="win"
1828 ;;
1829*)
1830 configdir="unix"
1831 ;;
1832esac
3fc11d3e
JM
1833
1834GDBTKLIBS=
1835if test "${enable_gdbtk}" = "yes"; then
1836
d1c3b63a
KS
1837 # Gdbtk must have an absolute path to srcdir in order to run
1838 # properly when not installed.
1839 here=`pwd`
1840 cd ${srcdir}
1841 GDBTK_SRC_DIR=`pwd`
1842 cd $here
1843
5062cc19 1844 SC_PATH_TCLCONFIG
85541719
DE
1845
1846 # If $no_tk is nonempty, then we can't do Tk, and there is no
1847 # point to doing Tcl.
1848 SC_PATH_TKCONFIG
1849
1850 if test -z "${no_tcl}" -a -z "${no_tk}"; then
5062cc19
KS
1851 SC_LOAD_TCLCONFIG
1852
1853 # Check for in-tree tcl
1854 here=`pwd`
1855 cd ${srcdir}/..
1856 topdir=`pwd`
1857 cd ${here}
1858
1859 intree="no"
1860 if test "${TCL_SRC_DIR}" = "${topdir}/tcl"; then
1861 intree="yes"
1862 fi
1863
1864 # Find Tcl private headers
1865 if test x"${intree}" = xno; then
1866 CY_AC_TCL_PRIVATE_HEADERS
1867 TCL_INCLUDE="${TCL_INCLUDE_SPEC} ${TCL_PRIVATE_INCLUDE}"
1868 TCL_LIBRARY="${TCL_LIB_SPEC}"
1869 TCL_DEPS=""
1870 else
1871 # If building tcl in the same src tree, private headers
1872 # are not needed, but we need to be sure to use the right
1873 # headers library
4869db5e 1874 TCL_INCLUDE="-I${TCL_SRC_DIR}/generic"
5062cc19
KS
1875 TCL_LIBRARY="${TCL_BUILD_LIB_SPEC}"
1876 TCL_DEPS="../tcl/${configdir}${TCL_LIB_FILE}"
1877 fi
1878 AC_SUBST(TCL_INCLUDE)
1879 AC_SUBST(TCL_LIBRARY)
1880 AC_SUBST(TCL_DEPS)
dd2504ab 1881
85541719
DE
1882 SC_LOAD_TKCONFIG
1883
1884 # Check for in-tree Tk
1885 intree="no"
1886 if test "${TK_SRC_DIR}" = "${topdir}/tk"; then
4869db5e 1887 intree="yes"
85541719
DE
1888 fi
1889
1890 # Find Tk private headers
1891 if test x"${intree}" = xno; then
1892 CY_AC_TK_PRIVATE_HEADERS
1893 TK_INCLUDE="${TK_INCLUDE_SPEC} ${TK_PRIVATE_INCLUDE}"
1894 TK_LIBRARY=${TK_LIB_SPEC}
1895 TK_DEPS=""
1896 else
1897 TK_INCLUDE="-I${TK_SRC_DIR}/generic"
1898 TK_LIBRARY="${TK_BUILD_LIB_SPEC}"
1899 TK_DEPS="../tk/${configdir}/${TK_LIB_FILE}"
1900 fi
1901 AC_SUBST(TK_INCLUDE)
1902 AC_SUBST(TK_LIBRARY)
1903 AC_SUBST(TK_DEPS)
1904 AC_SUBST(TK_XINCLUDES)
1905
1906 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
1907
1908 # Include some libraries that Tcl and Tk want.
1909 TCL_LIBS='$(LIBGUI) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
1910 # Yes, the ordering seems wrong here. But it isn't.
1911 # TK_LIBS is the list of libraries that need to be linked
1912 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1913 # were in LIBS then any link tests after this point would
1914 # try to include things like `$(LIBGUI)', which wouldn't work.
1915 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
1916
1917 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1918 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1919 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
1920 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1921 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1922 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1923 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
1924
0ad6b8ee 1925 if test x"$gdb_cv_os_cygwin" = xyes; then
85541719
DE
1926 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1927 WIN32LDAPP="-Wl,--subsystem,console"
1928 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
3fc11d3e 1929 fi
ffc6a242 1930
85541719
DE
1931 AC_CONFIG_SUBDIRS(gdbtk)
1932 fi
3fc11d3e
JM
1933fi
1934
3fc11d3e
JM
1935AC_SUBST(X_CFLAGS)
1936AC_SUBST(X_LDFLAGS)
1937AC_SUBST(X_LIBS)
3fc11d3e
JM
1938AC_SUBST(GDBTKLIBS)
1939AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1940AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1941
c906108c
SS
1942AC_PATH_X
1943
4869db5e
RM
1944# Unlike the sim directory, whether a simulator is linked is controlled by
1945# presence of a gdb_sim definition in the target configure.tgt entry.
7a292a7a
SS
1946# This code just checks for a few cases where we'd like to ignore those
1947# definitions, even when they're present in the '.mt' file. These cases
1948# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1949# not part of the source tree.
7a292a7a
SS
1950#
1951AC_ARG_ENABLE(sim,
d2596e2e 1952AS_HELP_STRING([--enable-sim], [link gdb with simulator]),
7a292a7a
SS
1953[echo "enable_sim = $enable_sim";
1954 echo "enableval = ${enableval}";
1955 case "${enableval}" in
1956 yes) ignore_sim=false ;;
1957 no) ignore_sim=true ;;
1958 *) ignore_sim=false ;;
1959 esac],
1960[ignore_sim=false])
1961
1962if test ! -d "${srcdir}/../sim"; then
1963 ignore_sim=true
1964fi
1965
9b624dbe
UW
1966SIM=
1967SIM_OBS=
1968if test "${ignore_sim}" = "false"; then
1969 if test x"${gdb_sim}" != x ; then
1970 SIM="${gdb_sim}"
1971 SIM_OBS="remote-sim.o"
60ca704f 1972 AC_DEFINE(WITH_SIM, 1, [Define if the simulator is being linked in.])
976102cd
PA
1973
1974 # Some tdep code should only be compiled in when the ppc sim is
1975 # built. PR sim/13418.
1976 case $target in
1977 powerpc*-*-*)
1978 AC_DEFINE(WITH_PPC_SIM, 1, [Define if the PPC simulator is being linked in.])
1979 ;;
1980 esac
9b624dbe 1981 fi
7a292a7a 1982fi
9b624dbe
UW
1983AC_SUBST(SIM)
1984AC_SUBST(SIM_OBS)
7a292a7a 1985
c906108c 1986AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1987AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1988
1989AC_SUBST(CONFIG_OBS)
1990AC_SUBST(CONFIG_DEPS)
1991AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1992AC_SUBST(CONFIG_ALL)
1993AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1994AC_SUBST(CONFIG_INSTALL)
1995AC_SUBST(CONFIG_UNINSTALL)
c906108c 1996
c35f4ffc
AC
1997# List of host floatformats.
1998AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1999AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
2000AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
2001
c906108c
SS
2002# target_subdir is used by the testsuite to find the target libraries.
2003target_subdir=
2004if test "${host}" != "${target}"; then
2005 target_subdir="${target_alias}/"
2006fi
2007AC_SUBST(target_subdir)
2008
21ea5acd 2009# Import nat definitions.
2b351b19 2010nat_makefile_frag=/dev/null
771b4502 2011if test "${gdb_native}" = "yes"; then
21ea5acd
SDJ
2012 . ${srcdir}/configure.nat
2013 nativefile=$NAT_FILE
c906108c 2014fi
c906108c 2015
21ea5acd
SDJ
2016AC_SUBST(NAT_FILE)
2017AC_SUBST(NATDEPFILES)
2018AC_SUBST(NAT_CDEPS)
2019AC_SUBST(LOADLIBES)
2020AC_SUBST(MH_CFLAGS)
2021AC_SUBST(XM_CLIBS)
2022AC_SUBST(NAT_GENERATED_FILES)
2023AC_SUBST(HAVE_NATIVE_GCORE_HOST)
2b351b19 2024AC_SUBST_FILE(nat_makefile_frag)
c906108c 2025
b00a8037
DJ
2026if test x"${gdb_osabi}" != x ; then
2027 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
2028 [Define to the default OS ABI for this configuration.])
2029fi
2030
393fd4c3
YQ
2031# Check for babeltrace and babeltrace-ctf
2032AC_ARG_WITH(babeltrace,
2033 AC_HELP_STRING([--with-babeltrace], [include babeltrace support (auto/yes/no)]),
2034 [], [with_babeltrace=auto])
2035AC_MSG_CHECKING([whether to use babeltrace])
2036AC_MSG_RESULT([$with_babeltrace])
2037
2038if test "x$with_babeltrace" = "xno"; then
2039 AC_MSG_WARN([babletrace support disabled; GDB is unable to read CTF data.])
2040else
2041 # Append -Werror to CFLAGS so that configure can catch the warning
2042 # "assignment from incompatible pointer type", which is related to
2043 # the babeltrace change from 1.0.3 to 1.1.0. Babeltrace 1.1.0 works
2044 # in GDB, while babeltrace 1.0.3 is broken.
2045 # AC_LIB_HAVE_LINKFLAGS may modify CPPFLAGS in it, so it should be
2046 # safe to save and restore CFLAGS here.
2047 saved_CFLAGS=$CFLAGS
2048 CFLAGS="$CFLAGS -Werror"
2049 AC_LIB_HAVE_LINKFLAGS([babeltrace], [babeltrace-ctf],
2050 [#include <babeltrace/babeltrace.h>
2051 #include <babeltrace/ctf/events.h>
2052 #include <babeltrace/ctf/iterator.h>],
2053 [struct bt_iter_pos *pos = bt_iter_get_pos (bt_ctf_get_iter (NULL));
2054 struct bt_ctf_event *event = NULL;
2055 const struct bt_definition *scope;
2056
13cdc2af 2057 pos->type = BT_SEEK_BEGIN;
65c749e7 2058 bt_iter_set_pos (bt_ctf_get_iter (NULL), pos);
4869db5e 2059 scope = bt_ctf_get_top_level_scope (event,
393fd4c3
YQ
2060 BT_STREAM_EVENT_HEADER);
2061 bt_ctf_get_uint64 (bt_ctf_get_field (event, scope, "id"));
2062 ])
2063 CFLAGS=$saved_CFLAGS
2064
2065 if test "$HAVE_LIBBABELTRACE" != yes; then
2066 if test "$with_babeltrace" = yes; then
2067 AC_MSG_ERROR([babeltrace is missing or unusable])
2068 else
2069 AC_MSG_WARN([babeltrace is missing or unusable; GDB is unable to read CTF data.])
2070 fi
2071 fi
2072fi
2073
ccb1ba62
CB
2074# Check for xxhash
2075AC_ARG_WITH(xxhash,
2076 AC_HELP_STRING([--with-xxhash], [use libxxhash for hashing (faster) (auto/yes/no)]),
2077 [], [with_xxhash=auto])
2078
2079if test "x$with_xxhash" != "xno"; then
2080 AC_LIB_HAVE_LINKFLAGS([xxhash], [],
2081 [#include <xxhash.h>],
2082 [XXH32("foo", 3, 0);
2083 ])
2084 if test "$HAVE_LIBXXHASH" != yes; then
2085 if test "$with_xxhash" = yes; then
2086 AC_MSG_ERROR([xxhash is missing or unusable])
2087 fi
2088 fi
2089 if test "x$with_xxhash" = "xauto"; then
2090 with_xxhash="$HAVE_LIBXXHASH"
2091 fi
2092fi
2093
2094AC_MSG_CHECKING([whether to use xxhash])
2095AC_MSG_RESULT([$with_xxhash])
2096
a0a461e5 2097NM_H=
c906108c
SS
2098rm -f nm.h
2099if test "${nativefile}" != ""; then
0f475e27
AC
2100 case "${nativefile}" in
2101 nm-*.h ) GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}" ;;
2102 * ) GDB_NM_FILE="${nativefile}"
2103 esac
a0a461e5
TT
2104 AC_CONFIG_LINKS([nm.h:$GDB_NM_FILE], [echo > stamp-nmh],
2105 [GDB_NM_FILE=$GDB_NM_FILE])
60ca704f 2106 AC_DEFINE_UNQUOTED(GDB_NM_FILE, "${GDB_NM_FILE}", [nativefile])
a0a461e5 2107 NM_H=nm.h
c906108c 2108fi
cfd53605 2109AC_SUBST(GDB_NM_FILE)
a0a461e5 2110AC_SUBST(NM_H)
5a2402b8 2111
e3487908
GKB
2112dnl Add dependency for xsltproc if building with maintainer-mode enabled.
2113AC_PATH_PROGS(XSLTPROC, xsltproc, missing)
2114if test "x$USE_MAINTAINER_MODE" = xyes; then
2115 if test "${XSLTPROC}" = missing; then
2116 AC_ERROR(unable to find xsltproc. maintainer-mode requires xsltproc.)
2117 fi
2118fi
2119AC_SUBST(XSLTPROC)
2120
c906108c
SS
2121dnl Check for exe extension set on certain hosts (e.g. Win32)
2122AC_EXEEXT
2123
234b45d4 2124dnl Detect the character set used by this host.
6c7a06a3
TT
2125dnl At the moment, we just assume it's UTF-8.
2126AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "UTF-8",
234b45d4
KB
2127 [Define to be a string naming the default host character set.])
2128
8ecfd7bd 2129GDB_AC_SELFTEST([
01027315
TT
2130 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_UNITTESTS_OBS) selftest-arch.o"
2131 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_UNITTESTS_SRCS) selftest-arch.c"
8ecfd7bd 2132])
dcd1f979 2133
f6a88844
JM
2134GDB_AC_TRANSFORM([gdb], [GDB_TRANSFORM_NAME])
2135GDB_AC_TRANSFORM([gcore], [GCORE_TRANSFORM_NAME])
b292c783 2136AC_CONFIG_FILES([gcore], [chmod +x gcore])
c5adaa19 2137AC_CONFIG_FILES([Makefile gdb-gdb.gdb gdb-gdb.py doc/Makefile data-directory/Makefile])
c906108c 2138
1e94266c 2139AC_OUTPUT
This page took 1.523873 seconds and 4 git commands to generate.