2004-08-02 Andrew Cagney <cagney@gnu.org>
[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
377AC_SEARCH_LIBS(initscr, [ncurses Hcurses curses pdcurses], [],
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)
416AC_CHECK_HEADERS(sys/user.h)
417AC_CHECK_HEADERS(sys/wait.h wait.h)
418AC_CHECK_HEADERS(termios.h termio.h sgtty.h)
419AC_CHECK_HEADERS(unistd.h)
420
b1d19a62 421# On Solaris 2.[789], we need to define _MSE_INT_H to avoid a clash
5ee754fc
MK
422# between <widec.h> and <wchar.h> that would cause AC_CHECK_HEADERS to
423# think that we don't have <curses.h> if we're using GCC.
424case $host_os in
b1d19a62 425 solaris2.[[789]])
5ee754fc
MK
426 if test "$GCC" = yes; then
427 AC_DEFINE(_MSE_INT_H, 1,
428 [[Define to 1 to avoid a clash between <widec.h> and <wchar.h> on
b1d19a62 429 Solaris 2.[789] when using GCC. ]])
5ee754fc
MK
430 fi ;;
431esac
432AC_CHECK_HEADERS(curses.h ncurses.h term.h)
433
434# FIXME: kettenis/20030102: In most cases we include these
435# unconditionally, so what's the point in checking these?
436AC_CHECK_HEADERS(ctype.h time.h)
437
40a7debc
EZ
438dnl Check for struct stat with an st_blocks member
439AC_MSG_CHECKING(for member st_blocks in struct stat)
440AC_CACHE_VAL(gdb_cv_have_struct_stat_with_st_blocks_member,
441 [AC_TRY_COMPILE([#include <sys/types.h>
442#include <sys/stat.h>],
443 [struct stat st; (void) st.st_blocks;],
444 gdb_cv_have_struct_stat_with_st_blocks_member=yes,
445 gdb_cv_have_struct_stat_with_st_blocks_member=no)])
446AC_MSG_RESULT($gdb_cv_have_struct_stat_with_st_blocks_member)
447if test $gdb_cv_have_struct_stat_with_st_blocks_member = yes; then
448 AC_DEFINE(HAVE_STRUCT_STAT_ST_BLOCKS)
449fi
b9362cc7
AC
450# ------------------------- #
451# Checks for declarations. #
452# ------------------------- #
453
454gcc_AC_CHECK_DECLS(getopt)
455
5ee754fc
MK
456# ------------------ #
457# Checks for types. #
458# ------------------ #
c906108c 459
5ee754fc
MK
460AC_TYPE_SIGNAL
461
462# ------------------------------------- #
463# Checks for compiler characteristics. #
464# ------------------------------------- #
c906108c
SS
465
466AC_C_CONST
bce58c09 467AC_C_INLINE
c906108c 468
5ee754fc
MK
469# ------------------------------ #
470# Checks for library functions. #
471# ------------------------------ #
472
c906108c 473AC_FUNC_ALLOCA
97bf5e38 474AC_FUNC_MMAP
46711df8 475AC_FUNC_VFORK
97bf5e38
MK
476AC_CHECK_FUNCS(canonicalize_file_name realpath)
477AC_CHECK_FUNCS(poll)
14abd0fb 478AC_CHECK_FUNCS(pread64)
97bf5e38
MK
479AC_CHECK_FUNCS(sbrk)
480AC_CHECK_FUNCS(setpgid setpgrp)
e1ea1d75 481AC_CHECK_FUNCS(sigaction sigprocmask sigsetmask)
97bf5e38 482AC_CHECK_FUNCS(socketpair)
b757528f 483AC_CHECK_FUNCS(syscall)
97bf5e38 484
72473524
DJ
485dnl AC_FUNC_SETPGRP does not work when cross compiling
486dnl Instead, assume we will have a prototype for setpgrp if cross compiling.
487if test "$cross_compiling" = no; then
488 AC_FUNC_SETPGRP
489else
490 AC_CACHE_CHECK([whether setpgrp takes no argument], ac_cv_func_setpgrp_void,
491 [AC_TRY_COMPILE([
492#include <unistd.h>
493], [
494 if (setpgrp(1,1) == -1)
495 exit (0);
496 else
497 exit (1);
498], ac_cv_func_setpgrp_void=no, ac_cv_func_setpgrp_void=yes)])
499if test $ac_cv_func_setpgrp_void = yes; then
500 AC_DEFINE(SETPGRP_VOID, 1)
501fi
502fi
c906108c 503
2b2d558c
MK
504# Check if sigsetjmp is available. Using AC_CHECK_FUNCS won't do
505# since sigsetjmp might only be defined as a macro.
506AC_CACHE_CHECK([for sigsetjmp], gdb_cv_func_sigsetjmp,
507[AC_TRY_COMPILE([
508#include <setjmp.h>
509], [sigjmp_buf env; while (! sigsetjmp (env, 1)) siglongjmp (env, 1);],
510gdb_cv_func_sigsetjmp=yes, gdb_cv_func_sigsetjmp=no)])
511if test $gdb_cv_func_sigsetjmp = yes; then
512 AC_DEFINE(HAVE_SIGSETJMP, 1, [Define if sigsetjmp is available. ])
513fi
514
06825bd1
MK
515# Assume we'll default to using the included libiberty regex.
516gdb_use_included_regex=yes
517
518# However, if the system regex is GNU regex, then default to *not*
519# using the included regex.
520AC_CACHE_CHECK(
521 [for GNU regex],
522 [gdb_cv_have_gnu_regex],
523 [AC_TRY_COMPILE(
524 [#include <gnu-versions.h>],
525 [#define REGEX_INTERFACE_VERSION 1
526#if _GNU_REGEX_INTERFACE_VERSION != REGEX_INTERFACE_VERSION
527# error "Version mismatch"
528#endif],
529 gdb_cv_have_gnu_regex=yes,
530 gdb_cv_have_gnu_regex=no)])
531if test $gdb_cv_have_gnu_regex = yes; then
532 gdb_use_included_regex=no
533fi
534
535AC_ARG_WITH(included-regex,
536 [ --without-included-regex don't use included regex; this is the default
537 on systems with version 2 of the GNU C library
538 (use with caution on other system)],
539 gdb_with_regex=$withval,
540 gdb_with_regex=$gdb_use_included_regex)
541if test "$gdb_with_regex" = yes; then
542 AC_DEFINE(USE_INCLUDED_REGEX, 1,
543 [Define to 1 if the regex included in libiberty should be used.])
544fi
545
70f9f479
MK
546# See if <sys/proc.h> defines `struct thread' with a td_pcb member.
547AC_CACHE_CHECK([for td_pcb in struct thread], gdb_cv_struct_thread_td_pcb,
d15be926
MK
548[AC_TRY_COMPILE([#include <sys/param.h>
549#include <sys/proc.h>], [struct thread td; td.td_pcb;],
70f9f479
MK
550gdb_cv_struct_thread_td_pcb=yes, gdb_cv_struct_thread_td_pcb=no)])
551if test $gdb_cv_struct_thread_td_pcb = yes; then
552 AC_DEFINE(HAVE_STRUCT_THREAD_TD_PCB, 1,
553 [Define to 1 if your system has td_pcb in struct thread.])
554fi
555
78434e59
MK
556# See if <machine/reg.h> degines `struct reg'.
557AC_CACHE_CHECK([for struct reg in machine/reg.h], gdb_cv_struct_reg,
558[AC_TRY_COMPILE([#include <sys/types.h>
559#include <machine/reg.h>], [struct reg r;],
560gdb_cv_struct_reg=yes, gdb_cv_struct_reg=no)])
561if test $gdb_cv_struct_reg = yes; then
562 AC_DEFINE(HAVE_STRUCT_REG, 1,
563 [Define to 1 if your system has struct reg in <machine/reg.h>.])
564fi
565
0afdd437 566# See if <machine/reg.h> supports the %fs and %gs i386 segment registers.
7dfa765c 567# Older i386 BSD's don't have the r_fs and r_gs members of `struct reg'.
422ea4b8 568AC_CACHE_CHECK([for r_fs in struct reg], gdb_cv_struct_reg_r_fs,
7dfa765c 569[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_fs;],
422ea4b8
MK
570gdb_cv_struct_reg_r_fs=yes, gdb_cv_struct_reg_r_fs=no)])
571if test $gdb_cv_struct_reg_r_fs = yes; then
572 AC_DEFINE(HAVE_STRUCT_REG_R_FS)
7dfa765c 573fi
422ea4b8 574AC_CACHE_CHECK([for r_gs in struct reg], gdb_cv_struct_reg_r_gs,
7dfa765c 575[AC_TRY_COMPILE([#include <machine/reg.h>], [struct reg r; r.r_gs;],
422ea4b8
MK
576gdb_cv_struct_reg_r_gs=yes, gdb_cv_struct_reg_r_gs=no)])
577if test $gdb_cv_struct_reg_r_gs = yes; then
578 AC_DEFINE(HAVE_STRUCT_REG_R_GS)
7dfa765c
MK
579fi
580
0afdd437 581# See if <sys/ptrace.h> provides the PTRACE_GETREGS request.
f60300e7
MK
582AC_MSG_CHECKING(for PTRACE_GETREGS)
583AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
584[AC_TRY_COMPILE([#include <sys/ptrace.h>],
585 [PTRACE_GETREGS;],
586 [gdb_cv_have_ptrace_getregs=yes],
587 [gdb_cv_have_ptrace_getregs=no])])
588AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
589if test $gdb_cv_have_ptrace_getregs = yes; then
590 AC_DEFINE(HAVE_PTRACE_GETREGS)
591fi
592
0afdd437 593# See if <sys/ptrace.h> provides the PTRACE_GETFPXREGS request.
6ce2ac0b
MK
594AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
595AC_CACHE_VAL(gdb_cv_have_ptrace_getfpxregs,
5c44784c 596[AC_TRY_COMPILE([#include <sys/ptrace.h>],
6ce2ac0b
MK
597 [PTRACE_GETFPXREGS;],
598 [gdb_cv_have_ptrace_getfpxregs=yes],
599 [gdb_cv_have_ptrace_getfpxregs=no])])
600AC_MSG_RESULT($gdb_cv_have_ptrace_getfpxregs)
601if test $gdb_cv_have_ptrace_getfpxregs = yes; then
602 AC_DEFINE(HAVE_PTRACE_GETFPXREGS)
5c44784c
JM
603fi
604
0afdd437
MK
605# See if <sys/ptrace.h> provides the PT_GETDBREGS request.
606AC_MSG_CHECKING(for PT_GETDBREGS)
607AC_CACHE_VAL(gdb_cv_have_pt_getdbregs,
608[AC_TRY_COMPILE([#include <sys/types.h>
609#include <sys/ptrace.h>],
610 [PT_GETDBREGS;],
611 [gdb_cv_have_pt_getdbregs=yes],
612 [gdb_cv_have_pt_getdbregs=no])])
613AC_MSG_RESULT($gdb_cv_have_pt_getdbregs)
614if test $gdb_cv_have_pt_getdbregs = yes; then
615 AC_DEFINE(HAVE_PT_GETDBREGS)
616fi
617
7e89e357
JT
618# See if <sys/ptrace.h> provides the PT_GETXMMREGS request.
619AC_MSG_CHECKING(for PT_GETXMMREGS)
620AC_CACHE_VAL(gdb_cv_have_pt_getxmmregs,
621[AC_TRY_COMPILE([#include <sys/types.h>
622#include <sys/ptrace.h>],
623 [PT_GETXMMREGS;],
624 [gdb_cv_have_pt_getxmmregs=yes],
625 [gdb_cv_have_pt_getxmmregs=no])])
626AC_MSG_RESULT($gdb_cv_have_pt_getxmmregs)
627if test $gdb_cv_have_pt_getxmmregs = yes; then
628 AC_DEFINE(HAVE_PT_GETXMMREGS)
629fi
630
27ca5dad
MC
631# See if stdint.h provides the uintptr_t type.
632# Autoconf 2.5X has an improved AC_CHECK_TYPE which will simplify this.
633AC_CACHE_CHECK([for uintptr_t in stdint.h], gdb_cv_have_uintptr_t,
634 [AC_TRY_COMPILE(
635 [#include <stdint.h>],
636 [uintptr_t foo = 0;],
637 gdb_cv_have_uintptr_t=yes,
638 gdb_cv_have_uintptr_t=no)])
27ca5dad
MC
639if test $gdb_cv_have_uintptr_t = yes; then
640 AC_DEFINE(HAVE_UINTPTR_T, 1, [Define if <stdint.h> provides the uintptr_t type.])
641fi
0afdd437 642
c906108c
SS
643BFD_NEED_DECLARATION(malloc)
644BFD_NEED_DECLARATION(realloc)
645BFD_NEED_DECLARATION(free)
646BFD_NEED_DECLARATION(strerror)
647BFD_NEED_DECLARATION(strdup)
b83266a0 648BFD_NEED_DECLARATION(strstr)
a4db0f07 649BFD_NEED_DECLARATION(canonicalize_file_name)
c906108c
SS
650
651# The following save_state_t checkery is only necessary for HPUX
652# versions earlier than 10.20. When those fade from memory, this
653# could be expunged. --jsm 1999-03-22
654
655AC_MSG_CHECKING(for HPUX save_state structure)
656AC_EGREP_HEADER(save_state_t, machine/save_state.h,
657 gdb_cv_hpux_savestate=yes, gdb_cv_hpux_savestate=no)
658AC_EGREP_HEADER(ss_wide, machine/save_state.h, gdb_cv_hpux_sswide=yes,
659 gdb_cv_hpux_sswide=no)
660if test $gdb_cv_hpux_savestate = yes
661then
662 AC_DEFINE(HAVE_STRUCT_SAVE_STATE_T, 1)
663fi
664if test $gdb_cv_hpux_sswide = yes
665then
666 AC_DEFINE(HAVE_STRUCT_MEMBER_SS_WIDE, 1)
667fi
668AC_MSG_RESULT($gdb_cv_hpux_sswide)
669
670
671# If we are configured native on GNU/Linux, work around problems with
672# sys/procfs.h
c3f6f71d 673# Also detect which type of /proc is in use, such as for Unixware or Solaris.
c906108c
SS
674
675if test "${target}" = "${host}"; then
676 case "${host}" in
677 i[[3456]]86-*-linux*)
678 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
679 AC_DEFINE(sys_quotactl)
680 ;;
596c9d4b
KB
681 ia64-*-aix*)
682 AC_DEFINE(NEW_PROC_API)
683 ;;
1045b512 684 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5* | *-*-interix* )
c3f6f71d
JM
685 AC_DEFINE(NEW_PROC_API)
686 ;;
e7c61be3 687 *-*-solaris2.[[6789]])
c3f6f71d
JM
688 AC_DEFINE(NEW_PROC_API)
689 ;;
c960c18f
AC
690 mips-sgi-irix5*)
691 # Work around <sys/proc.h> needing _KMEMUSER problem on IRIX 5.
692 AC_DEFINE([_KMEMUSER], 1)
693 ;;
c906108c 694 esac
c906108c
SS
695fi
696
697if test "$ac_cv_header_sys_procfs_h" = yes; then
698 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
699 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
700 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
701 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
83d37ec8
MK
702 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
703 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
23e04971
MS
704 BFD_HAVE_SYS_PROCFS_TYPE(prgregset32_t)
705 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset32_t)
83d37ec8
MK
706 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
707 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
596c9d4b
KB
708 BFD_HAVE_SYS_PROCFS_TYPE(prsysent_t)
709 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigset_t)
710 BFD_HAVE_SYS_PROCFS_TYPE(pr_sigaction64_t)
711 BFD_HAVE_SYS_PROCFS_TYPE(pr_siginfo64_t)
c906108c 712
23e04971 713
d84dd0c5
MK
714 dnl Check for broken prfpregset_t type
715
716 dnl For Linux/i386, glibc 2.1.3 was released with a bogus
717 dnl prfpregset_t type (it's a typedef for the pointer to a struct
718 dnl instead of the struct itself). We detect this here, and work
a3007b6f 719 dnl around it in gdb_proc_service.h.
d84dd0c5
MK
720
721 if test $bfd_cv_have_sys_procfs_type_prfpregset_t = yes; then
722 AC_MSG_CHECKING(whether prfpregset_t type is broken)
723 AC_CACHE_VAL(gdb_cv_prfpregset_t_broken,
724 [AC_TRY_RUN([#include <sys/procfs.h>
725 int main ()
726 {
727 if (sizeof (prfpregset_t) == sizeof (void *))
728 return 1;
729 return 0;
730 }],
731 gdb_cv_prfpregset_t_broken=no,
732 gdb_cv_prfpregset_t_broken=yes,
733 gdb_cv_prfpregset_t_broken=yes)])
734 AC_MSG_RESULT($gdb_cv_prfpregset_t_broken)
735 if test $gdb_cv_prfpregset_t_broken = yes; then
736 AC_DEFINE(PRFPREGSET_T_BROKEN)
737 fi
738 fi
739
c906108c
SS
740 dnl Check for PIOCSET ioctl entry
741
742 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
743 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
744 [AC_TRY_COMPILE([#include <unistd.h>
745#include <sys/types.h>
746#include <sys/procfs.h>
747], [
748 int dummy;;
749 dummy = ioctl(0, PIOCSET, &dummy);
750 ],
751 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
752 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
753 if test $gdb_cv_have_procfs_piocset = yes; then
754 AC_DEFINE(HAVE_PROCFS_PIOCSET)
755 fi
756fi
757
d45fe813
KB
758dnl For native ports (host == target), check to see what kind of
759dnl legacy link.h support is needed. (See solib-legacy.c.)
760if test ${host} = ${target} ; then
761 dnl Check for struct link_map with l_ members which are indicative
762 dnl of SVR4-like shared libraries
763
764 AC_MSG_CHECKING(for member l_addr in struct link_map)
765 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_l_members,
766 [AC_TRY_COMPILE([#include <link.h>],
767 [struct link_map lm; (void) lm.l_addr;],
768 gdb_cv_have_struct_link_map_with_l_members=yes,
769 gdb_cv_have_struct_link_map_with_l_members=no)])
770 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_l_members)
771 if test $gdb_cv_have_struct_link_map_with_l_members = yes; then
772 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_L_MEMBERS)
773 fi
774
775 dnl Check for struct link_map with lm_ members which are indicative
776 dnl of SunOS-like shared libraries
777
778 AC_MSG_CHECKING(for member lm_addr in struct link_map)
779 AC_CACHE_VAL(gdb_cv_have_struct_link_map_with_lm_members,
780 [AC_TRY_COMPILE([#include <sys/types.h>
781#include <link.h>],
782 [struct link_map lm; (void) lm.lm_addr;],
783 gdb_cv_have_struct_link_map_with_lm_members=yes,
784 gdb_cv_have_struct_link_map_with_lm_members=no)])
785 AC_MSG_RESULT($gdb_cv_have_struct_link_map_with_lm_members)
786 if test $gdb_cv_have_struct_link_map_with_lm_members = yes; then
787 AC_DEFINE(HAVE_STRUCT_LINK_MAP_WITH_LM_MEMBERS)
788 fi
789
790 dnl Check for struct so_map with som_ members which are found on
791 dnl some *BSD systems.
792
793 AC_MSG_CHECKING(for member som_addr in struct so_map)
794 AC_CACHE_VAL(gdb_cv_have_struct_so_map_with_som_members,
795 [AC_TRY_COMPILE([#include <sys/types.h>
39812ceb
C
796#ifdef HAVE_NLIST_H
797#include <nlist.h>
798#endif
d45fe813
KB
799#include <link.h>],
800 [struct so_map lm; (void) lm.som_addr;],
801 gdb_cv_have_struct_so_map_with_som_members=yes,
802 gdb_cv_have_struct_so_map_with_som_members=no)])
803 AC_MSG_RESULT($gdb_cv_have_struct_so_map_with_som_members)
804 if test $gdb_cv_have_struct_so_map_with_som_members = yes; then
805 AC_DEFINE(HAVE_STRUCT_SO_MAP_WITH_SOM_MEMBERS)
806 fi
807
808 dnl Check for struct link_map32 type, which allows a 64-bit Solaris
809 dnl debugger to debug a 32-bit Solaris app with 32-bit shared libraries.
810
811 AC_MSG_CHECKING(for struct link_map32 in sys/link.h)
812 AC_CACHE_VAL(gdb_cv_have_struct_link_map32,
813 [AC_TRY_COMPILE([#define _SYSCALL32
814#include <sys/link.h>], [struct link_map32 l;],
815 gdb_cv_have_struct_link_map32=yes,
816 gdb_cv_have_struct_link_map32=no)])
817 AC_MSG_RESULT($gdb_cv_have_struct_link_map32)
818 if test $gdb_cv_have_struct_link_map32 = yes; then
819 AC_DEFINE(HAVE_STRUCT_LINK_MAP32)
943c9c25 820 AC_DEFINE(_SYSCALL32)
d45fe813
KB
821 fi
822fi
823
c906108c
SS
824dnl See if compiler supports "long long" type.
825
826AC_MSG_CHECKING(for long long support in compiler)
827AC_CACHE_VAL(gdb_cv_c_long_long,
828[AC_TRY_COMPILE(, [
829 extern long long foo;
830 switch (foo & 2) { case 0: return 1; }
831],
832gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
833AC_MSG_RESULT($gdb_cv_c_long_long)
834if test $gdb_cv_c_long_long = yes; then
835 AC_DEFINE(CC_HAS_LONG_LONG)
836fi
837
838dnl See if the compiler and runtime support printing long long
839
840AC_MSG_CHECKING(for long long support in printf)
841AC_CACHE_VAL(gdb_cv_printf_has_long_long,
842[AC_TRY_RUN([
843int main () {
844 char buf[32];
845 long long l = 0;
846 l = (l << 16) + 0x0123;
847 l = (l << 16) + 0x4567;
848 l = (l << 16) + 0x89ab;
849 l = (l << 16) + 0xcdef;
850 sprintf (buf, "0x%016llx", l);
851 return (strcmp ("0x0123456789abcdef", buf));
852}],
853gdb_cv_printf_has_long_long=yes,
854gdb_cv_printf_has_long_long=no,
855gdb_cv_printf_has_long_long=no)])
856if test $gdb_cv_printf_has_long_long = yes; then
857 AC_DEFINE(PRINTF_HAS_LONG_LONG)
858fi
859AC_MSG_RESULT($gdb_cv_printf_has_long_long)
860
861dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
862dnl because autoconf complains about cross-compilation issues. However, this
863dnl code uses the same variables as the macro for compatibility.
864
865AC_MSG_CHECKING(for long double support in compiler)
866AC_CACHE_VAL(ac_cv_c_long_double,
867[AC_TRY_COMPILE(, [long double foo;],
868ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
869AC_MSG_RESULT($ac_cv_c_long_double)
870if test $ac_cv_c_long_double = yes; then
871 AC_DEFINE(HAVE_LONG_DOUBLE)
872fi
873
874dnl See if the compiler and runtime support printing long doubles
875
876AC_MSG_CHECKING(for long double support in printf)
877AC_CACHE_VAL(gdb_cv_printf_has_long_double,
878[AC_TRY_RUN([
879int main () {
880 char buf[16];
881 long double f = 3.141592653;
882 sprintf (buf, "%Lg", f);
883 return (strncmp ("3.14159", buf, 7));
884}],
885gdb_cv_printf_has_long_double=yes,
886gdb_cv_printf_has_long_double=no,
887gdb_cv_printf_has_long_double=no)])
888if test $gdb_cv_printf_has_long_double = yes; then
889 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
890fi
891AC_MSG_RESULT($gdb_cv_printf_has_long_double)
892
893dnl See if the compiler and runtime support scanning long doubles
894
895AC_MSG_CHECKING(for long double support in scanf)
896AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
897[AC_TRY_RUN([
898int main () {
899 char *buf = "3.141592653";
900 long double f = 0;
901 sscanf (buf, "%Lg", &f);
902 return !(f > 3.14159 && f < 3.14160);
903}],
904gdb_cv_scanf_has_long_double=yes,
905gdb_cv_scanf_has_long_double=no,
906gdb_cv_scanf_has_long_double=no)])
907if test $gdb_cv_scanf_has_long_double = yes; then
908 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
909fi
910AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
911
438013df
AO
912case ${host_os} in
913aix*)
914 AC_CACHE_CHECK([for -bbigtoc option], [gdb_cv_bigtoc], [
915 SAVE_LDFLAGS=$LDFLAGS
916
917 case $GCC in
918 yes) gdb_cv_bigtoc=-Wl,-bbigtoc ;;
919 *) gdb_cv_bigtoc=-bbigtoc ;;
920 esac
921
922 LDFLAGS=$LDFLAGS\ $gdb_cv_bigtoc
923 AC_TRY_LINK([], [int i;], [], [gdb_cv_bigtoc=])
ec76baa5 924 LDFLAGS="${SAVE_LDFLAGS}"
438013df
AO
925 ])
926 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} ${gdb_cv_bigtoc}"
927 ;;
928esac
929
c906108c 930
d92419e5
JB
931dnl For certain native configurations, we need to check whether thread
932dnl support can be built in or not.
933dnl
934dnl Note that we only want this if we are both native (host == target),
935dnl and not doing a canadian cross build (build == host).
c906108c
SS
936
937if test ${build} = ${host} -a ${host} = ${target} ; then
938 case ${host_os} in
939 hpux*)
940 AC_MSG_CHECKING(for HPUX/OSF thread support)
941 if test -f /usr/include/dce/cma_config.h ; then
942 if test "$GCC" = "yes" ; then
943 AC_MSG_RESULT(yes)
944 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
3483b318 945 CONFIG_OBS="${CONFIG_OBS} hpux-thread.o"
c906108c
SS
946 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
947 else
948 AC_MSG_RESULT(no (suppressed because you are not using GCC))
949 fi
950 else
951 AC_MSG_RESULT(no)
952 fi
953 ;;
954 solaris*)
d92419e5
JB
955 # See if thread_db library is around for Solaris thread debugging.
956 # Note that we must explicitly test for version 1 of the library
957 # because version 0 (present on Solaris 2.4 or earlier) doesn't have
958 # the same API.
c906108c
SS
959 AC_MSG_CHECKING(for Solaris thread debugging library)
960 if test -f /usr/lib/libthread_db.so.1 ; then
961 AC_MSG_RESULT(yes)
962 AC_DEFINE(HAVE_THREAD_DB_LIB)
3483b318 963 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
c906108c
SS
964 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
965 AC_CHECK_LIB(dl, dlopen)
966 if test "$GCC" = "yes" ; then
967 # The GNU linker requires the -export-dynamic option to make
968 # all symbols visible in the dynamic symbol table.
969 hold_ldflags=$LDFLAGS
970 AC_MSG_CHECKING(for the ld -export-dynamic flag)
971 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
972 AC_TRY_LINK(, [int i;], found=yes, found=no)
973 LDFLAGS=$hold_ldflags
974 AC_MSG_RESULT($found)
975 if test $found = yes; then
976 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
977 fi
978 fi
979 # Sun randomly tweaked the prototypes in <proc_service.h>
980 # at one point.
981 AC_MSG_CHECKING(if <proc_service.h> is old)
982 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
983 AC_TRY_COMPILE([
984 #include <proc_service.h>
985 ps_err_e ps_pdwrite
986 (struct ps_prochandle*, psaddr_t, const void*, size_t);
987 ],, gdb_cv_proc_service_is_old=no,
988 gdb_cv_proc_service_is_old=yes)
989 ])
990 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
991 if test $gdb_cv_proc_service_is_old = yes; then
992 AC_DEFINE(PROC_SERVICE_IS_OLD)
993 fi
994 else
995 AC_MSG_RESULT(no)
996 fi
997 ;;
d92419e5
JB
998 aix*)
999 AC_MSG_CHECKING(for AiX thread debugging library)
1000 AC_CACHE_VAL(gdb_cv_have_aix_thread_debug,
1001 [AC_TRY_COMPILE([#include <sys/pthdebug.h>],
1002 [#ifndef PTHDB_VERSION_3
1003 #error
1004 #endif],
1005 gdb_cv_have_aix_thread_debug=yes,
1006 gdb_cv_have_aix_thread_debug=no)])
1007 AC_MSG_RESULT($gdb_cv_have_aix_thread_debug)
1008 if test $gdb_cv_have_aix_thread_debug = yes; then
1009 CONFIG_SRCS="${CONFIG_SRCS} aix-thread.c"
3483b318 1010 CONFIG_OBS="${CONFIG_OBS} aix-thread.o"
d92419e5
JB
1011 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -lpthdebug"
1012 fi
1013 ;;
c906108c
SS
1014 esac
1015 AC_SUBST(CONFIG_LDFLAGS)
1016fi
1017
3f47be5c
EZ
1018dnl See if we have a thread_db header file that has TD_NOTALLOC.
1019if test "x$ac_cv_header_thread_db_h" = "xyes"; then
1020 AC_CACHE_CHECK([whether <thread_db.h> has TD_NOTALLOC],
1021 gdb_cv_thread_db_h_has_td_notalloc,
1022 AC_TRY_COMPILE(
1023 [#include <thread_db.h>],
1024 [int i = TD_NOTALLOC;],
1025 gdb_cv_thread_db_h_has_td_notalloc=yes,
1026 gdb_cv_thread_db_h_has_td_notalloc=no
1027 )
1028 )
1029fi
1030if test "x$gdb_cv_thread_db_h_has_td_notalloc" = "xyes"; then
1031 AC_DEFINE(THREAD_DB_HAS_TD_NOTALLOC, 1,
1032 [Define if <thread_db.h> has the TD_NOTALLOC error code.])
1033fi
1034
b757528f
JJ
1035dnl See if we have a sys/syscall header file that has __NR_tkill.
1036if test "x$ac_cv_header_sys_syscall_h" = "xyes"; then
1037 AC_CACHE_CHECK([whether <sys/syscall.h> has __NR_tkill],
1038 gdb_cv_sys_syscall_h_has_tkill,
1039 AC_TRY_COMPILE(
1040 [#include <sys/syscall.h>],
1041 [int i = __NR_tkill;],
1042 gdb_cv_sys_syscall_h_has_tkill=yes,
1043 gdb_cv_sys_syscall_h_has_tkill=no
1044 )
1045 )
1046fi
1047dnl See if we can issue tkill syscall.
1048if test "x$gdb_cv_sys_syscall_h_has_tkill" = "xyes" && test "x$ac_cv_func_syscall" = "xyes"; then
1049 AC_DEFINE(HAVE_TKILL_SYSCALL, 1,
1050 [Define if we can use the tkill syscall.])
1051fi
1052
c906108c 1053dnl Handle optional features that can be enabled.
fb40c209 1054
030292b7
DJ
1055AC_ARG_WITH(sysroot,
1056[ --with-sysroot[=DIR] Search for usr/lib et al within DIR.],
1057[
1058 case ${with_sysroot} in
715d1656 1059 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
030292b7
DJ
1060 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
1061 esac
1062
1063 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
1064
1065 if test "x$exec_prefix" = xNONE; then
1066 if test "x$prefix" = xNONE; then
1067 test_prefix=/usr/local
1068 else
1069 test_prefix=$prefix
1070 fi
1071 else
1072 test_prefix=$exec_prefix
1073 fi
1074 case ${TARGET_SYSTEM_ROOT} in
715d1656
AO
1075 "${test_prefix}"|"${test_prefix}/"*|\
1076 '${exec_prefix}'|'${exec_prefix}/'*)
030292b7
DJ
1077 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
1078 TARGET_SYSTEM_ROOT_DEFINE="$t"
1079 ;;
1080 esac
1081], [
1082 TARGET_SYSTEM_ROOT=
1083 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"\"'
1084])
1085AC_SUBST(TARGET_SYSTEM_ROOT)
1086AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
1087
3b851bce
AC
1088# NOTE: Don't add -Wall or -Wunused, they both include
1089# -Wunused-parameter which reports bogus warnings.
1090# NOTE: If you add to this list, remember to update
1091# gdb/doc/gdbint.texinfo.
1decb323 1092build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs \
0f0cffd2 1093-Wformat -Wparentheses -Wpointer-arith -Wuninitialized -Wformat-nonliteral \
4566dfcf 1094-Wunused-label -Wunused-function"
d8038014 1095# Up for debate: -Wswitch -Wcomment -trigraphs -Wtrigraphs
0f0cffd2 1096# -Wunused-function -Wunused-variable -Wunused-value
93d56215 1097# -Wchar-subscripts -Wtraditional -Wshadow -Wcast-qual
d8038014
AC
1098# -Wcast-align -Wwrite-strings -Wconversion -Wstrict-prototypes
1099# -Wmissing-prototypes -Wmissing-declarations -Wredundant-decls
1100# -Woverloaded-virtual -Winline -Werror"
c906108c
SS
1101AC_ARG_ENABLE(build-warnings,
1102[ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
1decb323 1103[case "${enableval}" in
c906108c
SS
1104 yes) ;;
1105 no) build_warnings="-w";;
1106 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1107 build_warnings="${build_warnings} ${t}";;
1108 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1109 build_warnings="${t} ${build_warnings}";;
1110 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
d4f3574e
SS
1111esac
1112if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
746a987d 1113 echo "Setting compiler warning flags = $build_warnings" 6>&1
1decb323 1114fi])dnl
3b851bce
AC
1115AC_ARG_ENABLE(gdb-build-warnings,
1116[ --enable-gdb-build-warnings Enable GDB specific build-time compiler warnings if gcc is used],
1117[case "${enableval}" in
1118 yes) ;;
1119 no) build_warnings="-w";;
1120 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1121 build_warnings="${build_warnings} ${t}";;
1122 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
1123 build_warnings="${t} ${build_warnings}";;
1124 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
1125esac
1126if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
1127 echo "Setting GDB specific compiler warning flags = $build_warnings" 6>&1
1128fi])dnl
104c1213
JM
1129WARN_CFLAGS=""
1130WERROR_CFLAGS=""
c906108c
SS
1131if test "x${build_warnings}" != x -a "x$GCC" = xyes
1132then
746a987d
AC
1133 AC_MSG_CHECKING(compiler warning flags)
1134 # Separate out the -Werror flag as some files just cannot be
1135 # compiled with it enabled.
1136 for w in ${build_warnings}; do
1137 case $w in
1138 -Werr*) WERROR_CFLAGS=-Werror ;;
1139 *) # Check that GCC accepts it
4536bbc6
AC
1140 saved_CFLAGS="$CFLAGS"
1141 CFLAGS="$CFLAGS $w"
1142 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
1143 CFLAGS="$saved_CFLAGS"
746a987d
AC
1144 esac
1145 done
1146 AC_MSG_RESULT(${WARN_CFLAGS}${WERROR_CFLAGS})
1decb323 1147fi
c906108c 1148AC_SUBST(WARN_CFLAGS)
104c1213 1149AC_SUBST(WERROR_CFLAGS)
c906108c 1150
7a292a7a
SS
1151# In the Cygwin environment, we need some additional flags.
1152AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
1153[AC_EGREP_CPP(lose, [
1154#if defined (__CYGWIN__) || defined (__CYGWIN32__)
1155lose
1156#endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
1157
aff38e61
AC
1158
1159dnl Figure out which of the many generic ser-*.c files the _host_ supports.
1160SER_HARDWIRE="ser-unix.o ser-pipe.o ser-tcp.o"
1161case ${host} in
95cbc983
AC
1162 *go32* ) SER_HARDWIRE=ser-go32.o ;;
1163 *djgpp* ) SER_HARDWIRE=ser-go32.o ;;
aff38e61
AC
1164esac
1165AC_SUBST(SER_HARDWIRE)
1166
cd0fc7c3
SS
1167# libreadline needs libuser32.a in a cygwin environment
1168WIN32LIBS=
1169if test x$gdb_cv_os_cygwin = xyes; then
c5394b80
JM
1170 WIN32LIBS="-luser32"
1171 case "${target}" in
1172 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
1173 ;;
1174 esac
cd0fc7c3
SS
1175fi
1176AC_SUBST(WIN32LIBS)
7a292a7a 1177
3fc11d3e
JM
1178LIBGUI="../libgui/src/libgui.a"
1179GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
1180AC_SUBST(LIBGUI)
1181AC_SUBST(GUI_CFLAGS_X)
7a292a7a 1182
3fc11d3e
JM
1183WIN32LDAPP=
1184AC_SUBST(WIN32LIBS)
1185AC_SUBST(WIN32LDAPP)
1186
d91670b9
CV
1187case "${host}" in
1188*-*-cygwin*)
1189 configdir="win"
1190 ;;
1191*)
1192 configdir="unix"
1193 ;;
1194esac
3fc11d3e
JM
1195
1196GDBTKLIBS=
1197if test "${enable_gdbtk}" = "yes"; then
1198
d1c3b63a
KS
1199 # Gdbtk must have an absolute path to srcdir in order to run
1200 # properly when not installed.
1201 here=`pwd`
1202 cd ${srcdir}
1203 GDBTK_SRC_DIR=`pwd`
1204 cd $here
1205
3fc11d3e
JM
1206 CY_AC_PATH_TCLCONFIG
1207 if test -z "${no_tcl}"; then
1208 CY_AC_LOAD_TCLCONFIG
1209 CY_AC_PATH_TKCONFIG
1210
dd2504ab
JM
1211 # now look for Tcl library stuff
1212
d91670b9 1213 tcldir="../tcl/${configdir}/"
dd2504ab
JM
1214
1215 TCL_DEPS="${tcldir}${TCL_LIB_FILE}"
1216
3fc11d3e
JM
1217 # If $no_tk is nonempty, then we can't do Tk, and there is no
1218 # point to doing Tcl.
1219 if test -z "${no_tk}"; then
1220 CY_AC_LOAD_TKCONFIG
1221 CY_AC_PATH_TCLH
1222 CY_AC_PATH_TKH
1223 CY_AC_PATH_ITCLH
1224 CY_AC_PATH_ITKH
3fc11d3e 1225
dd2504ab
JM
1226
1227 # now look for Tk library stuff
1228
d91670b9 1229 tkdir="../tk/${configdir}/"
dd2504ab
JM
1230
1231 TK_DEPS="${tkdir}${TK_LIB_FILE}"
1232
3fc11d3e
JM
1233 # now look for Itcl library stuff
1234
1235 CY_AC_PATH_ITCLCONFIG
1236 if test -z "${no_itcl}"; then
b381d62d 1237 CY_AC_LOAD_ITCLCONFIG
3fc11d3e
JM
1238
1239 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
b381d62d 1240 ITCL_DEPS="${ITCL_LIB_FULL_PATH}"
3fc11d3e
JM
1241 fi
1242
1243
1244 # now look for Itk library stuff
1245 CY_AC_PATH_ITKCONFIG
1246 if test -z "${no_itcl}"; then
1247 CY_AC_LOAD_ITKCONFIG
1248
3fc11d3e 1249 ITKLIB="${ITK_BUILD_LIB_SPEC}"
b381d62d 1250 ITK_DEPS="${ITK_LIB_FULL_PATH}"
3fc11d3e
JM
1251 fi
1252
4226a5a5 1253 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_GDBTK_CFLAGS)"
3fc11d3e
JM
1254 # Tcl/Tk 8.1 require -fwritable strings. I don't
1255 # know whether 8.2 will or not, but I bet it will.
1256 # I don't have to worry about 7.x since we don't support it.
1257 GDBTK_CFLAGS=""
1258 if test "$GCC" = "yes"; then
1259 if test "$TCL_VERSION" != "8.0" ; then
1260 GDBTK_CFLAGS="-fwritable-strings"
1261 fi
1262 fi
1263
1264 # Include some libraries that Tcl and Tk want.
b2a1bd4f 1265 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
3fc11d3e
JM
1266 # Yes, the ordering seems wrong here. But it isn't.
1267 # TK_LIBS is the list of libraries that need to be linked
1268 # after Tcl/Tk. Note that this isn't put into LIBS. If it
1269 # were in LIBS then any link tests after this point would
1270 # try to include things like `$(LIBGUI)', which wouldn't work.
1271 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
4226a5a5
FN
1272
1273 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_GDBTK_OBS)"
1274 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_GDBTK_DEPS)"
1275 CONFIG_SRCS="${CONFIG_SRCS} \$(SUBDIR_GDBTK_SRCS)"
33f8ca73
AC
1276 CONFIG_ALL="${CONFIG_ALL} all-gdbtk"
1277 CONFIG_CLEAN="${CONFIG_CLEAN} clean-gdbtk"
1278 CONFIG_INSTALL="${CONFIG_INSTALL} install-gdbtk"
1279 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} uninstall-gdbtk"
3fc11d3e
JM
1280
1281 if test x$gdb_cv_os_cygwin = xyes; then
1282 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
1283 WIN32LDAPP="-Wl,--subsystem,console"
1284 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
1285 fi
1286 fi
1287 fi
ffc6a242 1288
ffc6a242 1289 configdirs="${configdirs} gdbtk"
3fc11d3e
JM
1290fi
1291
3fc11d3e
JM
1292AC_SUBST(X_CFLAGS)
1293AC_SUBST(X_LDFLAGS)
1294AC_SUBST(X_LIBS)
dd2504ab
JM
1295AC_SUBST(TCL_DEPS)
1296AC_SUBST(TK_DEPS)
3fc11d3e
JM
1297AC_SUBST(ITCLLIB)
1298AC_SUBST(ITCL_DEPS)
1299AC_SUBST(ITKLIB)
1300AC_SUBST(ITK_DEPS)
3fc11d3e
JM
1301AC_SUBST(GDBTKLIBS)
1302AC_SUBST(GDBTK_CFLAGS)
d1c3b63a 1303AC_SUBST(GDBTK_SRC_DIR)
8b93c638 1304
c906108c
SS
1305AC_PATH_X
1306
7a292a7a
SS
1307
1308# Unlike the sim directory, whether a simulator is linked is controlled by
1309# presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
1310# This code just checks for a few cases where we'd like to ignore those
1311# definitions, even when they're present in the '.mt' file. These cases
1312# are when --disable-sim is specified, or if the simulator directory is
6c5cfe5b 1313# not part of the source tree.
7a292a7a
SS
1314#
1315AC_ARG_ENABLE(sim,
1316[ --enable-sim Link gdb with simulator],
1317[echo "enable_sim = $enable_sim";
1318 echo "enableval = ${enableval}";
1319 case "${enableval}" in
1320 yes) ignore_sim=false ;;
1321 no) ignore_sim=true ;;
1322 *) ignore_sim=false ;;
1323 esac],
1324[ignore_sim=false])
1325
1326if test ! -d "${srcdir}/../sim"; then
1327 ignore_sim=true
1328fi
1329
1330if test "${ignore_sim}" = "true"; then
1331 IGNORE_SIM="SIM="
1332 IGNORE_SIM_OBS="SIM_OBS="
1333else
1334 IGNORE_SIM=""
1335 IGNORE_SIM_OBS=""
1336 AC_DEFINE(WITH_SIM)
1337fi
1338AC_SUBST(IGNORE_SIM)
1339AC_SUBST(IGNORE_SIM_OBS)
1340
c906108c 1341AC_SUBST(ENABLE_CFLAGS)
d28f9cdf 1342AC_SUBST(PROFILE_CFLAGS)
c906108c
SS
1343
1344AC_SUBST(CONFIG_OBS)
1345AC_SUBST(CONFIG_DEPS)
1346AC_SUBST(CONFIG_SRCS)
b3a90332
AC
1347AC_SUBST(CONFIG_ALL)
1348AC_SUBST(CONFIG_CLEAN)
e56ac5c3
AC
1349AC_SUBST(CONFIG_INSTALL)
1350AC_SUBST(CONFIG_UNINSTALL)
c906108c 1351
c35f4ffc
AC
1352# List of host floatformats.
1353AC_DEFINE_UNQUOTED(GDB_HOST_FLOAT_FORMAT,$gdb_host_float_format,[Host float floatformat])
1354AC_DEFINE_UNQUOTED(GDB_HOST_DOUBLE_FORMAT,$gdb_host_double_format,[Host double floatformat])
1355AC_DEFINE_UNQUOTED(GDB_HOST_LONG_DOUBLE_FORMAT,$gdb_host_long_double_format,[Host long double floatformat])
1356
c906108c
SS
1357# target_subdir is used by the testsuite to find the target libraries.
1358target_subdir=
1359if test "${host}" != "${target}"; then
1360 target_subdir="${target_alias}/"
1361fi
1362AC_SUBST(target_subdir)
1363
1364frags=
1365host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
1366if test ! -f ${host_makefile_frag}; then
7fd60527
AC
1367 # When building a native debuger the .mh file containing things
1368 # like NATDEPFILES is needed. Cross debuggers don't need .mh
1369 # since it no longer contains anything useful.
1370 if test "${target}" = "${host}"; then
1371 AC_MSG_ERROR("*** Gdb does not support native target ${host}")
1372 else
1373 host_makefile_frag=/dev/null
1374 fi
c906108c
SS
1375fi
1376frags="$frags $host_makefile_frag"
1377
1378target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
1379if test ! -f ${target_makefile_frag}; then
1380AC_MSG_ERROR("*** Gdb does not support target ${target}")
1381fi
1382frags="$frags $target_makefile_frag"
1383
1384AC_SUBST_FILE(host_makefile_frag)
1385AC_SUBST_FILE(target_makefile_frag)
1386AC_SUBST(frags)
1387
1388changequote(,)dnl
1389hostfile=`sed -n '
1390s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1391' ${host_makefile_frag}`
1392
1393targetfile=`sed -n '
1394s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1395' ${target_makefile_frag}`
1396
c906108c 1397if test "${target}" = "${host}"; then
a85f51e7
DJ
1398# We pick this up from the host configuration file (.mh) because we
1399# do not have a native configuration Makefile fragment.
c906108c
SS
1400nativefile=`sed -n '
1401s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
1402' ${host_makefile_frag}`
c906108c
SS
1403fi
1404changequote([,])
1405
b00a8037
DJ
1406if test x"${gdb_osabi}" != x ; then
1407 AC_DEFINE_UNQUOTED(GDB_OSABI_DEFAULT, $gdb_osabi,
1408 [Define to the default OS ABI for this configuration.])
1409fi
1410
8dcde887
MK
1411# Enable multi-ice-gdb-server.
1412AC_ARG_ENABLE(multi-ice,
1413[ --enable-multi-ice build the multi-ice-gdb-server],
1414 [case $enableval in
1415 yes | no)
1416 ;;
1417 *) AC_MSG_ERROR([bad value $enableval for --enable-multi-ice]) ;;
1418 esac])
1419if test "x$enable_multi_ice" = xyes; then
1420 configdirs="$configdirs multi-ice"
96baa820
JM
1421fi
1422
8dcde887
MK
1423# We only build gdbserver automatically if host and target are the same.
1424if test "x$target" = "x$host"; then
1425 AC_MSG_CHECKING(whether gdbserver is supported on this host)
1426 if test "x$build_gdbserver" = xyes; then
1427 configdirs="$configdirs gdbserver"
1428 AC_MSG_RESULT(yes)
1429 else
1430 AC_MSG_RESULT(no)
1431 fi
a85f51e7
DJ
1432fi
1433
8dcde887 1434AC_CONFIG_SUBDIRS($configdirs)
96baa820 1435
c906108c 1436# If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
5a2402b8
AC
1437# (NAT_FILE) is not set in config/*/*.m[ht] files, we link to an empty
1438# version.
c906108c
SS
1439
1440files=
1441links=
5a2402b8 1442
c906108c 1443rm -f xm.h
5a2402b8 1444xm_h=""
c906108c 1445if test "${hostfile}" != ""; then
5a2402b8
AC
1446 xm_h=xm.h
1447 GDB_XM_FILE="config/${gdb_host_cpu}/${hostfile}"
1448 files="${files} ${GDB_XM_FILE}"
1449 links="${links} xm.h"
1450 AC_DEFINE_UNQUOTED(GDB_XM_FILE, ${GDB_XM_FILE})
c906108c 1451fi
5a2402b8
AC
1452AC_SUBST(xm_h)
1453
c906108c 1454rm -f tm.h
5a2402b8 1455tm_h=""
c906108c 1456if test "${targetfile}" != ""; then
5a2402b8
AC
1457 tm_h=tm.h
1458 GDB_TM_FILE="config/${gdb_target_cpu}/${targetfile}"
1459 files="${files} ${GDB_TM_FILE}"
1460 links="${links} tm.h"
1461 AC_DEFINE_UNQUOTED(GDB_TM_FILE, ${GDB_TM_FILE})
c906108c 1462fi
5a2402b8
AC
1463AC_SUBST(tm_h)
1464
c906108c 1465rm -f nm.h
5a2402b8 1466nm_h=""
c906108c 1467if test "${nativefile}" != ""; then
5a2402b8
AC
1468 nm_h=nm.h
1469 GDB_NM_FILE="config/${gdb_host_cpu}/${nativefile}"
1470 files="${files} ${GDB_NM_FILE}"
1471 links="${links} nm.h"
1472 AC_DEFINE_UNQUOTED(GDB_NM_FILE, ${GDB_NM_FILE})
c906108c 1473fi
5a2402b8
AC
1474AC_SUBST(nm_h)
1475
c906108c
SS
1476AC_LINK_FILES($files, $links)
1477
1478dnl Check for exe extension set on certain hosts (e.g. Win32)
1479AC_EXEEXT
1480
234b45d4
KB
1481dnl Detect the character set used by this host.
1482
1483dnl At the moment, we just assume it's ISO-8859-1 (which is a
1484dnl superset of ASCII containing the characters needed for French,
1485dnl German, Spanish, Italian, and possibly others), but if were
1486dnl *were* to support any host character sets other than ISO-8859-1,
1487dnl here's where we'd detect it.
1488AC_DEFINE(GDB_DEFAULT_HOST_CHARSET, "ISO-8859-1",
1489 [Define to be a string naming the default host character set.])
1490
1491AM_ICONV
1492
ed952ac5 1493AC_OUTPUT(Makefile .gdbinit:gdbinit.in,
c906108c
SS
1494[
1495dnl Autoconf doesn't provide a mechanism for modifying definitions
1496dnl provided by makefile fragments.
1497dnl
7ee6d7eb 1498if test "${nativefile}" = ""; then
c4620205 1499 < Makefile \
e27da16d
JT
1500 sed -e '/^NATDEPFILES[[ ]]*=.*\\$/,/[[^\\]]$/s/^/# /' \
1501 -e '/^NATDEPFILES[[ ]]*=/s/^/# /' \
c4620205
JB
1502 | sed -e '/^\(NATDEPFILES[[ ]]*[[+]]=[[ ]]*\)/s//# \1/' \
1503 > Makefile.tem
c906108c
SS
1504mv -f Makefile.tem Makefile
1505fi
1506
1507changequote(,)dnl
1508sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
1509/^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
1510/^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
1511mv -f Makefile.tmp Makefile
1512changequote([,])dnl
1513
2acceee2 1514
c906108c
SS
1515case x$CONFIG_HEADERS in
1516xconfig.h:config.in)
1517echo > stamp-h ;;
1518esac
1519],
1520[
1521gdb_host_cpu=$gdb_host_cpu
1522gdb_target_cpu=$gdb_target_cpu
1523nativefile=$nativefile
1524])
1525
1526exit 0
This page took 0.387362 seconds and 4 git commands to generate.