1 dnl Autoconf configure script for GDB, the GNU debugger.
2 dnl Copyright 1995, 1996 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)
33 dnl List of object files added by configure.
37 configdirs="doc testsuite"
42 . ${srcdir}/configure.host
44 . ${srcdir}/configure.tgt
51 AC_CHECK_TOOL(RANLIB, ranlib, :)
55 AC_CONFIG_AUX_DIR(`cd $srcdir;pwd`/..)
59 AC_CHECK_HEADERS(limits.h memory.h string.h strings.h unistd.h termios.h termio.h sgtty.h stddef.h stdlib.h sys/procfs.h link.h endian.h objlist.h)
64 AC_CHECK_FUNCS(setpgid sbrk select poll)
66 # If we are configured native on Linux, work around problems with sys/procfs.h
67 if test "${target}" = "${host}"; then
70 AC_DEFINE(START_INFERIOR_TRAPS_EXPECTED,"2")
71 AC_DEFINE(sys_quotactl)
76 AC_MSG_CHECKING([for gregset_t type])
77 AC_CACHE_VAL(gdb_cv_have_gregset_t,
78 [AC_TRY_LINK([#include <sys/procfs.h>],[gregset_t *gregsetp = 0],
79 gdb_cv_have_gregset_t=yes, gdb_cv_have_gregset_t=no)])
80 AC_MSG_RESULT($gdb_cv_have_gregset_t)
81 if test $gdb_cv_have_gregset_t = yes; then
82 AC_DEFINE(HAVE_GREGSET_T)
85 AC_MSG_CHECKING([for fpregset_t type])
86 AC_CACHE_VAL(gdb_cv_have_fpregset_t,
87 [AC_TRY_LINK([#include <sys/procfs.h>],[fpregset_t *fpregsetp = 0],
88 gdb_cv_have_fpregset_t=yes, gdb_cv_have_fpregset_t=no)])
89 AC_MSG_RESULT($gdb_cv_have_fpregset_t)
90 if test $gdb_cv_have_fpregset_t = yes; then
91 AC_DEFINE(HAVE_FPREGSET_T)
94 dnl See if host has libm. This is usually needed by simulators.
97 dnl See if compiler supports "long long" type.
99 AC_MSG_CHECKING(for long long support in compiler)
100 AC_CACHE_VAL(gdb_cv_c_long_long,
102 extern long long foo;
103 switch (foo & 2) { case 0: return 1; }
105 gdb_cv_c_long_long=yes, gdb_cv_c_long_long=no)])
106 AC_MSG_RESULT($gdb_cv_c_long_long)
107 if test $gdb_cv_c_long_long = yes; then
108 AC_DEFINE(CC_HAS_LONG_LONG)
111 dnl See if the compiler and runtime support printing long long
113 AC_MSG_CHECKING(for long long support in printf)
114 AC_CACHE_VAL(gdb_cv_printf_has_long_long,
118 long long l = 0x12345;
119 sprintf (buf, "%llx", l);
120 return (strcmp ("12345", buf));
122 gdb_cv_printf_has_long_long=yes,
123 gdb_cv_printf_has_long_long=no,
124 gdb_cv_printf_has_long_long=no)])
125 if test $gdb_cv_printf_has_long_long = yes; then
126 AC_DEFINE(PRINTF_HAS_LONG_LONG)
128 AC_MSG_RESULT($gdb_cv_printf_has_long_long)
130 dnl See if compiler supports "long double" type. Can't use AC_C_LONG_DOUBLE
131 dnl because autoconf complains about cross-compilation issues. However, this
132 dnl code uses the same variables as the macro for compatibility.
134 AC_MSG_CHECKING(for long double support in compiler)
135 AC_CACHE_VAL(ac_cv_c_long_double,
136 [AC_TRY_COMPILE(, [long double foo;],
137 ac_cv_c_long_double=yes, ac_cv_c_long_double=no)])
138 AC_MSG_RESULT($ac_cv_c_long_double)
139 if test $ac_cv_c_long_double = yes; then
140 AC_DEFINE(HAVE_LONG_DOUBLE)
143 dnl See if the compiler and runtime support printing long doubles
145 AC_MSG_CHECKING(for long double support in printf)
146 AC_CACHE_VAL(gdb_cv_printf_has_long_double,
150 long double f = 3.141592653;
151 sprintf (buf, "%Lg", f);
152 return (strncmp ("3.14159", buf, 7));
154 gdb_cv_printf_has_long_double=yes,
155 gdb_cv_printf_has_long_double=no,
156 gdb_cv_printf_has_long_double=no)])
157 if test $gdb_cv_printf_has_long_double = yes; then
158 AC_DEFINE(PRINTF_HAS_LONG_DOUBLE)
160 AC_MSG_RESULT($gdb_cv_printf_has_long_double)
164 BFD_NEED_DECLARATION(malloc)
165 BFD_NEED_DECLARATION(realloc)
166 BFD_NEED_DECLARATION(free)
168 dnl See if thread_db library is around for Solaris thread debugging. Note that
169 dnl we must explicitly test for version 1 of the library because version 0
170 dnl (present on Solaris 2.4 or earlier) doesn't have the same API.
172 dnl Note that we only want this if we are both native (host == target), and
173 dnl not doing a canadian cross build (build == host).
175 if test ${build} = ${host} -a ${host} = ${target} ; then
178 AC_MSG_CHECKING(for HPUX/OSF thread support)
179 if test -f /usr/include/dce/cma_config.h ; then
181 AC_DEFINE(HAVE_HPUX_THREAD_SUPPORT)
182 CONFIG_OBS="${CONFIG_OJS} hpux-thread.o"
188 AC_MSG_CHECKING(for Solaris thread debugging library)
189 if test -f /usr/lib/libthread_db.so.1 ; then
191 AC_DEFINE(HAVE_THREAD_DB_LIB)
192 CONFIG_OBS="${CONFIG_OBS} sol-thread.o"
193 AC_CHECK_LIB(dl, dlopen)
194 if test "$GCC" = "yes" ; then
195 CONFIG_LDFLAGS="${CONFIG_LDFLAGS} -Xlinker -export-dynamic"
202 AC_SUBST(CONFIG_LDFLAGS)
205 dnl Handle optional features that can be enabled.
208 AC_ARG_ENABLE(netrom,
210 [case "${enableval}" in
211 yes) enable_netrom=yes ;;
212 no) enable_netrom=no ;;
213 *) AC_MSG_ERROR(bad value ${enableval} given for netrom option) ;;
216 if test "${enable_netrom}" = "yes"; then
217 CONFIG_OBS="${CONFIG_OBS} remote-nrom.o"
225 [case "${enableval}" in
226 yes) CONFIG_OBS="${CONFIG_OBS} gmagic.o"
227 ENABLE_CFLAGS=-DGENERAL_MAGIC
230 *) AC_MSG_ERROR(bad value ${enableval} given for gm option) ;;
235 AC_ARG_ENABLE(sim-powerpc,
236 [ --enable-sim-powerpc ],
237 [case "${enableval}" in
238 yes) powerpc_sim=yes ;;
239 no) powerpc_sim=no ;;
240 *) AC_MSG_ERROR(bad value ${enableval} given for sim-powerpc option) ;;
241 esac],[if test x"$GCC" != x""; then powerpc_sim=yes; else powerpc_sim=no; fi])
243 # start-sanitize-gdbtk
248 [case "${enableval}" in
252 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
254 *cygwin32* | *windows*)
255 AC_MSG_WARN([GDB does not support GDBtk on host ${host}. GDBtk will be disabled.])
263 AC_MSG_ERROR(bad value ${enableval} given for gdbtk option) ;;
266 # Default is on for everything but go32 and cygwin32
268 *go32* | *cygwin32* | *windows*)
275 if test "${enable_gdbtk}" = "yes"; then
278 if test -z "${no_tcl}"; then
282 # If $no_tk is nonempty, then we can't do Tk, and there is no
283 # point to doing Tcl.
284 if test -z "${no_tk}"; then
291 # Include some libraries that Tcl and Tk want.
292 TCL_LIBS='$(TCL) $(TK) $(X11_LDFLAGS) $(X11_LIBS)'
293 LIBS="${LIBS} ${TCL_LIBS} ${TK_LIBS}"
294 CONFIG_OBS="${CONFIG_OBS} gdbtk.o"
299 AC_SUBST(ENABLE_GDBTK)
305 AC_SUBST(ENABLE_CFLAGS)
309 # Begin stuff to support --enable-shared
310 AC_ARG_ENABLE(shared,
311 [ --enable-shared use shared libraries],
312 [case "${enableval}" in
320 # If we have shared libraries, try to set rpath reasonably.
321 if test "${shared}" = "true"; then
324 HLDFLAGS='-Wl,+s,+b,$(libdir)'
326 *-*-irix5* | *-*-irix6*)
327 HLDFLAGS='-Wl,-rpath,$(libdir)'
331 *-*-linux* | *-pc-linux-gnu)
332 HLDFLAGS='-Wl,-rpath,$(libdir)'
335 HLDFLAGS='-R $(libdir)'
338 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;'
343 # On SunOS, if the linker supports the -rpath option, use it to
344 # prevent ../bfd and ../opcodes from being included in the run time
348 echo 'main () { }' > conftest.c
349 ${CC} -o conftest -Wl,-rpath= conftest.c >/dev/null 2>conftest.t
350 if grep 'unrecognized' conftest.t >/dev/null 2>&1; then
352 elif grep 'No such file' conftest.t >/dev/null 2>&1; then
354 elif grep 'do not mix' conftest.t >/dev/null 2>&1; then
356 elif grep 'some text already loaded' conftest.t >/dev/null 2>&1; then
358 elif test "${shared}" = "true"; then
359 HLDFLAGS='-Wl,-rpath=$(libdir)'
361 HLDFLAGS='-Wl,-rpath='
363 rm -f conftest.t conftest.c conftest
368 # End stuff to support --enable-shared
370 # target_subdir is used by the testsuite to find the target libraries.
372 if test "${host}" != "${target}"; then
373 target_subdir="${target_alias}/"
375 AC_SUBST(target_subdir)
378 host_makefile_frag=${srcdir}/config/${gdb_host_cpu}/${gdb_host}.mh
379 if test ! -f ${host_makefile_frag}; then
380 AC_MSG_ERROR("*** Gdb does not support host ${host}")
382 frags="$frags $host_makefile_frag"
384 target_makefile_frag=${srcdir}/config/${gdb_target_cpu}/${gdb_target}.mt
385 if test ! -f ${target_makefile_frag}; then
386 AC_MSG_ERROR("*** Gdb does not support target ${target}")
388 frags="$frags $target_makefile_frag"
390 AC_SUBST_FILE(host_makefile_frag)
391 AC_SUBST_FILE(target_makefile_frag)
396 s/XM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
397 ' ${host_makefile_frag}`
400 s/TM_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
401 ' ${target_makefile_frag}`
403 # these really aren't orthogonal true/false values of the same condition,
404 # but shells are slow enough that I like to reuse the test conditions
406 if test "${target}" = "${host}"; then
408 s/NAT_FILE[ ]*=[ ]*\([^ ]*\)/\1/p
409 ' ${host_makefile_frag}`
411 # GDBserver is only useful in a "native" enviroment
412 configdirs=`echo $configdirs | sed 's/gdbserver//'`
416 # If hostfile (XM_FILE) and/or targetfile (TM_FILE) and/or nativefile
417 # (NAT_FILE) is not set in config/*/*.m[ht] files, we don't make the
418 # corresponding links. But we have to remove the xm.h files and tm.h
419 # files anyway, e.g. when switching from "configure host" to
425 if test "${hostfile}" != ""; then
426 files="${files} config/${gdb_host_cpu}/${hostfile}"
427 links="${links} xm.h"
430 if test "${targetfile}" != ""; then
431 files="${files} config/${gdb_target_cpu}/${targetfile}"
432 links="${links} tm.h"
435 if test "${nativefile}" != ""; then
436 files="${files} config/${gdb_host_cpu}/${nativefile}"
437 links="${links} nm.h"
439 # A cross-only configuration.
440 files="${files} config/nm-empty.h"
441 links="${links} nm.h"
443 # start-sanitize-gdbtk
445 # Make it possible to use the GUI without doing a full install
446 if test "${enable_gdbtk}" = "yes" -a ! -f gdbtk.tcl ; then
447 files="${files} gdbtk.tcl"
448 links="${links} gdbtk.tcl"
452 AC_LINK_FILES($files, $links)
454 AC_CONFIG_SUBDIRS($configdirs)
457 dnl Autoconf doesn't provide a mechanism for modifying definitions
458 dnl provided by makefile fragments.
460 if test "${nativefile}" = ""; then
461 sed -e '/^NATDEPFILES[[ ]]*=[[ ]]*/s//# NATDEPFILES=/' \
462 < Makefile > Makefile.tem
463 mv -f Makefile.tem Makefile
467 sed -e '/^TM_FILE[ ]*=/s,^TM_FILE[ ]*=[ ]*,&config/'"${gdb_target_cpu}"'/,
468 /^XM_FILE[ ]*=/s,^XM_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,
469 /^NAT_FILE[ ]*=/s,^NAT_FILE[ ]*=[ ]*,&config/'"${gdb_host_cpu}"'/,' <Makefile >Makefile.tmp
470 mv -f Makefile.tmp Makefile
477 grep "source ${srcdir}/.gdbinit" .gdbinit >/dev/null 2>/dev/null || \
478 echo "source ${srcdir}/.gdbinit" >> .gdbinit
481 case x$CONFIG_HEADERS in
487 gdb_host_cpu=$gdb_host_cpu
488 gdb_target_cpu=$gdb_target_cpu
489 nativefile=$nativefile