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