Make gdb.mi/user-selected-context-sync.exp use proc_with_prefix
[deliverable/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
0bcda685
PA
41# We require a C++11 compiler. Check if one is available, and if
42# necessary, set CXX_DIALECT to some -std=xxx switch.
43AX_CXX_COMPILE_STDCXX(11, , mandatory)
44
ee6e2b82 45AC_HEADER_STDC
84563040 46
17ef446e 47# Set the 'development' global.
270c9937 48. $srcdir/../../bfd/development.sh
17ef446e
PA
49
50# Enable -lmcheck by default (it provides cheap-enough memory
51# mangling), but turn it off for releases.
52if $development; then
53 libmcheck_default=yes
54else
55 libmcheck_default=no
56fi
57GDB_AC_LIBMCHECK(${libmcheck_default})
58
bd885420
YQ
59ACX_NONCANONICAL_TARGET
60ACX_NONCANONICAL_HOST
61
61c125b9
TT
62# Dependency checking.
63ZW_CREATE_DEPDIR
64ZW_PROG_COMPILER_DEPENDENCIES([CC])
65
c9a1864a
YQ
66# Check for the 'make' the user wants to use.
67AC_CHECK_PROGS(MAKE, make)
61c125b9
TT
68MAKE_IS_GNU=
69case "`$MAKE --version 2>&1 | sed 1q`" in
70 *GNU*)
71 MAKE_IS_GNU=yes
72 ;;
73esac
74AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
75AC_PROG_MAKE_SET
c9a1864a 76
648d586d
JB
77gnulib_extra_configure_args=
78# If large-file support is disabled, make sure gnulib does the same.
79if test "$enable_largefile" = no; then
80gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
81fi
82
c971b7fa
PA
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.
648d586d
JB
88ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
89 ["$gnulib_extra_configure_args"])
c971b7fa 90
0b04e523
TT
91ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
92
0d62e5e8 93AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
1bd2f0ba 94 proc_service.h sys/procfs.h linux/elf.h dnl
9c232dda 95 fcntl.h signal.h sys/file.h dnl
61ff6e04 96 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
1bd2f0ba 97 netinet/tcp.h arpa/inet.h)
eb0edac8 98AC_FUNC_FORK
4b8b5e72 99AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
84563040 100
3266f10b
TT
101GDB_AC_COMMON
102
eb7aa561
PA
103# Check the return and argument types of ptrace.
104GDB_AC_PTRACE
105
0fb4aa4b
PA
106# Check for UST
107ustlibs=""
108ustinc=""
109
110AC_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])
113AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
114AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
115
116case $with_ust in
117 no)
118 ustlibs=
119 ustinc=
120 ;;
121 "" | yes)
122 ustlibs=" -lust "
123 ustinc=""
124 ;;
125 *)
126 ustlibs="-L$with_ust/lib -lust"
127 ustinc="-I$with_ust/include "
128 ;;
129esac
130if test "x$with_ust_include" != x; then
131 ustinc="-I$with_ust_include "
132fi
133if test "x$with_ust_lib" != x; then
134 ustlibs="-L$with_ust_lib -lust"
135fi
136
137if test "x$with_ust" != "xno"; then
138 saved_CFLAGS="$CFLAGS"
139 CFLAGS="$CFLAGS $ustinc"
140 AC_MSG_CHECKING([for ust])
141 AC_TRY_COMPILE([
142#define CONFIG_UST_GDB_INTEGRATION
143#include <ust/ust.h>
144 ],[],
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"
148fi
149
150# Flags needed for UST
151AC_SUBST(ustlibs)
152AC_SUBST(ustinc)
153
8f13a3ce
MF
154AM_GDB_WARNINGS
155dnl The codebase isn't clean yet with this flag.
156case " $WARN_CFLAGS " in
157*" -Wmissing-prototypes "*)
158 WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
159 ;;
160esac
3bc3d82a 161
10e86dd7
DE
162dnl dladdr is glibc-specific. It is used by thread-db.c but only for
163dnl debugging messages. It lives in -ldl which is handled below so we don't
164dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
165dnl augment LIBS.
166old_LIBS="$LIBS"
167LIBS="$LIBS -ldl"
168AC_CHECK_FUNCS(dladdr)
169LIBS="$old_LIBS"
170
07697489
PA
171libiberty_INIT
172
1bd2f0ba 173AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 174
791c0056
GB
175AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
176
ccbd4912
MK
177AC_CHECK_TYPES(socklen_t, [], [],
178[#include <sys/types.h>
179#include <sys/socket.h>
180])
fb1e4ffc 181
64da5dd5
JB
182case "${target}" in
183 *-android*)
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.
193 ;;
194 *)
195 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
196 #include <elf.h>
197 )
198esac
8365dcf5 199
c16158bc
JM
200ACX_PKGVERSION([GDB])
201ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
202AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
203AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
204
8838b45e
NS
205# Check for various supplementary target information (beyond the
206# triplet) which might affect the choices in configure.srv.
207case "${target}" in
208changequote(,)dnl
209 i[34567]86-*-linux*)
210changequote([,])dnl
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], [
215#if __x86_64__
216got it
217#endif
218 ], [gdb_cv_i386_is_x86_64=yes],
219 [gdb_cv_i386_is_x86_64=no])
220 CPPFLAGS="$save_CPPFLAGS"])
221 ;;
201506da
PA
222
223 x86_64-*-linux*)
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__
229got it
230#endif
231 ], [gdb_cv_x86_is_x32=yes],
232 [gdb_cv_x86_is_x32=no])
233 CPPFLAGS="$save_CPPFLAGS"])
234 ;;
235
9ac544ce
MK
236 m68k-*-*)
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], [
241#ifdef __mcoldfire__
242got it
243#endif
244 ], [gdb_cv_m68k_is_coldfire=yes],
245 [gdb_cv_m68k_is_coldfire=no])
246 CPPFLAGS="$save_CPPFLAGS"])
247 ;;
8838b45e
NS
248esac
249
7ea81414 250. ${srcdir}/configure.srv
c906108c 251
fb23d554
SDJ
252# Add in the common host objects.
253. ${srcdir}/../common/common.host
254srv_host_obs="$common_host_obs"
255
68070c10
PA
256if test "${srv_mingwce}" = "yes"; then
257 LIBS="$LIBS -lws2"
258elif test "${srv_mingw}" = "yes"; then
12ea4b69 259 LIBS="$LIBS -lws2_32"
ac8c974e
AR
260elif test "${srv_qnx}" = "yes"; then
261 LIBS="$LIBS -lsocket"
8ed54b31
JB
262elif test "${srv_lynxos}" = "yes"; then
263 LIBS="$LIBS -lnetinet"
68070c10
PA
264fi
265
266if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
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
271 for Cygwin.])
272fi
273
58caa3dc 274if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
275 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
276 [Define if the target supports PTRACE_PEEKUSR for register ]
277 [access.])
58caa3dc
DJ
278fi
279
280if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
281 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
282 [Define if the target supports register sets.])
283
58caa3dc
DJ
284 AC_MSG_CHECKING(for PTRACE_GETREGS)
285 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
286 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
287 [PTRACE_GETREGS;],
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
e9d25b98 292 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
293 [Define if the target supports PTRACE_GETREGS for register ]
294 [access.])
58caa3dc
DJ
295 fi
296
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
f450004a
DJ
305 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
306 [Define if the target supports PTRACE_GETFPXREGS for extended ]
307 [register access.])
58caa3dc
DJ
308 fi
309fi
310
9accd112
MM
311if test "${srv_linux_btrace}" = "yes"; then
312 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
313 [Define if the target supports branch tracing.])
314fi
315
0d62e5e8
DJ
316if 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)
1041a03c 320 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
321 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
322fi
323
18f5fd81
TJB
324dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
325if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
326 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
327fi
328
329dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
330if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
331 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
332fi
333
193f13e6
MK
334dnl Check for libdl, but do not add it to LIBS as only gdbserver
335dnl needs it (and gdbreplay doesn't).
336old_LIBS="$LIBS"
337AC_CHECK_LIB(dl, dlopen)
338LIBS="$old_LIBS"
339
0d62e5e8
DJ
340srv_thread_depfiles=
341srv_libs=
0d62e5e8
DJ
342
343if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
344 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
345 srv_libs="-ldl"
f6528abd 346 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 347 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
348 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
349 # supported there.
350 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
351 LDFLAGS="$LDFLAGS $RDYNAMIC"
352 AC_TRY_LINK([], [],
353 [found="-Wl,--dynamic-list"
354 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
355 [RDYNAMIC="-rdynamic"
356 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
357 AC_TRY_LINK([], [],
358 [found="-rdynamic"],
359 [found="no"
360 RDYNAMIC=""])])
193f13e6
MK
361 AC_SUBST(RDYNAMIC)
362 LDFLAGS="$old_LDFLAGS"
f6528abd 363 AC_MSG_RESULT($found)
193f13e6
MK
364 else
365 srv_libs="-lthread_db"
366 fi
0d62e5e8 367
0d62e5e8 368 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 369 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
370 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
371 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
372 [gdbsrv_cv_have_td_version=yes],
373 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
374 if test $gdbsrv_cv_have_td_version = yes; then
375 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
376 fi
0d62e5e8
DJ
377fi
378
96f15937
PP
379AC_ARG_WITH(libthread-db,
380AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
381[srv_libthread_db_path="${withval}"
96f15937
PP
382 srv_libs="$srv_libthread_db_path"
383])
384
193f13e6
MK
385if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
386 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
387fi
388
9b4b61c8 389if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
390 srv_xmlbuiltin="xml-builtin.o"
391 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
392
393 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 394 srv_xmlfiles=""
fb1e4ffc
DJ
395 for f in $tmp_xmlfiles; do
396 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
397 done
398fi
399
fb23d554 400GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 401GDBSERVER_LIBS="$srv_libs"
c906108c 402
fa593d66
PA
403dnl Check whether the target supports __sync_*_compare_and_swap.
404AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
405 gdbsrv_cv_have_sync_builtins, [
406AC_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)])
409if 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])
412fi
413
414dnl Check for -fvisibility=hidden support in the compiler.
415saved_cflags="$CFLAGS"
416CFLAGS="$CFLAGS -fvisibility=hidden"
417AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
418 [gdbsrv_cv_have_visibility_hidden=yes],
419 [gdbsrv_cv_have_visibility_hidden=no])
420CFLAGS="$saved_cflags"
421
03583c20
UW
422dnl Check if we can disable the virtual address space randomization.
423dnl The functionality of setarch -R.
424AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
425define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
426# if !HAVE_DECL_ADDR_NO_RANDOMIZE
427# define ADDR_NO_RANDOMIZE 0x0040000
428# endif
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))
432 return 1])])
433AC_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])])
439if $gdbsrv_cv_have_personality
440then
441 AC_DEFINE([HAVE_PERSONALITY], 1,
442 [Define if you support the personality syscall.])
443fi
444
c2a66c29 445
fa593d66 446IPA_DEPFILES=""
c2a66c29 447extra_libraries=""
fa593d66 448
c2a66c29 449# check whether to enable the inprocess agent
fa593d66
PA
450if test "$ipa_obj" != "" \
451 -a "$gdbsrv_cv_have_sync_builtins" = yes \
452 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
453 have_ipa=true
454else
455 have_ipa=false
456fi
457
458AC_ARG_ENABLE(inprocess-agent,
459AS_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]) ;;
464esac],
465[want_ipa=$have_ipa])
466
467if $want_ipa ; then
468 if $have_ipa ; then
469 IPA_DEPFILES="$ipa_obj"
470 extra_libraries="$extra_libraries libinproctrace.so"
471 else
472 AC_MSG_ERROR([inprocess agent not supported for this target])
473 fi
fa593d66
PA
474fi
475
7ea81414 476AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 477AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
478AC_SUBST(srv_xmlbuiltin)
479AC_SUBST(srv_xmlfiles)
fa593d66
PA
480AC_SUBST(IPA_DEPFILES)
481AC_SUBST(extra_libraries)
c906108c 482
c971b7fa 483GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
484
485GNULIB_STDINT_H=
486if test x"$STDINT_H" != x; then
c971b7fa 487 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
488fi
489AC_SUBST(GNULIB_STDINT_H)
490
1e94266c 491AC_CONFIG_FILES([Makefile],
c3a3ccc7
DJ
492[case x$CONFIG_HEADERS in
493xconfig.h:config.in)
494echo > stamp-h ;;
495esac
496])
1e94266c
SM
497
498AC_OUTPUT
This page took 1.193052 seconds and 4 git commands to generate.