1 dnl Autoconf configure script for GDB, the GNU debugger.
2 dnl Copyright 1995, 1996, 1997, 1998, 1999 Free Software Foundation, Inc.
4 dnl This file is part of GDB.
6 dnl This program is free software; you can redistribute it and/or modify
7 dnl it under the terms of the GNU General Public License as published by
8 dnl the Free Software Foundation; either version 2 of the License, or
9 dnl (at your option) any later version.
11 dnl This program is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 dnl GNU General Public License for more details.
16 dnl You should have received a copy of the GNU General Public License
17 dnl along with this program; if not, write to the Free Software
18 dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 dnl Process this file with autoconf to produce a configure script.
24 AC_CONFIG_HEADER(config.h:config.in)
31 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
34 dnl gdb doesn't use gettext, but bfd does. We call this to ensure we
35 dnl link with the correct libraries.
39 dnl List of object files added by configure.
51 configdirs="doc testsuite"
53 AC_ARG_ENABLE(multi-ice,
54 [ --enable-multi-ice Build the multi-ice-gdb-server],
55 [case "${enableval}" in
56 yes ) enable_multi_ice="yes" ;;
57 no) enable_multi_ice="no" ;;
58 *) AC_MSG_ERROR(Bad value for --enable-multi-ice: ${enableval}) ;;
62 if test "${enable_multi_ice}" = "yes"; then
63 configdirs="${configdirs} multi-ice"
69 . ${srcdir}/configure.host
71 . ${srcdir}/configure.tgt
79 AC_CHECK_TOOL(RANLIB, ranlib, :)
82 dnl MiG is needed for the Hurd.
83 AC_CHECK_TOOL(MIG, mig)
91 dnl Solaris 7 needs _MSE_INT_H defined to avoid a clash between <widec.h>
92 dnl and <wchar.h> that causes AC_CHECK_HEADERS to think <curses.h> doesn't
95 case $host_os in solaris2.7) case "$GCC" in yes)
99 AC_CHECK_HEADERS(ctype.h curses.h endian.h link.h thread_db.h proc_service.h \
100 memory.h objlist.h ptrace.h sgtty.h stddef.h stdlib.h \
101 string.h sys/procfs.h sys/ptrace.h sys/reg.h stdint.h \
102 term.h termio.h termios.h unistd.h wait.h sys/wait.h \
103 wchar.h wctype.h asm/debugreg.h sys/debugreg.h sys/select.h \
109 AC_CHECK_FUNCS(setpgid sbrk sigaction isascii bzero bcopy btowc poll sigprocmask)
112 dnl See if ptrace.h provides the PTRACE_GETREGS request.
113 AC_MSG_CHECKING(for PTRACE_GETREGS)
114 AC_CACHE_VAL(gdb_cv_have_ptrace_getregs,
115 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
117 [gdb_cv_have_ptrace_getregs=yes],
118 [gdb_cv_have_ptrace_getregs=no])])
119 AC_MSG_RESULT($gdb_cv_have_ptrace_getregs)
120 if test $gdb_cv_have_ptrace_getregs = yes; then
121 AC_DEFINE(HAVE_PTRACE_GETREGS)
124 dnl See if ptrace.h provides the PTRACE_GETXFPREGS request.
125 dnl PTRACE_GETXFPREGS is a Cygnus invention, since we wrote our own
126 dnl Linux kernel patch for SSE support. That patch may or may not
127 dnl actually make it into the official distribution. If you find that
128 dnl years have gone by since this configure test was added, and Linux
129 dnl isn't using PTRACE_GETXFPREGS, that means that our patch didn't
130 dnl make it, and you can delete this code.
131 AC_MSG_CHECKING(for PTRACE_GETXFPREGS)
132 AC_CACHE_VAL(gdb_cv_have_ptrace_getxfpregs,
133 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
134 [PTRACE_GETXFPREGS;],
135 [gdb_cv_have_ptrace_getxfpregs=yes],
136 [gdb_cv_have_ptrace_getxfpregs=no])])
137 AC_MSG_RESULT($gdb_cv_have_ptrace_getxfpregs)
138 if test $gdb_cv_have_ptrace_getxfpregs = yes; then
139 AC_DEFINE(HAVE_PTRACE_GETXFPREGS)
142 AC_CHECK_LIB(socket, socketpair)
143 AC_CHECK_FUNCS(socketpair)
146 BFD_NEED_DECLARATION(malloc)
147 BFD_NEED_DECLARATION(realloc)
148 BFD_NEED_DECLARATION(free)
149 BFD_NEED_DECLARATION(strerror)
150 BFD_NEED_DECLARATION(strdup)
151 BFD_NEED_DECLARATION(strstr)
154 # The following save_state_t checkery is only necessary for HPUX
155 # versions earlier than 10.20. When those fade from memory, this
156 # could be expunged. --jsm 1999-03-22
158 AC_MSG_CHECKING(for HPUX save_state structure)
159 AC_EGREP_HEADER(save_state_t, machine/save_state.h,
160 gdb_cv_hpux_savestate=yes, gdb_cv_hpux_savestate=no)
161 AC_EGREP_HEADER(ss_wide, machine/save_state.h, gdb_cv_hpux_sswide=yes,
162 gdb_cv_hpux_sswide=no)
163 if test $gdb_cv_hpux_savestate = yes
165 AC_DEFINE(HAVE_STRUCT_SAVE_STATE_T, 1)
167 if test $gdb_cv_hpux_sswide = yes
169 AC_DEFINE(HAVE_STRUCT_MEMBER_SS_WIDE, 1)
171 AC_MSG_RESULT($gdb_cv_hpux_sswide)
174 # If we are configured native on GNU/Linux, work around problems with
176 # Also detect which type of /proc is in use, such as for Unixware or Solaris.
178 if test "${target}" = "${host}"; then
180 i[[3456]]86-*-linux*)
181 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,2)
182 AC_DEFINE(sys_quotactl)
184 *-*-unixware* | *-*-sysv4.2* | *-*-sysv5*)
185 AC_DEFINE(NEW_PROC_API)
188 AC_DEFINE(NEW_PROC_API)
193 if test "$ac_cv_header_sys_procfs_h" = yes; then
194 BFD_HAVE_SYS_PROCFS_TYPE(pstatus_t)
195 BFD_HAVE_SYS_PROCFS_TYPE(prrun_t)
196 BFD_HAVE_SYS_PROCFS_TYPE(gregset_t)
197 BFD_HAVE_SYS_PROCFS_TYPE(fpregset_t)
198 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
199 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
200 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
201 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
203 dnl Check for PIOCSET ioctl entry
205 AC_MSG_CHECKING(for PIOCSET ioctl entry in sys/procfs.h)
206 AC_CACHE_VAL(gdb_cv_have_procfs_piocset,
207 [AC_TRY_COMPILE([#include <unistd.h>
208 #include <sys/types.h>
209 #include <sys/procfs.h>
212 dummy = ioctl(0, PIOCSET, &dummy);
214 gdb_cv_have_procfs_piocset=yes, gdb_cv_have_procfs_piocset=no)])
215 AC_MSG_RESULT($gdb_cv_have_procfs_piocset)
216 if test $gdb_cv_have_procfs_piocset = yes; then
217 AC_DEFINE(HAVE_PROCFS_PIOCSET)
221 dnl See if host has libm. This is usually needed by simulators.
222 AC_CHECK_LIB(m, main)
224 dnl Solaris puts wctype in /usr/lib/libw.a before Solaris 2.6.
226 dnl A bug in GNU ld 2.9.1 causes a problem if we link in -lw
227 dnl under Solaris 2.6 because it is some funky empty library.
228 dnl So only link in libw if we have to.
229 AC_CHECK_LIB(c, wctype,: ,AC_CHECK_LIB(w, wctype))
231 dnl See if compiler supports "long long" type.
233 AC_MSG_CHECKING(for long long support in compiler)
234 AC_CACHE_VAL(gdb_cv_c_long_long,
236 extern long long foo;
237 switch (foo & 2) { case 0: return 1; }
239 gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
240 AC_MSG_RESULT($gdb_cv_c_long_long)
241 if test $gdb_cv_c_long_long = yes; then
242 AC_DEFINE(CC_HAS_LONG_LONG)
245 dnl See if the compiler and runtime support printing long long
247 AC_MSG_CHECKING(for long long support in printf)
248 AC_CACHE_VAL(gdb_cv_printf_has_long_long,
253 l = (l << 16) + 0x0123;
254 l = (l << 16) + 0x4567;
255 l = (l << 16) + 0x89ab;
256 l = (l << 16) + 0xcdef;
257 sprintf (buf, "0x%016llx", l);
258 return (strcmp ("0x0123456789abcdef", buf));
260 gdb_cv_printf_has_long_long=yes,
261 gdb_cv_printf_has_long_long=no,
262 gdb_cv_printf_has_long_long=no)])
263 if test $gdb_cv_printf_has_long_long = yes; then
264 AC_DEFINE(PRINTF_HAS_LONG_LONG)
266 AC_MSG_RESULT($gdb_cv_printf_has_long_long)
268 dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
269 dnl because autoconf complains about cross-compilation issues. However, this
270 dnl code uses the same variables as the macro for compatibility.
272 AC_MSG_CHECKING(for long double support in compiler)
273 AC_CACHE_VAL(ac_cv_c_long_double,
274 [AC_TRY_COMPILE(, [long double foo;],
275 ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
276 AC_MSG_RESULT($ac_cv_c_long_double)
277 if test $ac_cv_c_long_double = yes; then
278 AC_DEFINE(HAVE_LONG_DOUBLE)
281 dnl See if the compiler and runtime support printing long doubles
283 AC_MSG_CHECKING(for long double support in printf)
284 AC_CACHE_VAL(gdb_cv_printf_has_long_double,
288 long double f = 3.141592653;
289 sprintf (buf, "%Lg", f);
290 return (strncmp ("3.14159", buf, 7));
292 gdb_cv_printf_has_long_double=yes,
293 gdb_cv_printf_has_long_double=no,
294 gdb_cv_printf_has_long_double=no)])
295 if test $gdb_cv_printf_has_long_double = yes; then
296 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
298 AC_MSG_RESULT($gdb_cv_printf_has_long_double)
300 dnl See if the compiler and runtime support scanning long doubles
302 AC_MSG_CHECKING(for long double support in scanf)
303 AC_CACHE_VAL(gdb_cv_scanf_has_long_double,
306 char *buf = "3.141592653";
308 sscanf (buf, "%Lg", &f);
309 return !(f > 3.14159 && f < 3.14160);
311 gdb_cv_scanf_has_long_double=yes,
312 gdb_cv_scanf_has_long_double=no,
313 gdb_cv_scanf_has_long_double=no)])
314 if test $gdb_cv_scanf_has_long_double = yes; then
315 AC_DEFINE(SCANF_HAS_LONG_DOUBLE)
317 AC_MSG_RESULT($gdb_cv_scanf_has_long_double)
321 dnl See if thread_db library is around for Solaris thread debugging. Note that
322 dnl we must explicitly test for version 1 of the library because version 0
323 dnl (present on Solaris 2.4 or earlier) doesn't have the same API.
325 dnl Note that we only want this if we are both native (host == target), and
326 dnl not doing a canadian cross build (build == host).
328 if test ${build} = ${host} -a ${host} = ${target} ; then
331 AC_MSG_CHECKING(for HPUX/OSF thread support)
332 if test -f /usr/include/dce/cma_config.h ; then
333 if test "$GCC" = "yes" ; then
335 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
336 CONFIG_OBS="${CONFIG_OJS} hpux-thread.o"
337 CONFIG_SRCS="${CONFIG_SRCS} hpux-thread.c"
339 AC_MSG_RESULT(no (suppressed because you are not using GCC))
346 AC_MSG_CHECKING(for Solaris thread debugging library)
347 if test -f /usr/lib/libthread_db.so.1 ; then
349 AC_DEFINE(HAVE_THREAD_DB_LIB)
350 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
351 CONFIG_SRCS="${CONFIG_SRCS} sol-thread.c"
352 AC_CHECK_LIB(dl, dlopen)
353 if test "$GCC" = "yes" ; then
354 # The GNU linker requires the -export-dynamic option to make
355 # all symbols visible in the dynamic symbol table.
356 hold_ldflags=$LDFLAGS
357 AC_MSG_CHECKING(for the ld -export-dynamic flag)
358 LDFLAGS="${LDFLAGS} -Wl,-export-dynamic"
359 AC_TRY_LINK(, [int i;], found=yes, found=no)
360 LDFLAGS=$hold_ldflags
361 AC_MSG_RESULT($found)
362 if test $found = yes; then
363 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Wl,-export-dynamic"
366 # Sun randomly tweaked the prototypes in <proc_service.h>
368 AC_MSG_CHECKING(if <proc_service.h> is old)
369 AC_CACHE_VAL(gdb_cv_proc_service_is_old,[
371 #include <proc_service.h>
373 (struct ps_prochandle*, psaddr_t, const void*, size_t);
374 ],, gdb_cv_proc_service_is_old=no,
375 gdb_cv_proc_service_is_old=yes)
377 AC_MSG_RESULT($gdb_cv_proc_service_is_old)
378 if test $gdb_cv_proc_service_is_old = yes; then
379 AC_DEFINE(PROC_SERVICE_IS_OLD)
386 AC_SUBST(CONFIG_LDFLAGS)
389 dnl Handle optional features that can be enabled.
391 dnl Handle MI sub-directory configury.
393 [ --enable-gdbmi Enable GDB-MI interface],
395 case "${enable_gdbmi}" in
397 "") enable_gdbmi=yes ;;
399 AC_MSG_ERROR(Bad value for --enable-gdbmi: ${enableval})
403 case ${enable_gdbmi} in
405 if test -d "${srcdir}/mi" ; then
406 CONFIG_OBS="${CONFIG_OBS} \$(SUBDIR_MI_OBS)"
407 CONFIG_DEPS="${CONFIG_DEPS} \$(SUBDIR_MI_DEPS)"
408 CONFIG_SRCS="${CONFIG_SRS} \$(SUBDIR_MI_SRCS)"
409 CONFIG_INITS="${CONFIG_INITS} \$(SUBDIR_MI_INITS)"
410 ENABLE_CFLAGS="${ENABLE_CFLAGS} \$(SUBDIR_MI_CFLAGS)"
411 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_MI_ALL)"
412 CONFIG_CLEAN="${CONFIG_CLEAN} \$(SUBDIR_MI_CLEAN)"
413 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_MI_INSTALL)"
414 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_MI_UNINSTALL)"
420 [ --enable-tui Enable full-screen terminal user interface],
422 case "${enable_tui}" in
424 "") enable_tui=yes ;;
426 AC_MSG_ERROR(Bad value for --enable-tui: ${enableval})
430 case ${enable_tui} in
434 TUI_LIBRARY=tui/libtui.a
442 AC_SUBST(TUI_LIBRARY)
444 AC_ARG_ENABLE(netrom,
445 [ --enable-netrom Enable NetROM support],
446 [case "${enableval}" in
447 yes) enable_netrom=yes ;;
448 no) enable_netrom=no ;;
449 *) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
452 if test "${enable_netrom}" = "yes"; then
453 CONFIG_OBS="${CONFIG_OBS} remote-nrom.o"
454 CONFIG_SRCS="${CONFIG_SRCS} remote-nrom.c"
457 AC_ARG_ENABLE(build-warnings,
458 [ --enable-build-warnings Enable build-time compiler warnings if gcc is used],
460 # not yet: -Wall -Wpointer-arith -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations
461 build_warnings="-Wimplicit -Wreturn-type -Wcomment -Wtrigraphs -Wformat -Wparentheses -Wpointer-arith"
462 case "${enableval}" in
464 no) build_warnings="-w";;
465 ,*) t=`echo "${enableval}" | sed -e "s/,/ /g"`
466 build_warnings="${build_warnings} ${t}";;
467 *,) t=`echo "${enableval}" | sed -e "s/,/ /g"`
468 build_warnings="${t} ${build_warnings}";;
469 *) build_warnings=`echo "${enableval}" | sed -e "s/,/ /g"`;;
471 if test x"$silent" != x"yes" && test x"$build_warnings" != x""; then
472 echo "Setting warning flags = $build_warnings" 6>&1
476 if test "x${build_warnings}" != x -a "x$GCC" = xyes
478 # Separate out the -Werror flag as some files just cannot be
479 # compiled with it enabled.
480 for w in ${build_warnings}; do
482 -Werr*) WERROR_CFLAGS=-Werror ;;
483 *) WARN_CFLAGS="${WARN_CFLAGS} $w"
486 fi],[build_warnings=""])dnl
488 AC_SUBST(WARN_CFLAGS)
489 AC_SUBST(WERROR_CFLAGS)
493 AC_SUBST(MMALLOC_CFLAGS)
497 [ --with-mmalloc Use memory mapped malloc package],
498 [case "${withval}" in
499 yes) want_mmalloc=true ;;
500 no) want_mmalloc=false;;
501 *) AC_MSG_ERROR(bad value ${withval} for GDB with-mmalloc option) ;;
502 esac],[want_mmalloc=false])dnl
504 if test x$want_mmalloc = xtrue; then
505 AC_DEFINE(USE_MMALLOC)
506 AC_DEFINE(MMCHECK_FORCE)
507 MMALLOC_CFLAGS="-I$srcdir/../mmalloc"
508 MMALLOC='../mmalloc/libmmalloc.a'
511 AC_ARG_WITH(included-regex,
512 [ --with-included-regex Use included regex],
513 [case "${withval}" in
514 yes) want_included_regex=true ;;
515 no) want_included_regex=false;;
516 *) AC_MSG_ERROR(bad value ${withval} for GDB with-included-regex option) ;;
517 esac],[want_included_regex=true])dnl
520 REGEX_CFLAGS="-DUSE_INCLUDED_REGEX"
521 if test $want_included_regex = false; then
522 AC_MSG_CHECKING(for GNU regex)
523 AC_CACHE_VAL(gdb_cv_have_gnu_regex,
524 [AC_TRY_COMPILE([#include <gnu-versions.h>
525 #include <sys/types.h>
527 [#if !defined _GNU_REGEX_INTERFACE_VERSION || !defined __GLIBC__ || __GLIBC__ < 2
528 #error No valid GNU regex.
531 [gdb_cv_have_gnu_regex=yes],
532 [gdb_cv_have_gnu_regex=no])])
533 AC_MSG_RESULT($gdb_cv_have_gnu_regex)
534 if test $gdb_cv_have_gnu_regex = yes; then
540 AC_SUBST(REGEX_CFLAGS)
542 # In the Cygwin environment, we need some additional flags.
543 AC_CACHE_CHECK([for cygwin], gdb_cv_os_cygwin,
544 [AC_EGREP_CPP(lose, [
545 #if defined (__CYGWIN__) || defined (__CYGWIN32__)
547 #endif],[gdb_cv_os_cygwin=yes],[gdb_cv_os_cygwin=no])])
549 DLLTOOL=${DLLTOOL-dlltool}
550 WINDRES=${WINDRES-windres}
554 dnl Figure out which term library to use.
555 if test x$gdb_host = xgo32; then
558 if test x$gdb_cv_os_cygwin = xyes; then
559 TERM_LIB='`if test -r ../libtermcap/libtermcap.a; then echo ../libtermcap/libtermcap.a; else echo -ltermcap; fi`'
562 AC_CHECK_LIB(ncurses, tgetent, TERM_LIB=-lncurses,
563 AC_CHECK_LIB(Hcurses, tgetent, TERM_LIB=-lHcurses,
564 AC_CHECK_LIB(termlib, tgetent, TERM_LIB=-ltermlib,
565 AC_CHECK_LIB(termcap, tgetent, TERM_LIB=-ltermcap,
566 AC_CHECK_LIB(curses, tgetent, TERM_LIB=-lcurses,
567 AC_CHECK_LIB(terminfo, tgetent, TERM_LIB=-lterminfo))))))
569 if test "x$TERM_LIB" = x
571 AC_MSG_ERROR(Could not find a term library, e.g. termcap or termlib!)
577 # libreadline needs libuser32.a in a cygwin environment
579 if test x$gdb_cv_os_cygwin = xyes; then
582 *cygwin*) WIN32LIBS="$WIN32LIBS -limagehlp"
588 LIBGUI="../libgui/src/libgui.a"
589 GUI_CFLAGS_X="-I${srcdir}/../libgui/src"
591 AC_SUBST(GUI_CFLAGS_X)
594 [ --with-cpu=CPU Set the default CPU variant to debug],
596 powerpc-* | powerpcle-* )
597 ## It would be nice to keep this table in sync with the one in
599 case "${with_cpu}" in
600 ppc-uisa | rs6000 | 403 | 403GC | 505 | 860 | 601 | 602 | 603 \
602 ## Those are all handled in variants in rs6000-tdep.c, so they're fine.
604 common | power | power2 | rios | rios1 | rios2 | rsc | rsc1 )
605 ## These are all RS6000 variants, as far as GDB is concerned.
615 AC_MSG_WARN(GDB: unknown --with-cpu value: \`${with_cpu}'; using \`ppc-uisa'.)
621 AC_MSG_WARN(GDB may ignore the --with-cpu flag for ${target} targets)
624 AC_DEFINE_UNQUOTED(TARGET_CPU_DEFAULT, "${with_cpu}")
629 [ --enable-gdbtk Enable GDBTK GUI front end],
630 [case "${enableval}" in
634 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
637 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
645 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
648 # Default is on for everything but go32 and Cygwin
653 if test -d "${srcdir}/gdbtk" ; then
667 if test "${enable_gdbtk}" = "yes"; then
670 if test -z "${no_tcl}"; then
674 # If $no_tk is nonempty, then we can't do Tk, and there is no
675 # point to doing Tcl.
676 if test -z "${no_tk}"; then
684 # now look for Itcl library stuff
686 CY_AC_PATH_ITCLCONFIG
687 if test -z "${no_itcl}"; then
688 CY_AC_LOAD_ITCLCONFIG
691 itcldir=../itcl/itcl/win/
694 itcldir=../itcl/itcl/unix/
699 ITCLLIB="${ITCL_BUILD_LIB_SPEC}"
700 ITCL_DEPS="${itcldir}${ITCL_LIB_FILE}"
704 # now look for Itk library stuff
706 if test -z "${no_itcl}"; then
711 itkdir=../itcl/itk/win/
714 itkdir=../itcl/itk/unix/
718 ITKLIB="${ITK_BUILD_LIB_SPEC}"
719 ITK_DEPS="${itkdir}${ITK_LIB_FILE}"
722 # now look for Tix library stuff
724 if test -z "${no_tix}"; then
726 TIXLIB="${TIX_BUILD_LIB_SPEC}"
727 TIX_DEPS="${TIX_BUILD_LOCATION}/${TIX_LIB_FILE}"
730 ENABLE_CFLAGS="$ENABLE_CFLAGS -DGDBTK"
731 # Tcl/Tk 8.1 require -fwritable strings. I don't
732 # know whether 8.2 will or not, but I bet it will.
733 # I don't have to worry about 7.x since we don't support it.
735 if test "$GCC" = "yes"; then
736 if test "$TCL_VERSION" != "8.0" ; then
737 GDBTK_CFLAGS="-fwritable-strings"
741 # Include some libraries that Tcl and Tk want.
742 TCL_LIBS='$(LIBGUI) $(ITCL) $(ITK) $(TIX) $(TK) $(TCL) $(X11_LDFLAGS) $(X11_LIBS)'
743 CONFIG_DEPS='$(LIBGUI) $(ITCL_DEPS) $(ITK_DEPS) $(TIX_DEPS) $(TK_DEPS) $(TCL_DEPS)'
744 # Yes, the ordering seems wrong here. But it isn't.
745 # TK_LIBS is the list of libraries that need to be linked
746 # after Tcl/Tk. Note that this isn't put into LIBS. If it
747 # were in LIBS then any link tests after this point would
748 # try to include things like `$(LIBGUI)', which wouldn't work.
749 GDBTKLIBS="${TCL_LIBS} ${TK_LIBS}"
750 CONFIG_SRCS="${CONFIG_SRCS} gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c"
751 CONFIG_OBS="${CONFIG_OBS} gdbtk.o gdbtk-cmds.o gdbtk-hooks.o gdbtk-varobj.o gdbtk-wrapper.o"
752 CONFIG_INITS="${CONFIG_INITS} gdbtk/generic/gdbtk.c gdbtk/generic/gdbtk-cmds.c gdbtk/generic/gdbtk-hooks.c gdbtk/generic/gdbtk-varobj.c gdbtk/generic/gdbtk-wrapper.c"
753 CONFIG_ALL="${CONFIG_ALL} \$(SUBDIR_GDBTK_ALL)"
754 CONFIG_CLEAN="${CONFIG_ALL} \$(SUBDIR_GDBTK_CLEAN)"
755 CONFIG_INSTALL="${CONFIG_INSTALL} \$(SUBDIR_GDBTK_INSTALL)"
756 CONFIG_UNINSTALL="${CONFIG_UNINSTALL} \$(SUBDIR_GDBTK_UNINSTALL)"
758 if test x$gdb_cv_os_cygwin = xyes; then
759 WIN32LIBS="${WIN32LIBS} -lshell32 -lgdi32 -lcomdlg32 -ladvapi32"
760 WIN32LDAPP="-Wl,--subsystem,console"
761 CONFIG_OBS="${CONFIG_OBS} gdbres.o"
777 AC_SUBST(GDBTK_CFLAGS)
782 # Unlike the sim directory, whether a simulator is linked is controlled by
783 # presence of a SIM= and a SIM_OBS= definition in the target '.mt' file.
784 # This code just checks for a few cases where we'd like to ignore those
785 # definitions, even when they're present in the '.mt' file. These cases
786 # are when --disable-sim is specified, or if the simulator directory is
787 # not part of the soruce tree.
790 [ --enable-sim Link gdb with simulator],
791 [echo "enable_sim = $enable_sim";
792 echo "enableval = ${enableval}";
793 case "${enableval}" in
794 yes) ignore_sim=false ;;
795 no) ignore_sim=true ;;
796 *) ignore_sim=false ;;
800 if test ! -d "${srcdir}/../sim"; then
804 if test "${ignore_sim}" = "true"; then
806 IGNORE_SIM_OBS="SIM_OBS="
813 AC_SUBST(IGNORE_SIM_OBS)
815 AC_SUBST(ENABLE_CFLAGS)
818 AC_SUBST(CONFIG_DEPS)
819 AC_SUBST(CONFIG_SRCS)
820 AC_SUBST(CONFIG_INITS)
822 AC_SUBST(CONFIG_CLEAN)
823 AC_SUBST(CONFIG_INSTALL)
824 AC_SUBST(CONFIG_UNINSTALL)
826 # Begin stuff to support --enable-shared
827 AC_ARG_ENABLE(shared,
828 [ --enable-shared Use shared libraries],
829 [case "${enableval}" in
837 # If we have shared libraries, try to set rpath reasonably.
838 if test "${shared}" = "true"; then
841 HLDFLAGS='-Wl,+s,+b,$(libdir)'
843 *-*-irix5* | *-*-irix6*)
844 HLDFLAGS='-Wl,-rpath,$(libdir)'
848 *-*-linux* | *-pc-linux-gnu*)
849 HLDFLAGS='-Wl,-rpath,$(libdir)'
852 HLDFLAGS='-R $(libdir)'
855 HLDENV='if test -z "$${LD_RUN_PATH}"; then LD_RUN_PATH=$(libdir); else LD_RUN_PATH=$${LD_RUN_PATH}:$(libdir); fi; export LD_RUN_PATH;'
860 # On SunOS, if the linker supports the -rpath option, use it to
861 # prevent ../bfd and ../opcodes from being included in the run time
865 echo 'main () { }' > conftest.c
866 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
867 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
869 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
871 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
873 elif grep 'some text already loaded' conftest.t >/dev/null 2>&1; then
875 elif test "${shared}" = "true"; then
876 HLDFLAGS='-Wl,-rpath=$(libdir)'
878 HLDFLAGS='-Wl,-rpath='
880 rm -f conftest.t conftest.c conftest
885 # End stuff to support --enable-shared
887 # target_subdir is used by the testsuite to find the target libraries.
889 if test "${host}" != "${target}"; then
890 target_subdir="${target_alias}/"
892 AC_SUBST(target_subdir)
895 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
896 if test ! -f ${host_makefile_frag}; then
897 AC_MSG_ERROR("*** Gdb does not support host ${host}")
899 frags="$frags $host_makefile_frag"
901 target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
902 if test ! -f ${target_makefile_frag}; then
903 AC_MSG_ERROR("*** Gdb does not support target ${target}")
905 frags="$frags $target_makefile_frag"
907 AC_SUBST_FILE(host_makefile_frag)
908 AC_SUBST_FILE(target_makefile_frag)
913 s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
914 ' ${host_makefile_frag}`
917 s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
918 ' ${target_makefile_frag}`
920 # these really aren't orthogonal true/false values of the same condition,
921 # but shells are slow enough that I like to reuse the test conditions
923 if test "${target}" = "${host}"; then
925 s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
926 ' ${host_makefile_frag}`
928 # GDBserver is only useful in a "native" enviroment
929 # configdirs=`echo $configdirs | sed 's/gdbserver//'`
933 SUBDIRS="doc testsuite nlm"
934 if test "${enable_multi_ice}" = "yes"; then
935 SUBDIRS="${SUBDIRS} multi-ice"
940 # If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
941 # (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
942 # corresponding links. But we have to remove the xm.h files and tm.h
943 # files anyway, e.g. when switching from "configure host" to
949 if test "${hostfile}" != ""; then
950 files="${files} config/${gdb_host_cpu}/${hostfile}"
951 links="${links} xm.h"
954 if test "${targetfile}" != ""; then
955 files="${files} config/${gdb_target_cpu}/${targetfile}"
956 links="${links} tm.h"
959 if test "${nativefile}" != ""; then
960 files="${files} config/${gdb_host_cpu}/${nativefile}"
961 links="${links} nm.h"
963 # A cross-only configuration.
964 files="${files} config/nm-empty.h"
965 links="${links} nm.h"
969 AC_LINK_FILES($files, $links)
971 dnl Check for exe extension set on certain hosts (e.g. Win32)
974 AC_CONFIG_SUBDIRS($configdirs)
975 AC_OUTPUT(Makefile tui/Makefile .gdbinit:gdbinit.in,
977 dnl Autoconf doesn't provide a mechanism for modifying definitions
978 dnl provided by makefile fragments.
980 if test "${nativefile}" = ""; then
981 sed -e '/^NATDEPFILES[[ ]]*=[[ ]]*/s//# NATDEPFILES=/' \
982 < Makefile > Makefile.tem
983 mv -f Makefile.tem Makefile
987 sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
988 /^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
989 /^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
990 mv -f Makefile.tmp Makefile
994 case x$CONFIG_HEADERS in
1000 gdb_host_cpu=$gdb_host_cpu
1001 gdb_target_cpu=$gdb_target_cpu
1002 nativefile=$nativefile