1 dnl Autoconf configure script for GDB server.
2 dnl Copyright (C) 2000-2016 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)
41 # We require a C++11 compiler. Check if one is available, and if
42 # necessary, set CXX_DIALECT to some -std=xxx switch.
43 AX_CXX_COMPILE_STDCXX(11, , mandatory)
47 # Set the 'development' global.
48 . $srcdir/../../bfd/development.sh
50 # Enable -lmcheck by default (it provides cheap-enough memory
51 # mangling), but turn it off for releases.
57 GDB_AC_LIBMCHECK(${libmcheck_default})
59 ACX_NONCANONICAL_TARGET
62 # Dependency checking.
64 ZW_PROG_COMPILER_DEPENDENCIES([CC])
66 # Check for the 'make' the user wants to use.
67 AC_CHECK_PROGS(MAKE, make)
69 case "`$MAKE --version 2>&1 | sed 1q`" in
74 AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
77 gnulib_extra_configure_args=
78 # If large-file support is disabled, make sure gnulib does the same.
79 if test "$enable_largefile" = no; then
80 gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
83 # Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
84 # to find the the source subdir to be configured directly under
85 # gdbserver/. We need to build gnulib under some other directory not
86 # "gnulib", to avoid the problem of both GDB and GDBserver wanting to
87 # build it in the same directory, when building in the source dir.
88 ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
89 ["$gnulib_extra_configure_args"])
91 ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
93 AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
94 proc_service.h sys/procfs.h linux/elf.h dnl
95 fcntl.h signal.h sys/file.h dnl
96 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
97 netinet/tcp.h arpa/inet.h)
99 AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
103 # Check the return and argument types of ptrace.
110 AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
111 Equivalent to --with-ust-include=PATH/include
112 plus --with-ust-lib=PATH/lib])
113 AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
114 AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
126 ustlibs="-L$with_ust/lib -lust"
127 ustinc="-I$with_ust/include "
130 if test "x$with_ust_include" != x; then
131 ustinc="-I$with_ust_include "
133 if test "x$with_ust_lib" != x; then
134 ustlibs="-L$with_ust_lib -lust"
137 if test "x$with_ust" != "xno"; then
138 saved_CFLAGS="$CFLAGS"
139 CFLAGS="$CFLAGS $ustinc"
140 AC_MSG_CHECKING([for ust])
142 #define CONFIG_UST_GDB_INTEGRATION
145 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
146 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
147 CFLAGS="$saved_CFLAGS"
150 # Flags needed for UST
155 dnl The codebase isn't clean yet with this flag.
156 case " $WARN_CFLAGS " in
157 *" -Wmissing-prototypes "*)
158 WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
162 dnl dladdr is glibc-specific. It is used by thread-db.c but only for
163 dnl debugging messages. It lives in -ldl which is handled below so we don't
164 dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
168 AC_CHECK_FUNCS(dladdr)
173 AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
175 AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
177 AC_CHECK_TYPES(socklen_t, [], [],
178 [#include <sys/types.h>
179 #include <sys/socket.h>
184 # Starting with NDK version 9, <elf.h> actually includes definitions
185 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
186 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
187 # leading to conflicts with the defintions from <linux/elf.h>.
188 # This makes it impossible for us to include both <elf.h> and
189 # <linux/elf.h>, which means that, in practice, we do not have
190 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
191 # Therefore, do not try to auto-detect availability, as it would
192 # get it wrong on this platform.
195 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
200 ACX_PKGVERSION([GDB])
201 ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
202 AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
203 AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
205 # Check for various supplementary target information (beyond the
206 # triplet) which might affect the choices in configure.srv.
211 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
212 [save_CPPFLAGS="$CPPFLAGS"
213 CPPFLAGS="$CPPFLAGS $CFLAGS"
214 AC_EGREP_CPP([got it], [
218 ], [gdb_cv_i386_is_x86_64=yes],
219 [gdb_cv_i386_is_x86_64=no])
220 CPPFLAGS="$save_CPPFLAGS"])
224 AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
225 [save_CPPFLAGS="$CPPFLAGS"
226 CPPFLAGS="$CPPFLAGS $CFLAGS"
227 AC_EGREP_CPP([got it], [
228 #if __x86_64__ && __ILP32__
231 ], [gdb_cv_x86_is_x32=yes],
232 [gdb_cv_x86_is_x32=no])
233 CPPFLAGS="$save_CPPFLAGS"])
237 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
238 [save_CPPFLAGS="$CPPFLAGS"
239 CPPFLAGS="$CPPFLAGS $CFLAGS"
240 AC_EGREP_CPP([got it], [
244 ], [gdb_cv_m68k_is_coldfire=yes],
245 [gdb_cv_m68k_is_coldfire=no])
246 CPPFLAGS="$save_CPPFLAGS"])
250 . ${srcdir}/configure.srv
252 # Add in the common host objects.
253 . ${srcdir}/../common/common.host
254 srv_host_obs="$common_host_obs"
256 if test "${srv_mingwce}" = "yes"; then
258 elif test "${srv_mingw}" = "yes"; then
259 LIBS="$LIBS -lws2_32"
260 elif test "${srv_qnx}" = "yes"; then
261 LIBS="$LIBS -lsocket"
262 elif test "${srv_lynxos}" = "yes"; then
263 LIBS="$LIBS -lnetinet"
266 if test "${srv_mingw}" = "yes"; then
267 AC_DEFINE(USE_WIN32API, 1,
268 [Define if we should use the Windows API, instead of the
269 POSIX API. On Windows, we use the Windows API when
270 building for MinGW, but the POSIX API when building
274 if test "${srv_linux_usrregs}" = "yes"; then
275 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
276 [Define if the target supports PTRACE_PEEKUSR for register ]
280 if test "${srv_linux_regsets}" = "yes"; then
281 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
282 [Define if the target supports register sets.])
284 AC_MSG_CHECKING(for PTRACE_GETREGS)
285 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
286 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
288 [gdbsrv_cv_have_ptrace_getregs=yes],
289 [gdbsrv_cv_have_ptrace_getregs=no])])
290 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
291 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
292 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
293 [Define if the target supports PTRACE_GETREGS for register ]
297 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
298 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
299 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
300 [PTRACE_GETFPXREGS;],
301 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
302 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
303 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
304 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
305 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
306 [Define if the target supports PTRACE_GETFPXREGS for extended ]
311 if test "${srv_linux_btrace}" = "yes"; then
312 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
313 [Define if the target supports branch tracing.])
316 if test "$ac_cv_header_sys_procfs_h" = yes; then
317 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
318 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
319 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
320 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
321 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
324 dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
325 if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
326 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
329 dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
330 if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
331 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
334 dnl Check for libdl, but do not add it to LIBS as only gdbserver
335 dnl needs it (and gdbreplay doesn't).
337 AC_CHECK_LIB(dl, dlopen)
343 if test "$srv_linux_thread_db" = "yes"; then
344 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
346 AC_MSG_CHECKING(for the dynamic export flag)
347 old_LDFLAGS="$LDFLAGS"
348 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
350 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
351 LDFLAGS="$LDFLAGS $RDYNAMIC"
353 [found="-Wl,--dynamic-list"
354 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
355 [RDYNAMIC="-rdynamic"
356 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
362 LDFLAGS="$old_LDFLAGS"
363 AC_MSG_RESULT($found)
365 srv_libs="-lthread_db"
368 srv_thread_depfiles="thread-db.o proc-service.o"
369 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
370 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
371 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
372 [gdbsrv_cv_have_td_version=yes],
373 [gdbsrv_cv_have_td_version=no])])
374 if test $gdbsrv_cv_have_td_version = yes; then
375 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
379 AC_ARG_WITH(libthread-db,
380 AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
381 [srv_libthread_db_path="${withval}"
382 srv_libs="$srv_libthread_db_path"
385 if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
386 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
389 if test "$srv_xmlfiles" != ""; then
390 srv_xmlbuiltin="xml-builtin.o"
391 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
393 tmp_xmlfiles=$srv_xmlfiles
395 for f in $tmp_xmlfiles; do
396 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
400 GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
401 GDBSERVER_LIBS="$srv_libs"
403 dnl Check whether the target supports __sync_*_compare_and_swap.
404 AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
405 gdbsrv_cv_have_sync_builtins, [
406 AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
407 gdbsrv_cv_have_sync_builtins=yes,
408 gdbsrv_cv_have_sync_builtins=no)])
409 if test $gdbsrv_cv_have_sync_builtins = yes; then
410 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
411 [Define to 1 if the target supports __sync_*_compare_and_swap])
414 dnl Check for -fvisibility=hidden support in the compiler.
415 saved_cflags="$CFLAGS"
416 CFLAGS="$CFLAGS -fvisibility=hidden"
417 AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
418 [gdbsrv_cv_have_visibility_hidden=yes],
419 [gdbsrv_cv_have_visibility_hidden=no])
420 CFLAGS="$saved_cflags"
422 dnl Check if we can disable the virtual address space randomization.
423 dnl The functionality of setarch -R.
424 AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
425 define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
426 # if !HAVE_DECL_ADDR_NO_RANDOMIZE
427 # define ADDR_NO_RANDOMIZE 0x0040000
429 /* Test the flag could be set and stays set. */
430 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
431 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
433 AC_RUN_IFELSE([PERSONALITY_TEST],
434 [gdbsrv_cv_have_personality=true],
435 [gdbsrv_cv_have_personality=false],
436 [AC_LINK_IFELSE([PERSONALITY_TEST],
437 [gdbsrv_cv_have_personality=true],
438 [gdbsrv_cv_have_personality=false])])
439 if $gdbsrv_cv_have_personality
441 AC_DEFINE([HAVE_PERSONALITY], 1,
442 [Define if you support the personality syscall.])
449 # check whether to enable the inprocess agent
450 if test "$ipa_obj" != "" \
451 -a "$gdbsrv_cv_have_sync_builtins" = yes \
452 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
458 AC_ARG_ENABLE(inprocess-agent,
459 AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
460 [case "$enableval" in
461 yes) want_ipa=true ;;
462 no) want_ipa=false ;;
463 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
465 [want_ipa=$have_ipa])
469 IPA_DEPFILES="$ipa_obj"
470 extra_libraries="$extra_libraries libinproctrace.so"
472 AC_MSG_ERROR([inprocess agent not supported for this target])
476 AC_SUBST(GDBSERVER_DEPFILES)
477 AC_SUBST(GDBSERVER_LIBS)
478 AC_SUBST(srv_xmlbuiltin)
479 AC_SUBST(srv_xmlfiles)
480 AC_SUBST(IPA_DEPFILES)
481 AC_SUBST(extra_libraries)
483 GNULIB=build-gnulib-gdbserver/import
486 if test x"$STDINT_H" != x; then
487 GNULIB_STDINT_H=$GNULIB/$STDINT_H
489 AC_SUBST(GNULIB_STDINT_H)
491 AC_CONFIG_FILES([Makefile],
492 [case x$CONFIG_HEADERS in