1 dnl Autoconf configure script for GDB server.
2 dnl Copyright (C) 2000-2020 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.
22 AC_CONFIG_SRCDIR([server.cc])
23 AC_CONFIG_HEADERS(config.h:config.in, [echo > stamp-h])
29 AC_USE_SYSTEM_EXTENSIONS
33 # Set build, build_cpu, build_vendor and build_os.
36 # Set host, host_cpu, host_vendor, and host_os.
39 # Set target, target_cpu, target_vendor, and target_os.
48 # We require a C++11 compiler. Check if one is available, and if
49 # necessary, set CXX_DIALECT to some -std=xxx switch.
50 AX_CXX_COMPILE_STDCXX(11, , mandatory)
55 # This is set by GDB_AC_COMMON.
56 AC_SUBST(WIN32APILIBS)
60 ACX_NONCANONICAL_TARGET
63 # Dependency checking.
66 dnl Set up for gettext.
67 ZW_GNU_GETTEXT_SISTER_DIR
69 # Create sub-directories for objects and dependencies.
70 CONFIG_SRC_SUBDIR="arch gdbsupport nat target"
71 AC_SUBST(CONFIG_SRC_SUBDIR)
73 AC_CONFIG_COMMANDS([gdbdepdir],[
74 for subdir in ${CONFIG_SRC_SUBDIR}
76 $SHELL $ac_aux_dir/mkinstalldirs $subdir/$DEPDIR
78 [ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR CONFIG_SRC_SUBDIR="$CONFIG_SRC_SUBDIR"])
80 ZW_PROG_COMPILER_DEPENDENCIES([CC])
82 AC_CHECK_HEADERS(termios.h sys/reg.h string.h dnl
83 sys/procfs.h linux/elf.h dnl
84 fcntl.h signal.h sys/file.h dnl
85 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
86 netinet/tcp.h arpa/inet.h ws2tcpip.h)
88 AC_CHECK_FUNCS(pread pwrite pread64)
90 # Check the return and argument types of ptrace.
97 AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
98 Equivalent to --with-ust-include=PATH/include
99 plus --with-ust-lib=PATH/lib])
100 AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
101 AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
113 ustlibs="-L$with_ust/lib -lust"
114 ustinc="-I$with_ust/include "
117 if test "x$with_ust_include" != x; then
118 ustinc="-I$with_ust_include "
120 if test "x$with_ust_lib" != x; then
121 ustlibs="-L$with_ust_lib -lust"
124 if test "x$with_ust" != "xno"; then
125 saved_CFLAGS="$CFLAGS"
126 CFLAGS="$CFLAGS $ustinc"
127 AC_MSG_CHECKING([for ust])
131 #define CONFIG_UST_GDB_INTEGRATION
136 [AC_MSG_RESULT([yes]);
137 AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
141 CFLAGS="$saved_CFLAGS"
144 # Flags needed for UST
150 dnl dladdr is glibc-specific. It is used by thread-db.c but only for
151 dnl debugging messages. It lives in -ldl which is handled below so we don't
152 dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
156 AC_CHECK_FUNCS(dladdr)
161 AC_CHECK_DECLS([perror, vasprintf, vsnprintf])
163 AC_CHECK_TYPES(socklen_t, [], [],
164 [#include <sys/types.h>
165 #if HAVE_SYS_SOCKET_H
166 # include <sys/socket.h>
167 #elif HAVE_WS2TCPIP_H
168 # include <ws2tcpip.h>
174 # Starting with NDK version 9, <elf.h> actually includes definitions
175 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
176 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
177 # leading to conflicts with the defintions from <linux/elf.h>.
178 # This makes it impossible for us to include both <elf.h> and
179 # <linux/elf.h>, which means that, in practice, we do not have
180 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
181 # Therefore, do not try to auto-detect availability, as it would
182 # get it wrong on this platform.
185 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
190 ACX_PKGVERSION([GDB])
191 ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
192 AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
193 AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
195 # Check for various supplementary target information (beyond the
196 # triplet) which might affect the choices in configure.srv.
201 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
202 [save_CPPFLAGS="$CPPFLAGS"
203 CPPFLAGS="$CPPFLAGS $CFLAGS"
204 AC_EGREP_CPP([got it], [
208 ], [gdb_cv_i386_is_x86_64=yes],
209 [gdb_cv_i386_is_x86_64=no])
210 CPPFLAGS="$save_CPPFLAGS"])
214 AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
215 [save_CPPFLAGS="$CPPFLAGS"
216 CPPFLAGS="$CPPFLAGS $CFLAGS"
217 AC_EGREP_CPP([got it], [
218 #if __x86_64__ && __ILP32__
221 ], [gdb_cv_x86_is_x32=yes],
222 [gdb_cv_x86_is_x32=no])
223 CPPFLAGS="$save_CPPFLAGS"])
227 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
228 [save_CPPFLAGS="$CPPFLAGS"
229 CPPFLAGS="$CPPFLAGS $CFLAGS"
230 AC_EGREP_CPP([got it], [
234 ], [gdb_cv_m68k_is_coldfire=yes],
235 [gdb_cv_m68k_is_coldfire=no])
236 CPPFLAGS="$save_CPPFLAGS"])
240 . ${srcdir}/configure.srv
242 if test "${srv_mingwce}" = "yes"; then
244 elif test "${srv_mingw}" = "yes"; then
245 # WIN32APILIBS is set by GDB_AC_COMMON.
246 LIBS="$LIBS $WIN32APILIBS"
249 if test "${srv_linux_usrregs}" = "yes"; then
250 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
251 [Define if the target supports PTRACE_PEEKUSR for register ]
255 if test "${srv_linux_regsets}" = "yes"; then
256 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
257 [Define if the target supports register sets.])
259 AC_MSG_CHECKING(for PTRACE_GETREGS)
261 [gdbsrv_cv_have_ptrace_getregs],
263 [AC_LANG_PROGRAM([#include <sys/ptrace.h>], [PTRACE_GETREGS;])],
264 [gdbsrv_cv_have_ptrace_getregs=yes],
265 [gdbsrv_cv_have_ptrace_getregs=no]
268 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
269 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
270 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
271 [Define if the target supports PTRACE_GETREGS for register ]
275 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
277 [gdbsrv_cv_have_ptrace_getfpxregs],
279 [AC_LANG_PROGRAM([#include <sys/ptrace.h>], [PTRACE_GETFPXREGS;])],
280 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
281 [gdbsrv_cv_have_ptrace_getfpxregs=no]
284 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
285 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
286 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
287 [Define if the target supports PTRACE_GETFPXREGS for extended ]
292 if test "${srv_linux_btrace}" = "yes"; then
293 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
294 [Define if the target supports branch tracing.])
297 dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
298 if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
299 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
302 dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
303 if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
304 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
307 dnl Check for libdl, but do not add it to LIBS as only gdbserver
308 dnl needs it (and gdbreplay doesn't).
310 AC_CHECK_LIB(dl, dlopen)
316 if test "$srv_linux_thread_db" = "yes"; then
317 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
319 AC_MSG_CHECKING(for the dynamic export flag)
320 old_LDFLAGS="$LDFLAGS"
321 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
323 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
324 LDFLAGS="$LDFLAGS $RDYNAMIC"
326 [AC_LANG_PROGRAM([],[])],
327 [found="-Wl,--dynamic-list"
328 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
329 [RDYNAMIC="-rdynamic"
330 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
332 [AC_LANG_PROGRAM([], [])],
339 LDFLAGS="$old_LDFLAGS"
340 AC_MSG_RESULT($found)
342 srv_libs="-lthread_db"
345 srv_thread_depfiles="thread-db.o proc-service.o"
346 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
349 [gdbsrv_cv_have_td_version],
351 [AC_LANG_PROGRAM([#include <thread_db.h>], [TD_VERSION;])],
352 [gdbsrv_cv_have_td_version=yes],
353 [gdbsrv_cv_have_td_version=no]
356 if test "$gdbsrv_cv_have_td_version" = yes; then
357 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
361 AC_ARG_WITH(libthread-db,
362 AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
363 [srv_libthread_db_path="${withval}"
364 srv_libs="$srv_libthread_db_path"
367 if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
368 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
371 if test "$srv_xmlfiles" != ""; then
372 srv_xmlbuiltin="xml-builtin.o"
373 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
375 tmp_xmlfiles=$srv_xmlfiles
377 for f in $tmp_xmlfiles; do
378 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
382 GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
383 GDBSERVER_LIBS="$srv_libs"
385 dnl Check whether the target supports __sync_*_compare_and_swap.
387 [whether the target supports __sync_*_compare_and_swap],
388 [gdbsrv_cv_have_sync_builtins],
393 bar = __sync_val_compare_and_swap(&foo, 0, 1);]
395 [gdbsrv_cv_have_sync_builtins=yes],
396 [gdbsrv_cv_have_sync_builtins=no]
399 if test "$gdbsrv_cv_have_sync_builtins" = yes; then
400 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
401 [Define to 1 if the target supports __sync_*_compare_and_swap])
404 dnl Check for -fvisibility=hidden support in the compiler.
405 saved_cflags="$CFLAGS"
406 CFLAGS="$CFLAGS -fvisibility=hidden"
407 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
408 [gdbsrv_cv_have_visibility_hidden=yes],
409 [gdbsrv_cv_have_visibility_hidden=no])
410 CFLAGS="$saved_cflags"
415 # check whether to enable the inprocess agent
416 if test "$ipa_obj" != "" \
417 -a "$gdbsrv_cv_have_sync_builtins" = yes \
418 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
424 AC_ARG_ENABLE(inprocess-agent,
425 AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
426 [case "$enableval" in
427 yes) want_ipa=true ;;
428 no) want_ipa=false ;;
429 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
431 [want_ipa=$have_ipa])
435 IPA_DEPFILES="$ipa_obj"
436 extra_libraries="$extra_libraries libinproctrace.so"
438 AC_MSG_ERROR([inprocess agent not supported for this target])
442 AC_SUBST(GDBSERVER_DEPFILES)
443 AC_SUBST(GDBSERVER_LIBS)
444 AC_SUBST(srv_xmlbuiltin)
445 AC_SUBST(srv_xmlfiles)
446 AC_SUBST(IPA_DEPFILES)
447 AC_SUBST(extra_libraries)
449 GNULIB=../gnulib/import
452 if test x"$STDINT_H" != x; then
453 GNULIB_STDINT_H=$GNULIB/$STDINT_H
455 AC_SUBST(GNULIB_STDINT_H)
457 AC_CONFIG_FILES([Makefile])