1 dnl Autoconf configure script for GDB server.
2 dnl Copyright (C) 2000-2014 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 3 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, see <http://www.gnu.org/licenses/>.
19 dnl Process this file with autoconf to produce a configure script.
24 AC_CONFIG_HEADER(config.h:config.in)
44 # Set the 'development' global.
45 . $srcdir/../../bfd/development.sh
47 # Enable -lmcheck by default (it provides cheap-enough memory
48 # mangling), but turn it off for releases.
54 GDB_AC_LIBMCHECK(${libmcheck_default})
56 ACX_NONCANONICAL_TARGET
59 # Dependency checking.
61 ZW_PROG_COMPILER_DEPENDENCIES([CC])
63 # Check for the 'make' the user wants to use.
64 AC_CHECK_PROGS(MAKE, make)
66 case "`$MAKE --version 2>&1 | sed 1q`" in
71 AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
74 # Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
75 # to find the the source subdir to be configured directly under
76 # gdbserver/. We need to build gnulib under some other directory not
77 # "gnulib", to avoid the problem of both GDB and GDBserver wanting to
78 # build it in the same directory, when building in the source dir.
79 ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"])
81 ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
83 AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
84 proc_service.h sys/procfs.h linux/elf.h dnl
85 fcntl.h signal.h sys/file.h malloc.h dnl
86 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
87 netinet/tcp.h arpa/inet.h)
88 AC_CHECK_FUNCS(pread pwrite pread64 readlink)
96 AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
97 Equivalent to --with-ust-include=PATH/include
98 plus --with-ust-lib=PATH/lib])
99 AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
100 AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
112 ustlibs="-L$with_ust/lib -lust"
113 ustinc="-I$with_ust/include "
116 if test "x$with_ust_include" != x; then
117 ustinc="-I$with_ust_include "
119 if test "x$with_ust_lib" != x; then
120 ustlibs="-L$with_ust_lib -lust"
123 if test "x$with_ust" != "xno"; then
124 saved_CFLAGS="$CFLAGS"
125 CFLAGS="$CFLAGS $ustinc"
126 AC_MSG_CHECKING([for ust])
128 #define CONFIG_UST_GDB_INTEGRATION
131 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
132 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
133 CFLAGS="$saved_CFLAGS"
136 # Flags needed for UST
140 AC_ARG_ENABLE(werror,
141 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
142 [case "${enableval}" in
143 yes | y) ERROR_ON_WARNING="yes" ;;
144 no | n) ERROR_ON_WARNING="no" ;;
145 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
148 # Enable -Werror by default when using gcc. Turn it off for releases.
149 if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" && $development; then
154 if test "${ERROR_ON_WARNING}" = yes ; then
155 WERROR_CFLAGS="-Werror"
158 build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
159 -Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
162 if test "x$GCC" = xyes
164 AC_MSG_CHECKING(compiler warning flags)
165 # Separate out the -Werror flag as some files just cannot be
166 # compiled with it enabled.
167 for w in ${build_warnings}; do
169 -Werr*) WERROR_CFLAGS=-Werror ;;
170 *) # Check that GCC accepts it
171 saved_CFLAGS="$CFLAGS"
173 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
174 CFLAGS="$saved_CFLAGS"
177 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
179 AC_SUBST(WARN_CFLAGS)
180 AC_SUBST(WERROR_CFLAGS)
182 dnl dladdr is glibc-specific. It is used by thread-db.c but only for
183 dnl debugging messages. It lives in -ldl which is handled below so we don't
184 dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
188 AC_CHECK_FUNCS(dladdr)
191 AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
193 AC_CHECK_TYPES(socklen_t, [], [],
194 [#include <sys/types.h>
195 #include <sys/socket.h>
198 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
202 ACX_PKGVERSION([GDB])
203 ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
204 AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
205 AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
207 # Check for various supplementary target information (beyond the
208 # triplet) which might affect the choices in configure.srv.
213 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
214 [save_CPPFLAGS="$CPPFLAGS"
215 CPPFLAGS="$CPPFLAGS $CFLAGS"
216 AC_EGREP_CPP([got it], [
220 ], [gdb_cv_i386_is_x86_64=yes],
221 [gdb_cv_i386_is_x86_64=no])
222 CPPFLAGS="$save_CPPFLAGS"])
225 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
226 [save_CPPFLAGS="$CPPFLAGS"
227 CPPFLAGS="$CPPFLAGS $CFLAGS"
228 AC_EGREP_CPP([got it], [
232 ], [gdb_cv_m68k_is_coldfire=yes],
233 [gdb_cv_m68k_is_coldfire=no])
234 CPPFLAGS="$save_CPPFLAGS"])
238 . ${srcdir}/configure.srv
240 if test "${srv_mingwce}" = "yes"; then
242 elif test "${srv_mingw}" = "yes"; then
243 LIBS="$LIBS -lws2_32"
244 elif test "${srv_qnx}" = "yes"; then
245 LIBS="$LIBS -lsocket"
246 elif test "${srv_lynxos}" = "yes"; then
247 LIBS="$LIBS -lnetinet"
250 if test "${srv_mingw}" = "yes"; then
251 AC_DEFINE(USE_WIN32API, 1,
252 [Define if we should use the Windows API, instead of the
253 POSIX API. On Windows, we use the Windows API when
254 building for MinGW, but the POSIX API when building
258 if test "${srv_linux_usrregs}" = "yes"; then
259 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
260 [Define if the target supports PTRACE_PEEKUSR for register ]
264 if test "${srv_linux_regsets}" = "yes"; then
265 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
266 [Define if the target supports register sets.])
268 AC_MSG_CHECKING(for PTRACE_GETREGS)
269 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
270 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
272 [gdbsrv_cv_have_ptrace_getregs=yes],
273 [gdbsrv_cv_have_ptrace_getregs=no])])
274 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
275 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
276 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
277 [Define if the target supports PTRACE_GETREGS for register ]
281 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
282 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
283 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
284 [PTRACE_GETFPXREGS;],
285 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
286 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
287 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
288 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
289 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
290 [Define if the target supports PTRACE_GETFPXREGS for extended ]
295 if test "${srv_linux_btrace}" = "yes"; then
296 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
297 [Define if the target supports branch tracing.])
300 if test "$ac_cv_header_sys_procfs_h" = yes; then
301 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
302 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
303 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
304 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
307 dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
308 if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
309 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
312 dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
313 if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
314 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
317 dnl Check for libdl, but do not add it to LIBS as only gdbserver
318 dnl needs it (and gdbreplay doesn't).
320 AC_CHECK_LIB(dl, dlopen)
326 if test "$srv_linux_thread_db" = "yes"; then
327 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
329 AC_MSG_CHECKING(for the dynamic export flag)
330 old_LDFLAGS="$LDFLAGS"
331 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
333 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
334 LDFLAGS="$LDFLAGS $RDYNAMIC"
336 [found="-Wl,--dynamic-list"
337 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
338 [RDYNAMIC="-rdynamic"
339 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
345 LDFLAGS="$old_LDFLAGS"
346 AC_MSG_RESULT($found)
348 srv_libs="-lthread_db"
351 srv_thread_depfiles="thread-db.o proc-service.o"
352 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
353 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
354 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
355 [gdbsrv_cv_have_td_version=yes],
356 [gdbsrv_cv_have_td_version=no])])
357 if test $gdbsrv_cv_have_td_version = yes; then
358 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
362 AC_ARG_WITH(libthread-db,
363 AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
364 [srv_libthread_db_path="${withval}"
365 srv_libs="$srv_libthread_db_path"
368 if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
369 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
372 if test "$srv_xmlfiles" != ""; then
373 srv_xmlbuiltin="xml-builtin.o"
374 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
376 tmp_xmlfiles=$srv_xmlfiles
378 for f in $tmp_xmlfiles; do
379 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
383 GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
384 GDBSERVER_LIBS="$srv_libs"
386 dnl Check whether the target supports __sync_*_compare_and_swap.
387 AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
388 gdbsrv_cv_have_sync_builtins, [
389 AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
390 gdbsrv_cv_have_sync_builtins=yes,
391 gdbsrv_cv_have_sync_builtins=no)])
392 if test $gdbsrv_cv_have_sync_builtins = yes; then
393 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
394 [Define to 1 if the target supports __sync_*_compare_and_swap])
397 dnl Check for -fvisibility=hidden support in the compiler.
398 saved_cflags="$CFLAGS"
399 CFLAGS="$CFLAGS -fvisibility=hidden"
400 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
401 [gdbsrv_cv_have_visibility_hidden=yes],
402 [gdbsrv_cv_have_visibility_hidden=no])
403 CFLAGS="$saved_cflags"
405 dnl Check if we can disable the virtual address space randomization.
406 dnl The functionality of setarch -R.
407 AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
408 define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
409 # if !HAVE_DECL_ADDR_NO_RANDOMIZE
410 # define ADDR_NO_RANDOMIZE 0x0040000
412 /* Test the flag could be set and stays set. */
413 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
414 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
416 AC_RUN_IFELSE([PERSONALITY_TEST],
417 [gdbsrv_cv_have_personality=true],
418 [gdbsrv_cv_have_personality=false],
419 [AC_LINK_IFELSE([PERSONALITY_TEST],
420 [gdbsrv_cv_have_personality=true],
421 [gdbsrv_cv_have_personality=false])])
422 if $gdbsrv_cv_have_personality
424 AC_DEFINE([HAVE_PERSONALITY], 1,
425 [Define if you support the personality syscall.])
432 # check whether to enable the inprocess agent
433 if test "$ipa_obj" != "" \
434 -a "$gdbsrv_cv_have_sync_builtins" = yes \
435 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
441 AC_ARG_ENABLE(inprocess-agent,
442 AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
443 [case "$enableval" in
444 yes) want_ipa=true ;;
445 no) want_ipa=false ;;
446 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
448 [want_ipa=$have_ipa])
452 IPA_DEPFILES="$ipa_obj"
453 extra_libraries="$extra_libraries libinproctrace.so"
455 AC_MSG_ERROR([inprocess agent not supported for this target])
459 AC_SUBST(GDBSERVER_DEPFILES)
460 AC_SUBST(GDBSERVER_LIBS)
461 AC_SUBST(srv_xmlbuiltin)
462 AC_SUBST(srv_xmlfiles)
463 AC_SUBST(IPA_DEPFILES)
464 AC_SUBST(extra_libraries)
466 GNULIB=build-gnulib-gdbserver/import
469 if test x"$STDINT_H" != x; then
470 GNULIB_STDINT_H=$GNULIB/$STDINT_H
472 AC_SUBST(GNULIB_STDINT_H)
475 [case x$CONFIG_HEADERS in