]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/configure.ac
Remove redundant WIFSTOPPED check
[thirdparty/binutils-gdb.git] / gdb / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
618f726f 2dnl Copyright (C) 2000-2016 Free Software Foundation, Inc.
d6e9fb05
JK
3dnl
4dnl This file is part of GDB.
5dnl
6dnl This program is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
5a0e3bd0 8dnl the Free Software Foundation; either version 3 of the License, or
d6e9fb05
JK
9dnl (at your option) any later version.
10dnl
11dnl This program is distributed in the hope that it will be useful,
12dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14dnl GNU General Public License for more details.
15dnl
16dnl You should have received a copy of the GNU General Public License
5a0e3bd0 17dnl along with this program. If not, see <http://www.gnu.org/licenses/>.
d6e9fb05
JK
18
19dnl Process this file with autoconf to produce a configure script.
20
bec39cab
AC
21AC_PREREQ(2.59)dnl
22
d6e9fb05 23AC_INIT(server.c)
84563040 24AC_CONFIG_HEADER(config.h:config.in)
c9a1864a
YQ
25
26AM_MAINTAINER_MODE
84563040
DJ
27
28AC_PROG_CC
3bc3d82a 29AC_PROG_CXX
fd462a61 30AC_GNU_SOURCE
589bc927 31AC_SYS_LARGEFILE
d6e9fb05
JK
32
33AC_CANONICAL_SYSTEM
84563040 34
d6e9fb05 35AC_PROG_INSTALL
e1d2394b 36AC_CHECK_TOOL(AR, ar)
c971b7fa 37AC_PROG_RANLIB
c906108c 38
dcdb98d2
DJ
39AC_ARG_PROGRAM
40
ee6e2b82 41AC_HEADER_STDC
84563040 42
3bc3d82a
PA
43# See if we are building with C++, and substitute COMPILER.
44GDB_AC_BUILD_WITH_CXX
45
17ef446e 46# Set the 'development' global.
270c9937 47. $srcdir/../../bfd/development.sh
17ef446e
PA
48
49# Enable -lmcheck by default (it provides cheap-enough memory
50# mangling), but turn it off for releases.
51if $development; then
52 libmcheck_default=yes
53else
54 libmcheck_default=no
55fi
56GDB_AC_LIBMCHECK(${libmcheck_default})
57
bd885420
YQ
58ACX_NONCANONICAL_TARGET
59ACX_NONCANONICAL_HOST
60
61c125b9
TT
61# Dependency checking.
62ZW_CREATE_DEPDIR
63ZW_PROG_COMPILER_DEPENDENCIES([CC])
64
c9a1864a
YQ
65# Check for the 'make' the user wants to use.
66AC_CHECK_PROGS(MAKE, make)
61c125b9
TT
67MAKE_IS_GNU=
68case "`$MAKE --version 2>&1 | sed 1q`" in
69 *GNU*)
70 MAKE_IS_GNU=yes
71 ;;
72esac
73AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
74AC_PROG_MAKE_SET
c9a1864a 75
648d586d
JB
76gnulib_extra_configure_args=
77# If large-file support is disabled, make sure gnulib does the same.
78if test "$enable_largefile" = no; then
79gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
80fi
81
c971b7fa
PA
82# Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
83# to find the the source subdir to be configured directly under
84# gdbserver/. We need to build gnulib under some other directory not
85# "gnulib", to avoid the problem of both GDB and GDBserver wanting to
86# build it in the same directory, when building in the source dir.
648d586d
JB
87ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
88 ["$gnulib_extra_configure_args"])
c971b7fa 89
0b04e523
TT
90ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
91
0d62e5e8 92AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
1bd2f0ba 93 proc_service.h sys/procfs.h linux/elf.h dnl
9c232dda 94 fcntl.h signal.h sys/file.h dnl
61ff6e04 95 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
1bd2f0ba 96 netinet/tcp.h arpa/inet.h)
eb0edac8 97AC_FUNC_FORK
4b8b5e72 98AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
84563040 99
3266f10b
TT
100GDB_AC_COMMON
101
eb7aa561
PA
102# Check the return and argument types of ptrace.
103GDB_AC_PTRACE
104
0fb4aa4b
PA
105# Check for UST
106ustlibs=""
107ustinc=""
108
109AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
110 Equivalent to --with-ust-include=PATH/include
111 plus --with-ust-lib=PATH/lib])
112AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
113AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
114
115case $with_ust in
116 no)
117 ustlibs=
118 ustinc=
119 ;;
120 "" | yes)
121 ustlibs=" -lust "
122 ustinc=""
123 ;;
124 *)
125 ustlibs="-L$with_ust/lib -lust"
126 ustinc="-I$with_ust/include "
127 ;;
128esac
129if test "x$with_ust_include" != x; then
130 ustinc="-I$with_ust_include "
131fi
132if test "x$with_ust_lib" != x; then
133 ustlibs="-L$with_ust_lib -lust"
134fi
135
136if test "x$with_ust" != "xno"; then
137 saved_CFLAGS="$CFLAGS"
138 CFLAGS="$CFLAGS $ustinc"
139 AC_MSG_CHECKING([for ust])
140 AC_TRY_COMPILE([
141#define CONFIG_UST_GDB_INTEGRATION
142#include <ust/ust.h>
143 ],[],
144 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
145 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
146 CFLAGS="$saved_CFLAGS"
147fi
148
149# Flags needed for UST
150AC_SUBST(ustlibs)
151AC_SUBST(ustinc)
152
8f13a3ce
MF
153AM_GDB_WARNINGS
154dnl The codebase isn't clean yet with this flag.
155case " $WARN_CFLAGS " in
156*" -Wmissing-prototypes "*)
157 WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
158 ;;
159esac
3bc3d82a 160
10e86dd7
DE
161dnl dladdr is glibc-specific. It is used by thread-db.c but only for
162dnl debugging messages. It lives in -ldl which is handled below so we don't
163dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
164dnl augment LIBS.
165old_LIBS="$LIBS"
166LIBS="$LIBS -ldl"
167AC_CHECK_FUNCS(dladdr)
168LIBS="$old_LIBS"
169
07697489
PA
170libiberty_INIT
171
1bd2f0ba 172AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 173
791c0056
GB
174AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
175
ccbd4912
MK
176AC_CHECK_TYPES(socklen_t, [], [],
177[#include <sys/types.h>
178#include <sys/socket.h>
179])
fb1e4ffc 180
64da5dd5
JB
181case "${target}" in
182 *-android*)
183 # Starting with NDK version 9, <elf.h> actually includes definitions
184 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
185 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
186 # leading to conflicts with the defintions from <linux/elf.h>.
187 # This makes it impossible for us to include both <elf.h> and
188 # <linux/elf.h>, which means that, in practice, we do not have
189 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
190 # Therefore, do not try to auto-detect availability, as it would
191 # get it wrong on this platform.
192 ;;
193 *)
194 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
195 #include <elf.h>
196 )
197esac
8365dcf5 198
c16158bc
JM
199ACX_PKGVERSION([GDB])
200ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
201AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
202AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
203
8838b45e
NS
204# Check for various supplementary target information (beyond the
205# triplet) which might affect the choices in configure.srv.
206case "${target}" in
207changequote(,)dnl
208 i[34567]86-*-linux*)
209changequote([,])dnl
210 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
211 [save_CPPFLAGS="$CPPFLAGS"
212 CPPFLAGS="$CPPFLAGS $CFLAGS"
213 AC_EGREP_CPP([got it], [
214#if __x86_64__
215got it
216#endif
217 ], [gdb_cv_i386_is_x86_64=yes],
218 [gdb_cv_i386_is_x86_64=no])
219 CPPFLAGS="$save_CPPFLAGS"])
220 ;;
9ac544ce
MK
221 m68k-*-*)
222 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
223 [save_CPPFLAGS="$CPPFLAGS"
224 CPPFLAGS="$CPPFLAGS $CFLAGS"
225 AC_EGREP_CPP([got it], [
226#ifdef __mcoldfire__
227got it
228#endif
229 ], [gdb_cv_m68k_is_coldfire=yes],
230 [gdb_cv_m68k_is_coldfire=no])
231 CPPFLAGS="$save_CPPFLAGS"])
232 ;;
8838b45e
NS
233esac
234
7ea81414 235. ${srcdir}/configure.srv
c906108c 236
fb23d554
SDJ
237# Add in the common host objects.
238. ${srcdir}/../common/common.host
239srv_host_obs="$common_host_obs"
240
68070c10
PA
241if test "${srv_mingwce}" = "yes"; then
242 LIBS="$LIBS -lws2"
243elif test "${srv_mingw}" = "yes"; then
12ea4b69 244 LIBS="$LIBS -lws2_32"
ac8c974e
AR
245elif test "${srv_qnx}" = "yes"; then
246 LIBS="$LIBS -lsocket"
8ed54b31
JB
247elif test "${srv_lynxos}" = "yes"; then
248 LIBS="$LIBS -lnetinet"
68070c10
PA
249fi
250
251if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
252 AC_DEFINE(USE_WIN32API, 1,
253 [Define if we should use the Windows API, instead of the
254 POSIX API. On Windows, we use the Windows API when
255 building for MinGW, but the POSIX API when building
256 for Cygwin.])
257fi
258
58caa3dc 259if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
260 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
261 [Define if the target supports PTRACE_PEEKUSR for register ]
262 [access.])
58caa3dc
DJ
263fi
264
265if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
266 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
267 [Define if the target supports register sets.])
268
58caa3dc
DJ
269 AC_MSG_CHECKING(for PTRACE_GETREGS)
270 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
271 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
272 [PTRACE_GETREGS;],
273 [gdbsrv_cv_have_ptrace_getregs=yes],
274 [gdbsrv_cv_have_ptrace_getregs=no])])
275 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
276 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 277 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
278 [Define if the target supports PTRACE_GETREGS for register ]
279 [access.])
58caa3dc
DJ
280 fi
281
282 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
283 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
284 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
285 [PTRACE_GETFPXREGS;],
286 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
287 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
288 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
289 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
290 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
291 [Define if the target supports PTRACE_GETFPXREGS for extended ]
292 [register access.])
58caa3dc
DJ
293 fi
294fi
295
9accd112
MM
296if test "${srv_linux_btrace}" = "yes"; then
297 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
298 [Define if the target supports branch tracing.])
299fi
300
0d62e5e8
DJ
301if test "$ac_cv_header_sys_procfs_h" = yes; then
302 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
303 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
304 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
1041a03c 305 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
306 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
307fi
308
18f5fd81
TJB
309dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
310if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
311 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
312fi
313
314dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
315if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
316 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
317fi
318
193f13e6
MK
319dnl Check for libdl, but do not add it to LIBS as only gdbserver
320dnl needs it (and gdbreplay doesn't).
321old_LIBS="$LIBS"
322AC_CHECK_LIB(dl, dlopen)
323LIBS="$old_LIBS"
324
0d62e5e8
DJ
325srv_thread_depfiles=
326srv_libs=
0d62e5e8
DJ
327
328if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
329 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
330 srv_libs="-ldl"
f6528abd 331 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 332 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
333 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
334 # supported there.
335 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
336 LDFLAGS="$LDFLAGS $RDYNAMIC"
337 AC_TRY_LINK([], [],
338 [found="-Wl,--dynamic-list"
339 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
340 [RDYNAMIC="-rdynamic"
341 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
342 AC_TRY_LINK([], [],
343 [found="-rdynamic"],
344 [found="no"
345 RDYNAMIC=""])])
193f13e6
MK
346 AC_SUBST(RDYNAMIC)
347 LDFLAGS="$old_LDFLAGS"
f6528abd 348 AC_MSG_RESULT($found)
193f13e6
MK
349 else
350 srv_libs="-lthread_db"
351 fi
0d62e5e8 352
0d62e5e8 353 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 354 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
355 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
356 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
357 [gdbsrv_cv_have_td_version=yes],
358 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
359 if test $gdbsrv_cv_have_td_version = yes; then
360 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
361 fi
0d62e5e8
DJ
362fi
363
96f15937
PP
364AC_ARG_WITH(libthread-db,
365AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
366[srv_libthread_db_path="${withval}"
96f15937
PP
367 srv_libs="$srv_libthread_db_path"
368])
369
193f13e6
MK
370if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
371 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
372fi
373
9b4b61c8 374if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
375 srv_xmlbuiltin="xml-builtin.o"
376 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
377
378 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 379 srv_xmlfiles=""
fb1e4ffc
DJ
380 for f in $tmp_xmlfiles; do
381 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
382 done
383fi
384
fb23d554 385GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 386GDBSERVER_LIBS="$srv_libs"
c906108c 387
fa593d66
PA
388dnl Check whether the target supports __sync_*_compare_and_swap.
389AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
390 gdbsrv_cv_have_sync_builtins, [
391AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
392 gdbsrv_cv_have_sync_builtins=yes,
393 gdbsrv_cv_have_sync_builtins=no)])
394if test $gdbsrv_cv_have_sync_builtins = yes; then
395 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
396 [Define to 1 if the target supports __sync_*_compare_and_swap])
397fi
398
399dnl Check for -fvisibility=hidden support in the compiler.
400saved_cflags="$CFLAGS"
401CFLAGS="$CFLAGS -fvisibility=hidden"
402AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
403 [gdbsrv_cv_have_visibility_hidden=yes],
404 [gdbsrv_cv_have_visibility_hidden=no])
405CFLAGS="$saved_cflags"
406
03583c20
UW
407dnl Check if we can disable the virtual address space randomization.
408dnl The functionality of setarch -R.
409AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
410define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
411# if !HAVE_DECL_ADDR_NO_RANDOMIZE
412# define ADDR_NO_RANDOMIZE 0x0040000
413# endif
414 /* Test the flag could be set and stays set. */
415 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
416 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
417 return 1])])
418AC_RUN_IFELSE([PERSONALITY_TEST],
419 [gdbsrv_cv_have_personality=true],
420 [gdbsrv_cv_have_personality=false],
421 [AC_LINK_IFELSE([PERSONALITY_TEST],
422 [gdbsrv_cv_have_personality=true],
423 [gdbsrv_cv_have_personality=false])])
424if $gdbsrv_cv_have_personality
425then
426 AC_DEFINE([HAVE_PERSONALITY], 1,
427 [Define if you support the personality syscall.])
428fi
429
c2a66c29 430
fa593d66 431IPA_DEPFILES=""
c2a66c29 432extra_libraries=""
fa593d66 433
c2a66c29 434# check whether to enable the inprocess agent
fa593d66
PA
435if test "$ipa_obj" != "" \
436 -a "$gdbsrv_cv_have_sync_builtins" = yes \
437 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
438 have_ipa=true
439else
440 have_ipa=false
441fi
442
443AC_ARG_ENABLE(inprocess-agent,
444AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
445[case "$enableval" in
446 yes) want_ipa=true ;;
447 no) want_ipa=false ;;
448 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
449esac],
450[want_ipa=$have_ipa])
451
452if $want_ipa ; then
453 if $have_ipa ; then
454 IPA_DEPFILES="$ipa_obj"
455 extra_libraries="$extra_libraries libinproctrace.so"
456 else
457 AC_MSG_ERROR([inprocess agent not supported for this target])
458 fi
fa593d66
PA
459fi
460
7ea81414 461AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 462AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
463AC_SUBST(srv_xmlbuiltin)
464AC_SUBST(srv_xmlfiles)
fa593d66
PA
465AC_SUBST(IPA_DEPFILES)
466AC_SUBST(extra_libraries)
c906108c 467
c971b7fa 468GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
469
470GNULIB_STDINT_H=
471if test x"$STDINT_H" != x; then
c971b7fa 472 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
473fi
474AC_SUBST(GNULIB_STDINT_H)
475
1e94266c 476AC_CONFIG_FILES([Makefile],
c3a3ccc7
DJ
477[case x$CONFIG_HEADERS in
478xconfig.h:config.in)
479echo > stamp-h ;;
480esac
481])
1e94266c
SM
482
483AC_OUTPUT