2004-08-15 Michael Chastain <mec.gnu@mindspring.com>
[deliverable/binutils-gdb.git] / gdb / configure.in
CommitLineData
c906108c 1dnl Autoconf configure script for GDB, the GNU debugger.
0f0cffd2 2dnl Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004
b6ba6518 3dnl Free Software Foundation, Inc.
c906108c
SS
4dnl
5dnl This file is part of GDB.
6dnl
7dnl This program is free software; you can redistribute it and/or modify
8dnl it under the terms of the GNU General Public License as published by
9dnl the Free Software Foundation; either version 2 of the License, or
10dnl (at your option) any later version.
11dnl
12dnl This program is distributed in the hope that it will be useful,
13dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
14dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15dnl GNU General Public License for more details.
16dnl
17dnl You should have received a copy of the GNU General Public License
18dnl along with this program; if not, write to the Free Software
19dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20
21dnl Process this file with autoconf to produce a configure script.
22
23AC_PREREQ(2.13)dnl
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
32AM_PROG_CC_STDC
33
34AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
35AC_CANONICAL_SYSTEM
36
8bb2c122
MK
37# FIXME: kettenis/20030102: The AC_PROG_RANLIB from Autoconf 2.13
38# doesn't support cross-compilation, but the one from Autoconf 2.5x
39# does. Override RANLIB here (i.e. before running AC_PROG_RANLIB) to
40# deal with the lossage. Note that CY_GNU_GETTEXT currently calls
f6e85fc8 41# AC_PROG_RANLIB. This can be removed when we switch to Autoconf
8bb2c122
MK
42# 2.5x.
43AC_CHECK_TOOL(RANLIB, ranlib, :)
44
ddc9cd0f
AC
45dnl List of object files and targets accumulated by configure.
46
47CONFIG_OBS=
48CONFIG_DEPS=
49CONFIG_SRCS=
50ENABLE_CFLAGS=
51
52CONFIG_ALL=
53CONFIG_CLEAN=
54CONFIG_INSTALL=
55CONFIG_UNINSTALL=
56
0fbb3da7 57dnl Set up for gettext. PACKAGE is used when we call bindtextdomain.
ddc9cd0f 58
c906108c 59CY_GNU_GETTEXT
ddc9cd0f
AC
60
61localedir='${datadir}/locale'
62AC_SUBST(localedir)
63
64if test "x$POSUB" != x; then
65
66 dnl Lifted from GCC's config/gettext.m4.
67 AC_MSG_CHECKING(for catalogs to be installed)
68 # Look for .po and .gmo files in the source directory.
69 CATALOGS= AC_SUBST(CATALOGS)
70 XLINGUAS=
71 for cat in $srcdir/po/*.gmo $srcdir/po/*.po; do
72 # If there aren't any .gmo files the shell will give us the
73 # literal string "../path/to/srcdir/po/*.gmo" which has to be
74 # weeded out.
75 case "$cat" in *\**)
76 continue;;
77 esac
78 # The quadruple backslash is collapsed to a double backslash
79 # by the backticks, then collapsed again by the double quotes,
80 # leaving us with one backslash in the sed expression (right
81 # before the dot that mustn't act as a wildcard).
82 cat=`echo $cat | sed -e "s!$srcdir/!!" -e "s!\\\\.po!.gmo!"`
83 lang=`echo $cat | sed -e 's!po/!!' -e "s!\\\\.gmo!!"`
84 # The user is allowed to set LINGUAS to a list of languages to
85 # install catalogs for. If it's empty that means "all of them."
86 if test "x$LINGUAS" = x; then
87 CATALOGS="$CATALOGS $cat"
88 XLINGUAS="$XLINGUAS $lang"
89 else
90 case "$LINGUAS" in *$lang*)
91 CATALOGS="$CATALOGS $cat"
92 XLINGUAS="$XLINGUAS $lang"
93 ;;
94 esac
95 fi
96 done
97 LINGUAS="$XLINGUAS"
98 AC_MSG_RESULT($LINGUAS)
99
100 CONFIG_ALL="$CONFIG_ALL all-po"
101 CONFIG_CLEAN="$CONFIG_CLEAN clean-po"
102 CONFIG_INSTALL="$CONFIG_INSTALL install-po"
103 CONFIG_UNINSTALL="$CONFIG_UNINSTALL uninstall-po"
104fi
105
106PACKAGE=gdb
107AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of this package. ])
108AC_SUBST(PACKAGE)
0fbb3da7 109
5b5d99cf
JB
110debugdir=${libdir}/debug
111
112AC_ARG_WITH(separate-debug-dir,
113[ --with-separate-debug-dir=path Look for global separate debug info in this path [LIBDIR/debug]],
114[debugdir="${withval}"])
115
116AC_DEFINE_DIR(DEBUGDIR, debugdir,
117 [Global directory for separate debug files. ])
118#AC_DEFINE_UNQUOTED(DEBUGDIR, "$debugdir"),
c906108c 119
8dcde887
MK
120AC_CONFIG_SUBDIRS(doc testsuite)
121configdirs=
96baa820 122
27e9bf90 123. $srcdir/configure.host
c906108c 124
27e9bf90 125. $srcdir/configure.tgt
c906108c 126
27e9bf90
MK
127# Fetch the default architecture and default target vector from BFD.
128targ=$target; . $srcdir/../bfd/config.bfd
5c8cc331 129
27e9bf90
MK
130# We only want the first architecture, so strip off the others if
131# there is more than one.
132targ_archs=`echo $targ_archs | sed 's/ .*//'`
5c8cc331 133
27e9bf90
MK
134if test "x$targ_archs" != x; then
135 AC_DEFINE_UNQUOTED(DEFAULT_BFD_ARCH, $targ_archs,
136 [Define to BFD's default architecture. ])
1ba607ad 137fi
27e9bf90
MK
138if test "x$targ_defvec" != x; then
139 AC_DEFINE_UNQUOTED(DEFAULT_BFD_VEC, $targ_defvec,
140 [Define to BFD's default target vector. ])
1ba607ad
AC
141fi
142
8bb2c122
MK
143AC_ARG_PROGRAM
144
627af7ea
MK
145# The CLI cannot be disabled yet, but may be in the future.
146
147# Enable CLI.
148AC_ARG_ENABLE(gdbcli,
149[ --disable-gdbcli disable command-line interface (CLI)],
150 [case $enableval in
151 yes)
152 ;;
153 no)
154 AC_MSG_ERROR([the command-line interface cannot be disabled yet]) ;;
155 *)
156 AC_MSG_ERROR([bad value $enableval for --enable-gdbcli]) ;;
157 esac],
158 [enable_gdbcli=yes])
159if test x"$enable_gdbcli" = xyes; then
160 if test -d $srcdir/cli; then
161 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_CLI_OBS)"
162 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_CLI_DEPS)"
163 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_CLI_SRCS)"
627af7ea 164 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_CLI_CFLAGS)"
627af7ea
MK
165 fi
166fi
167
168# Enable MI.
169AC_ARG_ENABLE(gdbmi,
170[ --disable-gdbmi disable machine-interface (MI)],
171 [case $enableval in
172 yes | no)
173 ;;
174 *)
175 AC_MSG_ERROR([bad value $enableval for --enable-gdbmi]) ;;
176 esac],
177 [enable_gdbmi=yes])
178if test x"$enable_gdbmi" = xyes; then
179 if test -d $srcdir/mi; then
180 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_MI_OBS)"
181 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_MI_DEPS)"
182 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_MI_SRCS)"
627af7ea 183 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_MI_CFLAGS)"
627af7ea
MK
184 fi
185fi
186
287c1a40
MK
187# Enable TUI.
188AC_ARG_ENABLE(tui,
189[ --enable-tui enable full-screen terminal user interface (TUI)],
190 [case $enableval in
191 yes | no)
192 ;;
193 *)
194 AC_MSG_ERROR([bad value $enableval for --enable-tui]) ;;
c324d747 195 esac],enable_tui=yes)
287c1a40
MK
196if test x"$enable_tui" = xyes; then
197 if test -d $srcdir/tui; then
7613d933 198 if test "$ac_cv_search_initscr" != no -a "$ac_cv_search_wborder" != no; then
c324d747
AC
199 CONFIG_OBS="$CONFIG_OBS \$(SUBDIR_TUI_OBS)"
200 CONFIG_DEPS="$CONFIG_DEPS \$(SUBDIR_TUI_DEPS)"
201 CONFIG_SRCS="$CONFIG_SRCS \$(SUBDIR_TUI_SRCS)"
202 CONFIG_INITS="$CONFIG_INITS \$(SUBDIR_TUI_INITS)"
203 ENABLE_CFLAGS="$ENABLE_CFLAGS \$(SUBDIR_TUI_CFLAGS)"
226361c4
AC
204 CONFIG_ALL="${CONFIG_ALL} all-tui"
205 CONFIG_CLEAN="${CONFIG_CLEAN} clean-tui"
206 CONFIG_INSTALL="${CONFIG_INSTALL} install-tui"
207 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-tui"
c324d747 208 fi
287c1a40
MK
209 fi
210fi
211
8ee53726
MK
212# Enable gdbtk.
213AC_ARG_ENABLE(gdbtk,
d28f9cdf 214[ --enable-gdbtk enable gdbtk graphical user interface (GUI)],
8ee53726
MK
215 [case $enableval in
216 yes | no)
217 ;;
218 *)
219 AC_MSG_ERROR([bad value $enableval for --enable-gdbtk]) ;;
220 esac],
221 [if test -d $srcdir/gdbtk; then
222 enable_gdbtk=yes
223 else
224 enable_gdbtk=no
225 fi])
226# We unconditionally disable gdbtk tests on selected platforms.
227case $host_os in
228 go32* | windows*)
229 AC_MSG_WARN([gdbtk isn't supported on $host; disabling])
230 enable_gdbtk=no ;;
231esac
232
0e5d83e3
JJ
233# Libunwind support.
234AC_ARG_WITH(libunwind,
235[ --with-libunwind Use libunwind frame unwinding support],
236[case "${withval}" in
237 yes) enable_libunwind=yes ;;
238 no) enable_libunwind=no ;;
239 *) AC_MSG_ERROR(bad value ${withval} for GDB with-libunwind option) ;;
240esac],[
241 AC_CHECK_HEADERS(libunwind.h)
242 AC_CHECK_HEADERS(libunwind-ia64.h)
243 if test x"$ac_cv_header_libunwind_h" = xyes -a x"$ac_cv_header_libunwind_ia64_h" = xyes; then
244 enable_libunwind=yes;
245 fi
246])
247
248if test x"$enable_libunwind" = xyes; then
249 AC_CHECK_HEADERS(libunwind.h)
250 AC_CHECK_HEADERS(libunwind-ia64.h)
251 AC_DEFINE(HAVE_LIBUNWIND, 1)
252 CONFIG_OBS="$CONFIG_OBS libunwind-frame.o"
253 CONFIG_DEPS="$CONFIG_DEPS libunwind-frame.o"
254 CONFIG_SRCS="$CONFIG_SRCS libunwind-frame.c"
255fi
256
d28f9cdf
DJ
257# Profiling support.
258AC_ARG_ENABLE(profiling,
259[ --enable-profiling enable profiling of GDB],
260 [case $enableval in
261 yes | no)
262 ;;
263 *)
264 AC_MSG_ERROR([bad value $enableval for --enable-profile]) ;;
265 esac],
266 [enable_profiling=no])
267
d9feb4e7 268AC_CHECK_FUNCS(monstartup _mcleanup)
b0b1c2c0
MK
269AC_CACHE_CHECK([for _etext], ac_cv_var__etext,
270[AC_TRY_LINK(
271[#include <stdlib.h>
272extern char _etext;
273],
274[free (&_etext);], ac_cv_var__etext=yes, ac_cv_var__etext=no)])
275if test $ac_cv_var__etext = yes; then
276 AC_DEFINE(HAVE__ETEXT, 1,
277 [Define to 1 if your system has the _etext variable. ])
278fi
d28f9cdf 279if test "$enable_profiling" = yes ; then
d9feb4e7
DJ
280 if test $ac_cv_func_monstartup = no || test $ac_cv_func__mcleanup = no; then
281 AC_MSG_ERROR(--enable-profiling requires monstartup and _mcleanup)
282 fi
d28f9cdf
DJ
283 PROFILE_CFLAGS=-pg
284 OLD_CFLAGS="$CFLAGS"
285 CFLAGS="$CFLAGS $PROFILE_CFLAGS"
286
d9feb4e7
DJ
287 AC_CACHE_CHECK([whether $CC supports -pg], ac_cv_cc_supports_pg,
288 [AC_TRY_COMPILE([], [int x;], ac_cv_cc_supports_pg=yes,
289 ac_cv_cc_supports_pg=no)])
d28f9cdf 290
d9feb4e7
DJ
291 if test $ac_cv_cc_supports_pg = no; then
292 AC_MSG_ERROR(--enable-profiling requires a compiler which supports -pg)
293 fi
d28f9cdf
DJ
294
295 CFLAGS="$OLD_CFLAGS"
296fi
297
8bb2c122
MK
298# --------------------- #
299# Checks for programs. #
300# --------------------- #
301
7a292a7a 302AC_PROG_AWK
c906108c 303AC_PROG_INSTALL
8bb2c122
MK
304AC_PROG_LN_S
305AC_PROG_RANLIB
306AC_PROG_YACC
307
c906108c 308AC_CHECK_TOOL(AR, ar)
95ca63c4
CF
309AC_CHECK_TOOL(DLLTOOL, dlltool)
310AC_CHECK_TOOL(WINDRES, windres)
c906108c 311
8bb2c122 312# Needed for GNU/Hurd.
75c6e08a
MK
313AC_CHECK_TOOL(MIG, mig)
314
9a156167
MK
315# ---------------------- #
316# Checks for libraries. #
317# ---------------------- #
318
319# We might need to link with -lm; most simulators need it.
320AC_CHECK_LIB(m, main)
321
322# We need to link with -lw to get `wctype' on Solaris before Solaris
323# 2.6. Solaris 2.6 and beyond have this function in libc, and have a
324# libw that some versions of the GNU linker cannot hanle (GNU ld 2.9.1
325# is known to have this problem). Therefore we avoid libw if we can.
326AC_CHECK_FUNC(wctype, [],
327 [AC_CHECK_LIB(w, wctype)])
328
c890192f
MK
329# Some systems (e.g. Solaris) have `gethostbyname' in libnsl.
330AC_SEARCH_LIBS(gethostbyname, nsl)
331
9a156167
MK
332# Some systems (e.g. Solaris) have `socketpair' in libsocket.
333AC_SEARCH_LIBS(socketpair, socket)
334
287c1a40
MK
335# Since GDB uses Readline, we need termcap functionality, so we need
336# to find a library that provides that. When GDB is configured with
c324d747 337# the TUI, we need full curses functionality.
287c1a40
MK
338
339case $host_os in
340 cygwin*)
341 if test -d $srcdir/libtermcap; then
342 LIBS="../libtermcap/libtermcap.a $LIBS"
343 ac_cv_search_tgetent="../libtermcap/libtermcap.a"
344 fi ;;
228a417c 345 go32* | *djgpp*)
287c1a40
MK
346 ac_cv_search_tgetent="none required"
347 ;;
348 aix*)
349 # Readline prefers curses over termcap on AIX.
350 # ??? Why?
351 AC_SEARCH_LIBS(tgetent, [tinfo ncurses curses termcap])
352 ;;
353esac
354
355# Note: We used to check for libtermlib and libterminfo too, but
356# Readline doesn't, so I think we're safe with leaving them out.
357AC_SEARCH_LIBS(tgetent, [termcap tinfo ncurses Hcurses curses])
358
359if test "$ac_cv_search_tgetent" = no; then
360 AC_MSG_ERROR([no termcap library found])
361fi
362
02d62932
MC
363# FIXME: kettenis/20030102: We seem to prefer HP curses (Hcurses) over
364# Xcurses on HP-UX; see the `-D__HP_CURSES' in the relevant host
365# Makefile fragments. That's why we need to have `Hcurses' before
366# `curses'. I don't see why we should use HP curses if a more
367# standard curses is available, except that according to HP's
368# documentation one needs to compile `-D_XOPEN_SOURCE_EXTENDED' on
369# HP-UX 10.10 and 10.20.
370
c848556f
MC
371# FIXME: ncurses does not work on native alphaev68-dec-osf5.1,
372# and probably other platforms. AC_SEARCH_LIBS finds the library
373# in a place such as /usr/local/lib/libncurses.a, but does not
374# do anything to look for the matching include files.
375# -- chastain 2004-05-01
376
5c7f2947 377AC_SEARCH_LIBS(initscr, [ncurses Hcurses cursesX curses pdcurses], [],
c848556f 378 [AC_MSG_WARN([no curses library found])])
02d62932
MC
379
380# Check whether the wborder function is provided by the curses
381# library detected above. In certain implementations such as
382# the HP/UX Hcurses for instance, this function is provided by an
383# additional library. So if we did not find this function inside
384# the curses library, try some alternate libraries we know might
385# provide it.
386AC_SEARCH_LIBS(wborder, [cur_colr], [],
387 [AC_MSG_WARN([wborder function not found, tui will be disabled])])
388
5ee754fc
MK
389# ------------------------- #
390# Checks for header files. #
391# ------------------------- #
c906108c 392
9608ab8b 393AC_HEADER_DIRENT
5ee754fc 394AC_HEADER_STAT
c906108c 395AC_HEADER_STDC
5ee754fc 396AC_CHECK_HEADERS(link.h)
78434e59 397AC_CHECK_HEADERS(machine/reg.h)
5ee754fc
MK
398AC_CHECK_HEADERS(nlist.h)
399AC_CHECK_HEADERS(poll.h sys/poll.h)
a2f23071 400AC_CHECK_HEADERS(proc_service.h thread_db.h gnu/libc-version.h)
5ee754fc
MK
401AC_CHECK_HEADERS(stddef.h)
402AC_CHECK_HEADERS(stdlib.h)
403AC_CHECK_HEADERS(stdint.h)
404AC_CHECK_HEADERS(string.h memory.h strings.h)
405AC_CHECK_HEADERS(sys/fault.h)
406AC_CHECK_HEADERS(sys/file.h)
407AC_CHECK_HEADERS(sys/filio.h)
408AC_CHECK_HEADERS(sys/ioctl.h)
409AC_CHECK_HEADERS(sys/param.h)
410AC_CHECK_HEADERS(sys/proc.h)
411AC_CHECK_HEADERS(sys/procfs.h)
412AC_CHECK_HEADERS(sys/ptrace.h ptrace.h)
413AC_CHECK_HEADERS(sys/reg.h sys/debugreg.h)
414AC_CHECK_HEADERS(sys/select.h)
415AC_CHECK_HEADERS(sys/syscall.h)
086ec9eb 416AC_CHECK_HEADERS(sys/types.h)
5ee754fc
MK
417AC_CHECK_HEADERS(sys/user.h)
418AC_CHECK_HEADERS(sys/wait.h wait.h)
419AC_CHECK_HEADERS(termios.h termio.h sgtty.h)
420AC_CHECK_HEADERS(unistd.h)
421
b1d19a62 422# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash
5ee754fc
MK
423# between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to
424# think that we don't have <curses.h> if we're using GCC.
425case $host_os in
b1d19a62 426 solaris2.[[789]])
5ee754fc
MK
427 if test "$GCC" = yes; then
428 AC_DEFINE(_MSE_INT_H, 1,
429 [[Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
b1d19a62 430 Solaris 2.[789] when using GCC. ]])
5ee754fc
MK
431 fi ;;
432esac
a6ed5501 433AC_CHECK_HEADERS(curses.h cursesX.h ncurses.h ncurses/ncurses.h term.h)
5ee754fc
MK
434
435# FIXME: kettenis/20030102: In most cases we include these
436# unconditionally, so what's the point in checking these?
437AC_CHECK_HEADERS(ctype.h time.h)
438
40a7debc
EZ
439dnl Check for struct stat with an st_blocks member
440AC_MSG_CHECKING(for member st_blocks in struct stat)
441AC_CACHE_VAL(gdb_cv_have_struct_stat_with_st_blocks_member,
442 [AC_TRY_COMPILE([#include <sys/types.h>
443#include <sys/stat.h>],
444 [struct stat st; (void) st.st_blocks;],
445 gdb_cv_have_struct_stat_with_st_blocks_member=yes,
446 gdb_cv_have_struct_stat_with_st_blocks_member=no)])
447AC_MSG_RESULT($gdb_cv_have_struct_stat_with_st_blocks_member)
448if test $gdb_cv_have_struct_stat_with_st_blocks_member = yes; then
449 AC_DEFINE(HAVE_STRUCT_STAT_ST_BLOCKS)
450fi
086ec9eb 451
b9362cc7
AC
452# ------------------------- #
453# Checks for declarations. #
454# ------------------------- #
455
456gcc_AC_CHECK_DECLS(getopt)
457
5ee754fc
MK
458# ------------------ #
459# Checks for types. #
460# ------------------ #
c906108c 461
5ee754fc
MK
462AC_TYPE_SIGNAL
463
464# ------------------------------------- #
465# Checks for compiler characteristics. #
466# ------------------------------------- #
c906108c
SS
467
468AC_C_CONST
bce58c09 469AC_C_INLINE
c906108c 470
5ee754fc
MK
471# ------------------------------ #
472# Checks for library functions. #
473# ------------------------------ #
474
c906108c 475AC_FUNC_ALLOCA
97bf5e38 476AC_FUNC_MMAP
46711df8 477AC_FUNC_VFORK
97bf5e38
MK
478AC_CHECK_FUNCS(canonicalize_file_name realpath)
479AC_CHECK_FUNCS(poll)
14abd0fb 480AC_CHECK_FUNCS(pread64)
97bf5e38
MK
481AC_CHECK_FUNCS(sbrk)
482AC_CHECK_FUNCS(setpgid setpgrp)
e1ea1d75 483AC_CHECK_FUNCS(sigaction sigprocmask sigsetmask)
97bf5e38 484AC_CHECK_FUNCS(socketpair)
b757528f 485AC_CHECK_FUNCS(syscall)
97bf5e38 486
086ec9eb
MK
487# Check the return and argument types of ptrace. No canned test for
488# this, so roll our own.
489gdb_ptrace_headers='
490#if HAVE_SYS_TYPES_H
491# include <sys/types.h>
492#endif
493#if HAVE_SYS_PTRACE_H
494# include <sys/ptrace.h>
495#endif
496#if HAVE_UNISTD_H
497# include <unistd.h>
498#endif
499'
500# There is no point in checking if we don't have a prototype.
501gcc_AC_CHECK_DECLS(ptrace, , [
502 : ${gdb_cv_func_ptrace_ret='int'}
503 : ${gdb_cv_func_ptrace_args='int,int,long,long'}
504], $gdb_ptrace_headers)
505# Check return type.
506AC_CACHE_CHECK([return type of ptrace], gdb_cv_func_ptrace_ret,
507 AC_TRY_COMPILE($gdb_ptrace_headers,
508 [extern long ptrace ();],
509 gdb_cv_func_ptrace_ret='long',
510 gdb_cv_func_ptrace_ret='int'))
511AC_DEFINE_UNQUOTED(PTRACE_TYPE_RET, $gdb_cv_func_ptrace_ret,
512 [Define as the return type of ptrace.])
513# Check argument types.
514AC_CACHE_CHECK([types of arguments for ptrace], gdb_cv_func_ptrace_args, [
515for gdb_arg1 in 'int' 'long'; do
516 for gdb_arg2 in 'pid_t' 'int' 'long'; do
517 for gdb_arg3 in 'int *' 'caddr_t' 'int' 'long'; do
518 for gdb_arg4 in 'int' 'long'; do
519 AC_TRY_COMPILE($gdb_ptrace_headers, [
520extern $gdb_cv_func_ptrace_ret
521 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4);
522], [gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4";
523 break 4;])
524 for gdb_arg5 in 'int *' 'int' 'long'; do
525 AC_TRY_COMPILE($gdb_ptrace_headers, [
526extern $gdb_cv_func_ptrace_ret
527 ptrace ($gdb_arg1, $gdb_arg2, $gdb_arg3, $gdb_arg4, $gdb_arg5);
528], [
529gdb_cv_func_ptrace_args="$gdb_arg1,$gdb_arg2,$gdb_arg3,$gdb_arg4,$gdb_arg5";
530 break 5;])
531 done
532 done
533 done
534 done
535done
536# Provide a safe default value.
537: ${gdb_cv_func_ptrace_args='int,int,long,long'}
538])
539ac_save_IFS=$IFS; IFS=','
540set dummy `echo "$gdb_cv_func_ptrace_args" | sed 's/\*/\*/g'`
541IFS=$ac_save_IFS
542shift
64218d3e 543AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG3, $[3],
086ec9eb
MK
544 [Define to the type of arg 3 for ptrace.])
545if test -n "$[5]"; then
64218d3e 546 AC_DEFINE_UNQUOTED(PTRACE_TYPE_ARG5, $[5],
086ec9eb
MK
547 [Define to the type of arg 5 for ptrace.])
548fi
549
72473524
DJ
550dnl AC_FUNC_SETPGRP does not work when cross compiling
551dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
552if test "$cross_compiling" = no; then
553 AC_FUNC_SETPGRP
554else
555 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
556 [AC_TRY_COMPILE([
557#include <unistd.h>
558], [
559 if (setpgrp(1,1) == -1)
560 exit (0);
561 else
562 exit (1);
563], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
564if test $ac_cv_func_setpgrp_void = yes; then
565 AC_DEFINE(SETPGRP_VOID, 1)
566fi
567fi
c906108c 568
2b2d558c
MK
569# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
570# since sigsetjmp might only be defined as a macro.
571AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
572[AC_TRY_COMPILE([
573#include <setjmp.h>
574], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
575gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
576if test $gdb_cv_func_sigsetjmp = yes; then
577 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
578fi
579
06825bd1
MK
580# Assume we'll default to using the included libiberty regex.
581gdb_use_included_regex=yes
582
583# However, if the system regex is GNU regex, then default to *not*
584# using the included regex.
585AC_CACHE_CHECK(
586 [for GNU regex],
587 [gdb_cv_have_gnu_regex],
588 [AC_TRY_COMPILE(
589 [#include <gnu-versions.h>],
590 [#define REGEX_INTERFACE_VERSION 1
591#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
592# error "Version mismatch"
593#endif],
594 gdb_cv_have_gnu_regex=yes,
595 gdb_cv_have_gnu_regex=no)])
596if test $gdb_cv_have_gnu_regex = yes; then
597 gdb_use_included_regex=no
598fi
599
600AC_ARG_WITH(included-regex,
601 [ --without-included-regex don't use included regex; this is the default
602 on systems with version 2 of the GNU C library
603 (use with caution on other system)],
604 gdb_with_regex=$withval,
605 gdb_with_regex=$gdb_use_included_regex)
606if test "$gdb_with_regex" = yes; then
607 AC_DEFINE(USE_INCLUDED_REGEX, 1,
608 [Define to 1 if the regex included in libiberty should be used.])
609fi
610
70f9f479
MK
611# See if <sys/proc.h> defines `struct thread' with a td_pcb member.
612AC_CACHE_CHECK([for td_pcb in struct thread], gdb_cv_struct_thread_td_pcb,
d15be926
MK
613[AC_TRY_COMPILE([#include <sys/param.h>
614#include <sys/proc.h>], [struct thread td; td.td_pcb;],
70f9f479
MK
615gdb_cv_struct_thread_td_pcb=yes, gdb_cv_struct_thread_td_pcb=no)])
616if test $gdb_cv_struct_thread_td_pcb = yes; then
617 AC_DEFINE(HAVE_STRUCT_THREAD_TD_PCB, 1,
618 [Define to 1 if your system has td_pcb in struct thread.])
619fi
620
da7d81e3
NW
621# See if <sys/lwp.h> defines `struct lwp`.
622AC_CACHE_CHECK([for struct lwp], gdb_cv_struct_lwp,
623[AC_TRY_COMPILE([#include <sys/param.h>
624#include <sys/lwp.h>], [struct lwp l;],
625gdb_cv_struct_lwp=yes, gdb_cv_struct_lwp=no)])
626if test $gdb_cv_struct_lwp = yes; then
627 AC_DEFINE(HAVE_STRUCT_LWP, 1,
628 [Define to 1 if your system has struct lwp.])
629fi
630
78434e59
MK
631# See if <machine/reg.h> degines `struct reg'.
632AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
633[AC_TRY_COMPILE([#include <sys/types.h>
634#include <machine/reg.h>], [struct reg r;],
635gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
636if test $gdb_cv_struct_reg = yes; then
637 AC_DEFINE(HAVE_STRUCT_REG, 1,
638 [Define to 1 if your system has struct reg in <machine/reg.h>.])
639fi
640
0afdd437 641# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 642# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
422ea4b8 643AC_CACHE_CHECK([for r_fs in struct reg], gdb_cv_struct_reg_r_fs,
7dfa765c 644[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_fs;],
422ea4b8
MK
645gdb_cv_struct_reg_r_fs=yes, gdb_cv_struct_reg_r_fs=no)])
646if test $gdb_cv_struct_reg_r_fs = yes; then
647 AC_DEFINE(HAVE_STRUCT_REG_R_FS)
7dfa765c 648fi
422ea4b8 649AC_CACHE_CHECK([for r_gs in struct reg], gdb_cv_struct_reg_r_gs,
7dfa765c 650[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_gs;],
422ea4b8
MK
651gdb_cv_struct_reg_r_gs=yes, gdb_cv_struct_reg_r_gs=no)])
652if test $gdb_cv_struct_reg_r_gs = yes; then
653 AC_DEFINE(HAVE_STRUCT_REG_R_GS)
7dfa765c
MK
654fi
655
0afdd437 656# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
657AC_MSG_CHECKING(for PTRACE_GETREGS)
658AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
659[AC_TRY_COMPILE([#include <sys/ptrace.h>],
660 [PTRACE_GETREGS;],
661 [gdb_cv_have_ptrace_getregs=yes],
662 [gdb_cv_have_ptrace_getregs=no])])
663AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
664if test $gdb_cv_have_ptrace_getregs = yes; then
665 AC_DEFINE(HAVE_PTRACE_GETREGS)
666fi
667
0afdd437 668# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
669AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
670AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 671[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
672 [PTRACE_GETFPXREGS;],
673 [gdb_cv_have_ptrace_getfpxregs=yes],
674 [gdb_cv_have_ptrace_getfpxregs=no])])
675AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
676if test $gdb_cv_have_ptrace_getfpxregs = yes; then
677 AC_DEFINE(HAVE_PTRACE_GETFPXREGS)
5c44784c
JM
678fi
679
0afdd437
MK
680# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
681AC_MSG_CHECKING(for PT_GETDBREGS)
682AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
683[AC_TRY_COMPILE([#include <sys/types.h>
684#include <sys/ptrace.h>],
685 [PT_GETDBREGS;],
686 [gdb_cv_have_pt_getdbregs=yes],
687 [gdb_cv_have_pt_getdbregs=no])])
688AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
689if test $gdb_cv_have_pt_getdbregs = yes; then
690 AC_DEFINE(HAVE_PT_GETDBREGS)
691fi
692
7e89e357
JT
693# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
694AC_MSG_CHECKING(for PT_GETXMMREGS)
695AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
696[AC_TRY_COMPILE([#include <sys/types.h>
697#include <sys/ptrace.h>],
698 [PT_GETXMMREGS;],
699 [gdb_cv_have_pt_getxmmregs=yes],
700 [gdb_cv_have_pt_getxmmregs=no])])
701AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
702if test $gdb_cv_have_pt_getxmmregs = yes; then
703 AC_DEFINE(HAVE_PT_GETXMMREGS)
704fi
705
27ca5dad
MC
706# See if stdint.h provides the uintptr_t type.
707# Autoconf 2.5X has an improved AC_CHECK_TYPE which will simplify this.
708AC_CACHE_CHECK([for uintptr_t in stdint.h], gdb_cv_have_uintptr_t,
709 [AC_TRY_COMPILE(
710 [#include <stdint.h>],
711 [uintptr_t foo = 0;],
712 gdb_cv_have_uintptr_t=yes,
713 gdb_cv_have_uintptr_t=no)])
27ca5dad
MC
714if test $gdb_cv_have_uintptr_t = yes; then
715 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if <stdint.h> provides the uintptr_t type.])
716fi
0afdd437 717
c906108c
SS
718BFD_NEED_DECLARATION(malloc)
719BFD_NEED_DECLARATION(realloc)
720BFD_NEED_DECLARATION(free)
721BFD_NEED_DECLARATION(strerror)
722BFD_NEED_DECLARATION(strdup)
b83266a0 723BFD_NEED_DECLARATION(strstr)
a4db0f07 724BFD_NEED_DECLARATION(canonicalize_file_name)
c906108c
SS
725
726# The following save_state_t checkery is only necessary for HPUX
727# versions earlier than 10.20. When those fade from memory, this
728# could be expunged. --jsm 1999-03-22
729
730AC_MSG_CHECKING(for HPUX save_state structure)
731AC_EGREP_HEADER(save_state_t, machine/save_state.h,
732 gdb_cv_hpux_savestate=yes, gdb_cv_hpux_savestate=no)
733AC_EGREP_HEADER(ss_wide, machine/save_state.h, gdb_cv_hpux_sswide=yes,
734 gdb_cv_hpux_sswide=no)
735if test $gdb_cv_hpux_savestate = yes
736then
737 AC_DEFINE(HAVE_STRUCT_SAVE_STATE_T, 1)
738fi
739if test $gdb_cv_hpux_sswide = yes
740then
741 AC_DEFINE(HAVE_STRUCT_MEMBER_SS_WIDE, 1)
742fi
743AC_MSG_RESULT($gdb_cv_hpux_sswide)
744
745
746# If we are configured native on GNU/Linux, work around problems with
747# sys/procfs.h
c3f6f71d 748# Also detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
749
750if test "${target}" = "${host}"; then
751 case "${host}" in
752 i[[3456]]86-*-linux*)
753 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
754 AC_DEFINE(sys_quotactl)
755 ;;
596c9d4b
KB
756 ia64-*-aix*)
757 AC_DEFINE(NEW_PROC_API)
758 ;;
1045b512 759 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
c3f6f71d
JM
760 AC_DEFINE(NEW_PROC_API)
761 ;;
e7c61be3 762 *-*-solaris2.[[6789]])
c3f6f71d
JM
763 AC_DEFINE(NEW_PROC_API)
764 ;;
c960c18f
AC
765 mips-sgi-irix5*)
766 # Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
767 AC_DEFINE([_KMEMUSER], 1)
768 ;;
c906108c 769 esac
c906108c
SS
770fi
771
772if test "$ac_cv_header_sys_procfs_h" = yes; then
773 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
774 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
775 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
776 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
777 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
778 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
779 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
780 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
781 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
782 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
783 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
784 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
785 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
786 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 787
23e04971 788
d84dd0c5
MK
789 dnl Check for broken prfpregset_t type
790
791 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
792 dnl prfpregset_t type (it's a typedef for the pointer to a struct
793 dnl instead of the struct itself). We detect this here, and work
a3007b6f 794 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
795
796 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
797 AC_MSG_CHECKING(whether prfpregset_t type is broken)
798 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
799 [AC_TRY_RUN([#include <sys/procfs.h>
800 int main ()
801 {
802 if (sizeof (prfpregset_t) == sizeof (void *))
803 return 1;
804 return 0;
805 }],
806 gdb_cv_prfpregset_t_broken=no,
807 gdb_cv_prfpregset_t_broken=yes,
808 gdb_cv_prfpregset_t_broken=yes)])
809 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
810 if test $gdb_cv_prfpregset_t_broken = yes; then
811 AC_DEFINE(PRFPREGSET_T_BROKEN)
812 fi
813 fi
814
c906108c
SS
815 dnl Check for PIOCSET ioctl entry
816
817 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
818 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
819 [AC_TRY_COMPILE([#include <unistd.h>
820#include <sys/types.h>
821#include <sys/procfs.h>
822], [
823 int dummy;;
824 dummy = ioctl(0, PIOCSET, &dummy);
825 ],
826 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
827 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
828 if test $gdb_cv_have_procfs_piocset = yes; then
829 AC_DEFINE(HAVE_PROCFS_PIOCSET)
830 fi
831fi
832
d45fe813
KB
833dnl For native ports (host == target), check to see what kind of
834dnl legacy link.h support is needed. (See solib-legacy.c.)
835if test ${host} = ${target} ; then
836 dnl Check for struct link_map with l_ members which are indicative
837 dnl of SVR4-like shared libraries
838
839 AC_MSG_CHECKING(for member l_addr in struct link_map)
840 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
841 [AC_TRY_COMPILE([#include <link.h>],
842 [struct link_map lm; (void) lm.l_addr;],
843 gdb_cv_have_struct_link_map_with_l_members=yes,
844 gdb_cv_have_struct_link_map_with_l_members=no)])
845 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
846 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
847 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
848 fi
849
850 dnl Check for struct link_map with lm_ members which are indicative
851 dnl of SunOS-like shared libraries
852
853 AC_MSG_CHECKING(for member lm_addr in struct link_map)
854 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
855 [AC_TRY_COMPILE([#include <sys/types.h>
856#include <link.h>],
857 [struct link_map lm; (void) lm.lm_addr;],
858 gdb_cv_have_struct_link_map_with_lm_members=yes,
859 gdb_cv_have_struct_link_map_with_lm_members=no)])
860 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
861 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
862 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
863 fi
864
865 dnl Check for struct so_map with som_ members which are found on
866 dnl some *BSD systems.
867
868 AC_MSG_CHECKING(for member som_addr in struct so_map)
869 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
870 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
871#ifdef HAVE_NLIST_H
872#include <nlist.h>
873#endif
d45fe813
KB
874#include <link.h>],
875 [struct so_map lm; (void) lm.som_addr;],
876 gdb_cv_have_struct_so_map_with_som_members=yes,
877 gdb_cv_have_struct_so_map_with_som_members=no)])
878 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
879 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
880 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS)
881 fi
882
883 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
884 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
885
886 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
887 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
888 [AC_TRY_COMPILE([#define _SYSCALL32
889#include <sys/link.h>], [struct link_map32 l;],
890 gdb_cv_have_struct_link_map32=yes,
891 gdb_cv_have_struct_link_map32=no)])
892 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
893 if test $gdb_cv_have_struct_link_map32 = yes; then
894 AC_DEFINE(HAVE_STRUCT_LINK_MAP32)
943c9c25 895 AC_DEFINE(_SYSCALL32)
d45fe813
KB
896 fi
897fi
898
c906108c
SS
899dnl See if compiler supports "long long" type.
900
901AC_MSG_CHECKING(for long long support in compiler)
902AC_CACHE_VAL(gdb_cv_c_long_long,
903[AC_TRY_COMPILE(, [
904 extern long long foo;
905 switch (foo & 2) { case 0: return 1; }
906],
907gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
908AC_MSG_RESULT($gdb_cv_c_long_long)
909if test $gdb_cv_c_long_long = yes; then
910 AC_DEFINE(CC_HAS_LONG_LONG)
911fi
912
913dnl See if the compiler and runtime support printing long long
914
915AC_MSG_CHECKING(for long long support in printf)
916AC_CACHE_VAL(gdb_cv_printf_has_long_long,
917[AC_TRY_RUN([
918int main () {
919 char buf[32];
920 long long l = 0;
921 l = (l << 16) + 0x0123;
922 l = (l << 16) + 0x4567;
923 l = (l << 16) + 0x89ab;
924 l = (l << 16) + 0xcdef;
925 sprintf (buf, "0x%016llx", l);
926 return (strcmp ("0x0123456789abcdef", buf));
927}],
928gdb_cv_printf_has_long_long=yes,
929gdb_cv_printf_has_long_long=no,
930gdb_cv_printf_has_long_long=no)])
931if test $gdb_cv_printf_has_long_long = yes; then
932 AC_DEFINE(PRINTF_HAS_LONG_LONG)
933fi
934AC_MSG_RESULT($gdb_cv_printf_has_long_long)
935
936dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
937dnl because autoconf complains about cross-compilation issues. However, this
938dnl code uses the same variables as the macro for compatibility.
939
940AC_MSG_CHECKING(for long double support in compiler)
941AC_CACHE_VAL(ac_cv_c_long_double,
942[AC_TRY_COMPILE(, [long double foo;],
943ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
944AC_MSG_RESULT($ac_cv_c_long_double)
945if test $ac_cv_c_long_double = yes; then
946 AC_DEFINE(HAVE_LONG_DOUBLE)
947fi
948
949dnl See if the compiler and runtime support printing long doubles
950
951AC_MSG_CHECKING(for long double support in printf)
952AC_CACHE_VAL(gdb_cv_printf_has_long_double,
953[AC_TRY_RUN([
954int main () {
955 char buf[16];
956 long double f = 3.141592653;
957 sprintf (buf, "%Lg", f);
958 return (strncmp ("3.14159", buf, 7));
959}],
960gdb_cv_printf_has_long_double=yes,
961gdb_cv_printf_has_long_double=no,
962gdb_cv_printf_has_long_double=no)])
963if test $gdb_cv_printf_has_long_double = yes; then
964 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
965fi
966AC_MSG_RESULT($gdb_cv_printf_has_long_double)
967
968dnl See if the compiler and runtime support scanning long doubles
969
970AC_MSG_CHECKING(for long double support in scanf)
971AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
972[AC_TRY_RUN([
973int main () {
974 char *buf = "3.141592653";
975 long double f = 0;
976 sscanf (buf, "%Lg", &f);
977 return !(f > 3.14159 && f < 3.14160);
978}],
979gdb_cv_scanf_has_long_double=yes,
980gdb_cv_scanf_has_long_double=no,
981gdb_cv_scanf_has_long_double=no)])
982if test $gdb_cv_scanf_has_long_double = yes; then
983 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
984fi
985AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
986
438013df
AO
987case ${host_os} in
988aix*)
989 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
990 SAVE_LDFLAGS=$LDFLAGS
991
992 case $GCC in
993 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
994 *) gdb_cv_bigtoc=-bbigtoc ;;
995 esac
996
997 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
998 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 999 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
1000 ])
1001 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
1002 ;;
1003esac
1004
c906108c 1005
d92419e5
JB
1006dnl For certain native configurations, we need to check whether thread
1007dnl support can be built in or not.
1008dnl
1009dnl Note that we only want this if we are both native (host == target),
1010dnl and not doing a canadian cross build (build == host).
c906108c
SS
1011
1012if test ${build} = ${host} -a ${host} = ${target} ; then
1013 case ${host_os} in
1014 hpux*)
1015 AC_MSG_CHECKING(for HPUX/OSF thread support)
1016 if test -f /usr/include/dce/cma_config.h ; then
1017 if test "$GCC" = "yes" ; then
1018 AC_MSG_RESULT(yes)
1019 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
3483b318 1020 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
1021 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
1022 else
1023 AC_MSG_RESULT(no (suppressed because you are not using GCC))
1024 fi
1025 else
1026 AC_MSG_RESULT(no)
1027 fi
1028 ;;
1029 solaris*)
d92419e5
JB
1030 # See if thread_db library is around for Solaris thread debugging.
1031 # Note that we must explicitly test for version 1 of the library
1032 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
1033 # the same API.
c906108c
SS
1034 AC_MSG_CHECKING(for Solaris thread debugging library)
1035 if test -f /usr/lib/libthread_db.so.1 ; then
1036 AC_MSG_RESULT(yes)
1037 AC_DEFINE(HAVE_THREAD_DB_LIB)
3483b318 1038 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
1039 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
1040 AC_CHECK_LIB(dl, dlopen)
1041 if test "$GCC" = "yes" ; then
1042 # The GNU linker requires the -export-dynamic option to make
1043 # all symbols visible in the dynamic symbol table.
1044 hold_ldflags=$LDFLAGS
1045 AC_MSG_CHECKING(for the ld -export-dynamic flag)
1046 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
1047 AC_TRY_LINK(, [int i;], found=yes, found=no)
1048 LDFLAGS=$hold_ldflags
1049 AC_MSG_RESULT($found)
1050 if test $found = yes; then
1051 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
1052 fi
1053 fi
1054 # Sun randomly tweaked the prototypes in <proc_service.h>
1055 # at one point.
1056 AC_MSG_CHECKING(if <proc_service.h> is old)
1057 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
1058 AC_TRY_COMPILE([
1059 #include <proc_service.h>
1060 ps_err_e ps_pdwrite
1061 (struct ps_prochandle*, psaddr_t, const void*, size_t);
1062 ],, gdb_cv_proc_service_is_old=no,
1063 gdb_cv_proc_service_is_old=yes)
1064 ])
1065 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
1066 if test $gdb_cv_proc_service_is_old = yes; then
1067 AC_DEFINE(PROC_SERVICE_IS_OLD)
1068 fi
1069 else
1070 AC_MSG_RESULT(no)
1071 fi
1072 ;;
d92419e5
JB
1073 aix*)
1074 AC_MSG_CHECKING(for AiX thread debugging library)
1075 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1076 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1077 [#ifndef PTHDB_VERSION_3
1078 #error
1079 #endif],
1080 gdb_cv_have_aix_thread_debug=yes,
1081 gdb_cv_have_aix_thread_debug=no)])
1082 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1083 if test $gdb_cv_have_aix_thread_debug = yes; then
1084 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1085 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1086 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1087 fi
1088 ;;
c906108c
SS
1089 esac
1090 AC_SUBST(CONFIG_LDFLAGS)
1091fi
1092
3f47be5c
EZ
1093dnl See if we have a thread_db header file that has TD_NOTALLOC.
1094if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1095 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1096 gdb_cv_thread_db_h_has_td_notalloc,
1097 AC_TRY_COMPILE(
1098 [#include <thread_db.h>],
1099 [int i = TD_NOTALLOC;],
1100 gdb_cv_thread_db_h_has_td_notalloc=yes,
1101 gdb_cv_thread_db_h_has_td_notalloc=no
1102 )
1103 )
1104fi
1105if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1106 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1107 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1108fi
1109
b757528f
JJ
1110dnl See if we have a sys/syscall header file that has __NR_tkill.
1111if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1112 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1113 gdb_cv_sys_syscall_h_has_tkill,
1114 AC_TRY_COMPILE(
1115 [#include <sys/syscall.h>],
1116 [int i = __NR_tkill;],
1117 gdb_cv_sys_syscall_h_has_tkill=yes,
1118 gdb_cv_sys_syscall_h_has_tkill=no
1119 )
1120 )
1121fi
1122dnl See if we can issue tkill syscall.
1123if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
1124 AC_DEFINE(HAVE_TKILL_SYSCALL, 1,
1125 [Define if we can use the tkill syscall.])
1126fi
1127
c906108c 1128dnl Handle optional features that can be enabled.
fb40c209 1129
030292b7
DJ
1130AC_ARG_WITH(sysroot,
1131[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
1132[
1133 case ${with_sysroot} in
715d1656 1134 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1135 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1136 esac
1137
1138 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1139
1140 if test "x$exec_prefix" = xNONE; then
1141 if test "x$prefix" = xNONE; then
1142 test_prefix=/usr/local
1143 else
1144 test_prefix=$prefix
1145 fi
1146 else
1147 test_prefix=$exec_prefix
1148 fi
1149 case ${TARGET_SYSTEM_ROOT} in
715d1656
AO
1150 "${test_prefix}"|"${test_prefix}/"*|\
1151 '${exec_prefix}'|'${exec_prefix}/'*)
030292b7
DJ
1152 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
1153 TARGET_SYSTEM_ROOT_DEFINE="$t"
1154 ;;
1155 esac
1156], [
1157 TARGET_SYSTEM_ROOT=
1158 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1159])
1160AC_SUBST(TARGET_SYSTEM_ROOT)
1161AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1162
3b851bce
AC
1163# NOTE: Don't add -Wall or -Wunused, they both include
1164# -Wunused-parameter which reports bogus warnings.
1165# NOTE: If you add to this list, remember to update
1166# gdb/doc/gdbint.texinfo.
1decb323 1167build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
0f0cffd2 1168-Wformat -Wparentheses -Wpointer-arith -Wuninitialized -Wformat-nonliteral \
4566dfcf 1169-Wunused-label -Wunused-function"
d8038014 1170# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
0f0cffd2 1171# -Wunused-function -Wunused-variable -Wunused-value
93d56215 1172# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
d8038014
AC
1173# -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes
1174# -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls
1175# -Woverloaded-virtual -Winline -Werror"
c906108c
SS
1176AC_ARG_ENABLE(build-warnings,
1177[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 1178[case "${enableval}" in
c906108c
SS
1179 yes) ;;
1180 no) build_warnings="-w";;
1181 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1182 build_warnings="${build_warnings} ${t}";;
1183 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1184 build_warnings="${t} ${build_warnings}";;
1185 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1186esac
1187if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1188 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1189fi])dnl
3b851bce
AC
1190AC_ARG_ENABLE(gdb-build-warnings,
1191[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
1192[case "${enableval}" in
1193 yes) ;;
1194 no) build_warnings="-w";;
1195 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1196 build_warnings="${build_warnings} ${t}";;
1197 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1198 build_warnings="${t} ${build_warnings}";;
1199 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1200esac
1201if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1202 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1203fi])dnl
104c1213
JM
1204WARN_CFLAGS=""
1205WERROR_CFLAGS=""
c906108c
SS
1206if test "x${build_warnings}" != x -a "x$GCC" = xyes
1207then
746a987d
AC
1208 AC_MSG_CHECKING(compiler warning flags)
1209 # Separate out the -Werror flag as some files just cannot be
1210 # compiled with it enabled.
1211 for w in ${build_warnings}; do
1212 case $w in
1213 -Werr*) WERROR_CFLAGS=-Werror ;;
1214 *) # Check that GCC accepts it
4536bbc6
AC
1215 saved_CFLAGS="$CFLAGS"
1216 CFLAGS="$CFLAGS $w"
1217 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1218 CFLAGS="$saved_CFLAGS"
746a987d
AC
1219 esac
1220 done
1221 AC_MSG_RESULT(${WARN_CFLAGS}${WERROR_CFLAGS})
1decb323 1222fi
c906108c 1223AC_SUBST(WARN_CFLAGS)
104c1213 1224AC_SUBST(WERROR_CFLAGS)
c906108c 1225
7a292a7a
SS
1226# In the Cygwin environment, we need some additional flags.
1227AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1228[AC_EGREP_CPP(lose, [
1229#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1230lose
1231#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1232
aff38e61
AC
1233
1234dnl Figure out which of the many generic ser-*.c files the _host_ supports.
1235SER_HARDWIRE="ser-unix.o ser-pipe.o ser-tcp.o"
1236case ${host} in
95cbc983
AC
1237 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1238 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
aff38e61
AC
1239esac
1240AC_SUBST(SER_HARDWIRE)
1241
cd0fc7c3
SS
1242# libreadline needs libuser32.a in a cygwin environment
1243WIN32LIBS=
1244if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1245 WIN32LIBS="-luser32"
1246 case "${target}" in
1247 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1248 ;;
1249 esac
cd0fc7c3
SS
1250fi
1251AC_SUBST(WIN32LIBS)
7a292a7a 1252
3fc11d3e
JM
1253LIBGUI="../libgui/src/libgui.a"
1254GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1255AC_SUBST(LIBGUI)
1256AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1257
3fc11d3e
JM
1258WIN32LDAPP=
1259AC_SUBST(WIN32LIBS)
1260AC_SUBST(WIN32LDAPP)
1261
d91670b9
CV
1262case "${host}" in
1263*-*-cygwin*)
1264 configdir="win"
1265 ;;
1266*)
1267 configdir="unix"
1268 ;;
1269esac
3fc11d3e
JM
1270
1271GDBTKLIBS=
1272if test "${enable_gdbtk}" = "yes"; then
1273
d1c3b63a
KS
1274 # Gdbtk must have an absolute path to srcdir in order to run
1275 # properly when not installed.
1276 here=`pwd`
1277 cd ${srcdir}
1278 GDBTK_SRC_DIR=`pwd`
1279 cd $here
1280
3fc11d3e
JM
1281 CY_AC_PATH_TCLCONFIG
1282 if test -z "${no_tcl}"; then
1283 CY_AC_LOAD_TCLCONFIG
1284 CY_AC_PATH_TKCONFIG
1285
dd2504ab
JM
1286 # now look for Tcl library stuff
1287
d91670b9 1288 tcldir="../tcl/${configdir}/"
dd2504ab
JM
1289
1290 TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
1291
3fc11d3e
JM
1292 # If $no_tk is nonempty, then we can't do Tk, and there is no
1293 # point to doing Tcl.
1294 if test -z "${no_tk}"; then
1295 CY_AC_LOAD_TKCONFIG
1296 CY_AC_PATH_TCLH
1297 CY_AC_PATH_TKH
1298 CY_AC_PATH_ITCLH
1299 CY_AC_PATH_ITKH
3fc11d3e 1300
dd2504ab
JM
1301
1302 # now look for Tk library stuff
1303
d91670b9 1304 tkdir="../tk/${configdir}/"
dd2504ab
JM
1305
1306 TK_DEPS="${tkdir}${TK_LIB_FILE}"
1307
3fc11d3e
JM
1308 # now look for Itcl library stuff
1309
1310 CY_AC_PATH_ITCLCONFIG
1311 if test -z "${no_itcl}"; then
b381d62d 1312 CY_AC_LOAD_ITCLCONFIG
3fc11d3e
JM
1313
1314 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
b381d62d 1315 ITCL_DEPS="${ITCL_LIB_FULL_PATH}"
3fc11d3e
JM
1316 fi
1317
1318
1319 # now look for Itk library stuff
1320 CY_AC_PATH_ITKCONFIG
1321 if test -z "${no_itcl}"; then
1322 CY_AC_LOAD_ITKCONFIG
1323
3fc11d3e 1324 ITKLIB="${ITK_BUILD_LIB_SPEC}"
b381d62d 1325 ITK_DEPS="${ITK_LIB_FULL_PATH}"
3fc11d3e
JM
1326 fi
1327
4226a5a5 1328 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1329 # Tcl/Tk 8.1 require -fwritable strings. I don't
1330 # know whether 8.2 will or not, but I bet it will.
1331 # I don't have to worry about 7.x since we don't support it.
1332 GDBTK_CFLAGS=""
1333 if test "$GCC" = "yes"; then
1334 if test "$TCL_VERSION" != "8.0" ; then
1335 GDBTK_CFLAGS="-fwritable-strings"
1336 fi
1337 fi
1338
1339 # Include some libraries that Tcl and Tk want.
b2a1bd4f 1340 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1341 # Yes, the ordering seems wrong here. But it isn't.
1342 # TK_LIBS is the list of libraries that need to be linked
1343 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1344 # were in LIBS then any link tests after this point would
1345 # try to include things like `$(LIBGUI)', which wouldn't work.
1346 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1347
1348 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1349 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1350 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
33f8ca73
AC
1351 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1352 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1353 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1354 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
3fc11d3e
JM
1355
1356 if test x$gdb_cv_os_cygwin = xyes; then
1357 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1358 WIN32LDAPP="-Wl,--subsystem,console"
1359 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1360 fi
1361 fi
1362 fi
ffc6a242 1363
ffc6a242 1364 configdirs="${configdirs} gdbtk"
3fc11d3e
JM
1365fi
1366
3fc11d3e
JM
1367AC_SUBST(X_CFLAGS)
1368AC_SUBST(X_LDFLAGS)
1369AC_SUBST(X_LIBS)
dd2504ab
JM
1370AC_SUBST(TCL_DEPS)
1371AC_SUBST(TK_DEPS)
3fc11d3e
JM
1372AC_SUBST(ITCLLIB)
1373AC_SUBST(ITCL_DEPS)
1374AC_SUBST(ITKLIB)
1375AC_SUBST(ITK_DEPS)
3fc11d3e
JM
1376AC_SUBST(GDBTKLIBS)
1377AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1378AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1379
c906108c
SS
1380AC_PATH_X
1381
7a292a7a
SS
1382
1383# Unlike the sim directory, whether a simulator is linked is controlled by
1384# presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
1385# This code just checks for a few cases where we'd like to ignore those
1386# definitions, even when they're present in the '.mt' file. These cases
1387# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1388# not part of the source tree.
7a292a7a
SS
1389#
1390AC_ARG_ENABLE(sim,
1391[ --enable-sim Link gdb with simulator],
1392[echo "enable_sim = $enable_sim";
1393 echo "enableval = ${enableval}";
1394 case "${enableval}" in
1395 yes) ignore_sim=false ;;
1396 no) ignore_sim=true ;;
1397 *) ignore_sim=false ;;
1398 esac],
1399[ignore_sim=false])
1400
1401if test ! -d "${srcdir}/../sim"; then
1402 ignore_sim=true
1403fi
1404
1405if test "${ignore_sim}" = "true"; then
1406 IGNORE_SIM="SIM="
1407 IGNORE_SIM_OBS="SIM_OBS="
1408else
1409 IGNORE_SIM=""
1410 IGNORE_SIM_OBS=""
1411 AC_DEFINE(WITH_SIM)
1412fi
1413AC_SUBST(IGNORE_SIM)
1414AC_SUBST(IGNORE_SIM_OBS)
1415
c906108c 1416AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1417AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1418
1419AC_SUBST(CONFIG_OBS)
1420AC_SUBST(CONFIG_DEPS)
1421AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1422AC_SUBST(CONFIG_ALL)
1423AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1424AC_SUBST(CONFIG_INSTALL)
1425AC_SUBST(CONFIG_UNINSTALL)
c906108c 1426
c35f4ffc
AC
1427# List of host floatformats.
1428AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1429AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1430AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1431
c906108c
SS
1432# target_subdir is used by the testsuite to find the target libraries.
1433target_subdir=
1434if test "${host}" != "${target}"; then
1435 target_subdir="${target_alias}/"
1436fi
1437AC_SUBST(target_subdir)
1438
1439frags=
1440host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1441if test ! -f ${host_makefile_frag}; then
7fd60527
AC
1442 # When building a native debuger the .mh file containing things
1443 # like NATDEPFILES is needed. Cross debuggers don't need .mh
1444 # since it no longer contains anything useful.
1445 if test "${target}" = "${host}"; then
1446 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1447 else
1448 host_makefile_frag=/dev/null
1449 fi
c906108c
SS
1450fi
1451frags="$frags $host_makefile_frag"
1452
1453target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
1454if test ! -f ${target_makefile_frag}; then
1455AC_MSG_ERROR("*** Gdb does not support target ${target}")
1456fi
1457frags="$frags $target_makefile_frag"
1458
1459AC_SUBST_FILE(host_makefile_frag)
1460AC_SUBST_FILE(target_makefile_frag)
1461AC_SUBST(frags)
1462
1463changequote(,)dnl
1464hostfile=`sed -n '
1465s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1466' ${host_makefile_frag}`
1467
1468targetfile=`sed -n '
1469s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1470' ${target_makefile_frag}`
1471
c906108c 1472if test "${target}" = "${host}"; then
a85f51e7
DJ
1473# We pick this up from the host configuration file (.mh) because we
1474# do not have a native configuration Makefile fragment.
c906108c
SS
1475nativefile=`sed -n '
1476s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1477' ${host_makefile_frag}`
c906108c
SS
1478fi
1479changequote([,])
1480
b00a8037
DJ
1481if test x"${gdb_osabi}" != x ; then
1482 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1483 [Define to the default OS ABI for this configuration.])
1484fi
1485
8dcde887
MK
1486# Enable multi-ice-gdb-server.
1487AC_ARG_ENABLE(multi-ice,
1488[ --enable-multi-ice build the multi-ice-gdb-server],
1489 [case $enableval in
1490 yes | no)
1491 ;;
1492 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1493 esac])
1494if test "x$enable_multi_ice" = xyes; then
1495 configdirs="$configdirs multi-ice"
96baa820
JM
1496fi
1497
8dcde887
MK
1498# We only build gdbserver automatically if host and target are the same.
1499if test "x$target" = "x$host"; then
1500 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1501 if test "x$build_gdbserver" = xyes; then
1502 configdirs="$configdirs gdbserver"
1503 AC_MSG_RESULT(yes)
1504 else
1505 AC_MSG_RESULT(no)
1506 fi
a85f51e7
DJ
1507fi
1508
8dcde887 1509AC_CONFIG_SUBDIRS($configdirs)
96baa820 1510
c906108c 1511# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
5a2402b8
AC
1512# (NAT_FILE) is not set in config/*/*.m[ht] files, we link to an empty
1513# version.
c906108c
SS
1514
1515files=
1516links=
5a2402b8 1517
c906108c 1518rm -f xm.h
5a2402b8 1519xm_h=""
c906108c 1520if test "${hostfile}" != ""; then
5a2402b8
AC
1521 xm_h=xm.h
1522 GDB_XM_FILE="config/${gdb_host_cpu}/${hostfile}"
1523 files="${files} ${GDB_XM_FILE}"
1524 links="${links} xm.h"
1525 AC_DEFINE_UNQUOTED(GDB_XM_FILE, ${GDB_XM_FILE})
c906108c 1526fi
5a2402b8
AC
1527AC_SUBST(xm_h)
1528
c906108c 1529rm -f tm.h
5a2402b8 1530tm_h=""
c906108c 1531if test "${targetfile}" != ""; then
5a2402b8
AC
1532 tm_h=tm.h
1533 GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}"
1534 files="${files} ${GDB_TM_FILE}"
1535 links="${links} tm.h"
1536 AC_DEFINE_UNQUOTED(GDB_TM_FILE, ${GDB_TM_FILE})
c906108c 1537fi
5a2402b8
AC
1538AC_SUBST(tm_h)
1539
c906108c 1540rm -f nm.h
5a2402b8 1541nm_h=""
c906108c 1542if test "${nativefile}" != ""; then
5a2402b8
AC
1543 nm_h=nm.h
1544 GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}"
1545 files="${files} ${GDB_NM_FILE}"
1546 links="${links} nm.h"
1547 AC_DEFINE_UNQUOTED(GDB_NM_FILE, ${GDB_NM_FILE})
c906108c 1548fi
5a2402b8
AC
1549AC_SUBST(nm_h)
1550
c906108c
SS
1551AC_LINK_FILES($files, $links)
1552
1553dnl Check for exe extension set on certain hosts (e.g. Win32)
1554AC_EXEEXT
1555
234b45d4
KB
1556dnl Detect the character set used by this host.
1557
1558dnl At the moment, we just assume it's ISO-8859-1 (which is a
1559dnl superset of ASCII containing the characters needed for French,
1560dnl German, Spanish, Italian, and possibly others), but if were
1561dnl *were* to support any host character sets other than ISO-8859-1,
1562dnl here's where we'd detect it.
1563AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1564 [Define to be a string naming the default host character set.])
1565
1566AM_ICONV
1567
ed952ac5 1568AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
c906108c
SS
1569[
1570dnl Autoconf doesn't provide a mechanism for modifying definitions
1571dnl provided by makefile fragments.
1572dnl
7ee6d7eb 1573if test "${nativefile}" = ""; then
c4620205 1574 < Makefile \
e27da16d
JT
1575 sed -e '/^NATDEPFILES[[ ]]*=.*\\$/,/[[^\\]]$/s/^/# /' \
1576 -e '/^NATDEPFILES[[ ]]*=/s/^/# /' \
c4620205
JB
1577 | sed -e '/^\(NATDEPFILES[[ ]]*[[+]]=[[ ]]*\)/s//# \1/' \
1578 > Makefile.tem
c906108c
SS
1579mv -f Makefile.tem Makefile
1580fi
1581
1582changequote(,)dnl
1583sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
1584/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
1585/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
1586mv -f Makefile.tmp Makefile
1587changequote([,])dnl
1588
2acceee2 1589
c906108c
SS
1590case x$CONFIG_HEADERS in
1591xconfig.h:config.in)
1592echo > stamp-h ;;
1593esac
1594],
1595[
1596gdb_host_cpu=$gdb_host_cpu
1597gdb_target_cpu=$gdb_target_cpu
1598nativefile=$nativefile
1599])
1600
1601exit 0
This page took 0.433043 seconds and 4 git commands to generate.