]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/configure.ac
gdb/
[thirdparty/binutils-gdb.git] / gdb / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
28e7fd62 2dnl Copyright (C) 2000-2013 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
fd462a61 29AC_GNU_SOURCE
589bc927 30AC_SYS_LARGEFILE
d6e9fb05
JK
31
32AC_CANONICAL_SYSTEM
84563040 33
d6e9fb05 34AC_PROG_INSTALL
c971b7fa 35AC_PROG_RANLIB
c906108c 36
dcdb98d2
DJ
37AC_ARG_PROGRAM
38
ee6e2b82 39AC_HEADER_STDC
d26e3629 40AC_HEADER_DIRENT
84563040 41
a1723c35 42AC_FUNC_ALLOCA
c9a1864a 43
17ef446e
PA
44# Set the 'development' global.
45. $srcdir/../development.sh
46
47# Enable -lmcheck by default (it provides cheap-enough memory
48# mangling), but turn it off for releases.
49if $development; then
50 libmcheck_default=yes
51else
52 libmcheck_default=no
53fi
54GDB_AC_LIBMCHECK(${libmcheck_default})
55
bd885420
YQ
56ACX_NONCANONICAL_TARGET
57ACX_NONCANONICAL_HOST
58
61c125b9
TT
59# Dependency checking.
60ZW_CREATE_DEPDIR
61ZW_PROG_COMPILER_DEPENDENCIES([CC])
62
c9a1864a
YQ
63# Check for the 'make' the user wants to use.
64AC_CHECK_PROGS(MAKE, make)
61c125b9
TT
65MAKE_IS_GNU=
66case "`$MAKE --version 2>&1 | sed 1q`" in
67 *GNU*)
68 MAKE_IS_GNU=yes
69 ;;
70esac
71AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes)
72AC_PROG_MAKE_SET
c9a1864a 73
c971b7fa
PA
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.
79ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"])
80
0d62e5e8 81AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
94e10508 82 proc_service.h sys/procfs.h thread_db.h linux/elf.h dnl
bc7dea8d 83 stdlib.h dnl
1b3f6016 84 errno.h fcntl.h signal.h sys/file.h malloc.h dnl
61ff6e04 85 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
945bf713
MM
86 netinet/tcp.h arpa/inet.h sys/wait.h wait.h sys/un.h dnl
87 linux/perf_event.h)
614c279d 88AC_CHECK_FUNCS(pread pwrite pread64 readlink fdwalk pipe2)
c9a1864a 89AC_REPLACE_FUNCS(vasprintf vsnprintf)
84563040 90
0fb4aa4b
PA
91# Check for UST
92ustlibs=""
93ustinc=""
94
95AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
96 Equivalent to --with-ust-include=PATH/include
97 plus --with-ust-lib=PATH/lib])
98AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
99AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
100
101case $with_ust in
102 no)
103 ustlibs=
104 ustinc=
105 ;;
106 "" | yes)
107 ustlibs=" -lust "
108 ustinc=""
109 ;;
110 *)
111 ustlibs="-L$with_ust/lib -lust"
112 ustinc="-I$with_ust/include "
113 ;;
114esac
115if test "x$with_ust_include" != x; then
116 ustinc="-I$with_ust_include "
117fi
118if test "x$with_ust_lib" != x; then
119 ustlibs="-L$with_ust_lib -lust"
120fi
121
122if test "x$with_ust" != "xno"; then
123 saved_CFLAGS="$CFLAGS"
124 CFLAGS="$CFLAGS $ustinc"
125 AC_MSG_CHECKING([for ust])
126 AC_TRY_COMPILE([
127#define CONFIG_UST_GDB_INTEGRATION
128#include <ust/ust.h>
129 ],[],
130 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
131 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
132 CFLAGS="$saved_CFLAGS"
133fi
134
135# Flags needed for UST
136AC_SUBST(ustlibs)
137AC_SUBST(ustinc)
138
d4596a3d
PA
139AC_ARG_ENABLE(werror,
140 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
141 [case "${enableval}" in
142 yes | y) ERROR_ON_WARNING="yes" ;;
143 no | n) ERROR_ON_WARNING="no" ;;
144 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
145 esac])
146
147# Enable -Werror by default when using gcc
148if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
149 ERROR_ON_WARNING=yes
150fi
151
152WERROR_CFLAGS=""
153if test "${ERROR_ON_WARNING}" = yes ; then
154 WERROR_CFLAGS="-Werror"
155fi
156
157build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
8c29b58e 158-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
d4596a3d
PA
159
160WARN_CFLAGS=""
161if test "x$GCC" = xyes
162then
163 AC_MSG_CHECKING(compiler warning flags)
164 # Separate out the -Werror flag as some files just cannot be
165 # compiled with it enabled.
166 for w in ${build_warnings}; do
167 case $w in
168 -Werr*) WERROR_CFLAGS=-Werror ;;
169 *) # Check that GCC accepts it
170 saved_CFLAGS="$CFLAGS"
171 CFLAGS="$CFLAGS $w"
172 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
173 CFLAGS="$saved_CFLAGS"
174 esac
175 done
176 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
177fi
178AC_SUBST(WARN_CFLAGS)
179AC_SUBST(WERROR_CFLAGS)
180
10e86dd7
DE
181dnl dladdr is glibc-specific. It is used by thread-db.c but only for
182dnl debugging messages. It lives in -ldl which is handled below so we don't
183dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
184dnl augment LIBS.
185old_LIBS="$LIBS"
186LIBS="$LIBS -ldl"
187AC_CHECK_FUNCS(dladdr)
188LIBS="$old_LIBS"
189
68070c10
PA
190have_errno=no
191AC_MSG_CHECKING(for errno)
192AC_TRY_LINK([
193#if HAVE_ERRNO_H
194#include <errno.h>
195#endif], [static int x; x = errno;],
196 [AC_MSG_RESULT(yes - in errno.h); AC_DEFINE(HAVE_ERRNO, 1, [Define if errno is available]) have_errno=yes])
197if test $have_errno = no; then
198AC_TRY_LINK([
199#if HAVE_ERRNO_H
200#include <errno.h>
201#endif], [extern int errno; static int x; x = errno;],
202 [AC_MSG_RESULT(yes - must define); AC_DEFINE(HAVE_ERRNO, 1, [Define if errno is available]) AC_DEFINE(MUST_DEFINE_ERRNO, 1, [Checking if errno must be defined])],
203 [AC_MSG_RESULT(no)])
204fi
205
e6712ff1 206AC_CHECK_DECLS([strerror, strstr, perror, vasprintf, vsnprintf])
43d5792c 207
ccbd4912
MK
208AC_CHECK_TYPES(socklen_t, [], [],
209[#include <sys/types.h>
210#include <sys/socket.h>
211])
fb1e4ffc 212
8365dcf5
TJB
213AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
214#include <elf.h>
215)
216
c16158bc
JM
217ACX_PKGVERSION([GDB])
218ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
219AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
220AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
221
8838b45e
NS
222# Check for various supplementary target information (beyond the
223# triplet) which might affect the choices in configure.srv.
224case "${target}" in
225changequote(,)dnl
226 i[34567]86-*-linux*)
227changequote([,])dnl
228 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
229 [save_CPPFLAGS="$CPPFLAGS"
230 CPPFLAGS="$CPPFLAGS $CFLAGS"
231 AC_EGREP_CPP([got it], [
232#if __x86_64__
233got it
234#endif
235 ], [gdb_cv_i386_is_x86_64=yes],
236 [gdb_cv_i386_is_x86_64=no])
237 CPPFLAGS="$save_CPPFLAGS"])
238 ;;
9ac544ce
MK
239 m68k-*-*)
240 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
241 [save_CPPFLAGS="$CPPFLAGS"
242 CPPFLAGS="$CPPFLAGS $CFLAGS"
243 AC_EGREP_CPP([got it], [
244#ifdef __mcoldfire__
245got it
246#endif
247 ], [gdb_cv_m68k_is_coldfire=yes],
248 [gdb_cv_m68k_is_coldfire=no])
249 CPPFLAGS="$save_CPPFLAGS"])
250 ;;
8838b45e
NS
251esac
252
7ea81414 253. ${srcdir}/configure.srv
c906108c 254
68070c10
PA
255if test "${srv_mingwce}" = "yes"; then
256 LIBS="$LIBS -lws2"
257elif test "${srv_mingw}" = "yes"; then
12ea4b69 258 LIBS="$LIBS -lws2_32"
ac8c974e
AR
259elif test "${srv_qnx}" = "yes"; then
260 LIBS="$LIBS -lsocket"
8ed54b31
JB
261elif test "${srv_lynxos}" = "yes"; then
262 LIBS="$LIBS -lnetinet"
68070c10
PA
263fi
264
265if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
266 AC_DEFINE(USE_WIN32API, 1,
267 [Define if we should use the Windows API, instead of the
268 POSIX API. On Windows, we use the Windows API when
269 building for MinGW, but the POSIX API when building
270 for Cygwin.])
271fi
272
58caa3dc 273if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
274 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
275 [Define if the target supports PTRACE_PEEKUSR for register ]
276 [access.])
58caa3dc
DJ
277fi
278
279if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
280 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
281 [Define if the target supports register sets.])
282
58caa3dc
DJ
283 AC_MSG_CHECKING(for PTRACE_GETREGS)
284 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
285 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
286 [PTRACE_GETREGS;],
287 [gdbsrv_cv_have_ptrace_getregs=yes],
288 [gdbsrv_cv_have_ptrace_getregs=no])])
289 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
290 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 291 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
292 [Define if the target supports PTRACE_GETREGS for register ]
293 [access.])
58caa3dc
DJ
294 fi
295
296 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
297 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
298 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
299 [PTRACE_GETFPXREGS;],
300 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
301 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
302 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
303 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
304 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
305 [Define if the target supports PTRACE_GETFPXREGS for extended ]
306 [register access.])
58caa3dc
DJ
307 fi
308fi
309
9accd112
MM
310if test "${srv_linux_btrace}" = "yes"; then
311 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
312 [Define if the target supports branch tracing.])
313fi
314
0d62e5e8
DJ
315if test "$ac_cv_header_sys_procfs_h" = yes; then
316 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
317 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
318 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
0d62e5e8
DJ
319 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
320fi
321
18f5fd81
TJB
322dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
323if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
324 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
325fi
326
327dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
328if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
329 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
330fi
331
193f13e6
MK
332dnl Check for libdl, but do not add it to LIBS as only gdbserver
333dnl needs it (and gdbreplay doesn't).
334old_LIBS="$LIBS"
335AC_CHECK_LIB(dl, dlopen)
336LIBS="$old_LIBS"
337
0d62e5e8
DJ
338srv_thread_depfiles=
339srv_libs=
0d62e5e8
DJ
340
341if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
342 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
343 srv_libs="-ldl"
f6528abd 344 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 345 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
346 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
347 # supported there.
348 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
349 LDFLAGS="$LDFLAGS $RDYNAMIC"
350 AC_TRY_LINK([], [],
351 [found="-Wl,--dynamic-list"
352 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
353 [RDYNAMIC="-rdynamic"
354 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
355 AC_TRY_LINK([], [],
356 [found="-rdynamic"],
357 [found="no"
358 RDYNAMIC=""])])
193f13e6
MK
359 AC_SUBST(RDYNAMIC)
360 LDFLAGS="$old_LDFLAGS"
f6528abd 361 AC_MSG_RESULT($found)
193f13e6
MK
362 else
363 srv_libs="-lthread_db"
364 fi
0d62e5e8 365
0d62e5e8 366 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 367 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
368 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
369 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
370 [gdbsrv_cv_have_td_version=yes],
371 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
372 if test $gdbsrv_cv_have_td_version = yes; then
373 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
374 fi
0d62e5e8
DJ
375fi
376
96f15937
PP
377AC_ARG_WITH(libthread-db,
378AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
379[srv_libthread_db_path="${withval}"
96f15937
PP
380 srv_libs="$srv_libthread_db_path"
381])
382
193f13e6
MK
383if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
384 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
385fi
386
9b4b61c8 387if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
388 srv_xmlbuiltin="xml-builtin.o"
389 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
390
391 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 392 srv_xmlfiles=""
fb1e4ffc
DJ
393 for f in $tmp_xmlfiles; do
394 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
395 done
396fi
397
59a016f0 398GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
0d62e5e8 399GDBSERVER_LIBS="$srv_libs"
c906108c 400
fa593d66
PA
401dnl Check whether the target supports __sync_*_compare_and_swap.
402AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
403 gdbsrv_cv_have_sync_builtins, [
404AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
405 gdbsrv_cv_have_sync_builtins=yes,
406 gdbsrv_cv_have_sync_builtins=no)])
407if test $gdbsrv_cv_have_sync_builtins = yes; then
408 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
409 [Define to 1 if the target supports __sync_*_compare_and_swap])
410fi
411
412dnl Check for -fvisibility=hidden support in the compiler.
413saved_cflags="$CFLAGS"
414CFLAGS="$CFLAGS -fvisibility=hidden"
415AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
416 [gdbsrv_cv_have_visibility_hidden=yes],
417 [gdbsrv_cv_have_visibility_hidden=no])
418CFLAGS="$saved_cflags"
419
03583c20
UW
420dnl Check if we can disable the virtual address space randomization.
421dnl The functionality of setarch -R.
422AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
423define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
424# if !HAVE_DECL_ADDR_NO_RANDOMIZE
425# define ADDR_NO_RANDOMIZE 0x0040000
426# endif
427 /* Test the flag could be set and stays set. */
428 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
429 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
430 return 1])])
431AC_RUN_IFELSE([PERSONALITY_TEST],
432 [gdbsrv_cv_have_personality=true],
433 [gdbsrv_cv_have_personality=false],
434 [AC_LINK_IFELSE([PERSONALITY_TEST],
435 [gdbsrv_cv_have_personality=true],
436 [gdbsrv_cv_have_personality=false])])
437if $gdbsrv_cv_have_personality
438then
439 AC_DEFINE([HAVE_PERSONALITY], 1,
440 [Define if you support the personality syscall.])
441fi
442
c2a66c29 443
fa593d66 444IPA_DEPFILES=""
c2a66c29 445extra_libraries=""
fa593d66 446
c2a66c29 447# check whether to enable the inprocess agent
fa593d66
PA
448if test "$ipa_obj" != "" \
449 -a "$gdbsrv_cv_have_sync_builtins" = yes \
450 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
451 have_ipa=true
452else
453 have_ipa=false
454fi
455
456AC_ARG_ENABLE(inprocess-agent,
457AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
458[case "$enableval" in
459 yes) want_ipa=true ;;
460 no) want_ipa=false ;;
461 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
462esac],
463[want_ipa=$have_ipa])
464
465if $want_ipa ; then
466 if $have_ipa ; then
467 IPA_DEPFILES="$ipa_obj"
468 extra_libraries="$extra_libraries libinproctrace.so"
469 else
470 AC_MSG_ERROR([inprocess agent not supported for this target])
471 fi
fa593d66
PA
472fi
473
7ea81414 474AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 475AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
476AC_SUBST(srv_xmlbuiltin)
477AC_SUBST(srv_xmlfiles)
fa593d66
PA
478AC_SUBST(IPA_DEPFILES)
479AC_SUBST(extra_libraries)
c906108c 480
c971b7fa 481GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
482
483GNULIB_STDINT_H=
484if test x"$STDINT_H" != x; then
c971b7fa 485 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
486fi
487AC_SUBST(GNULIB_STDINT_H)
488
c971b7fa 489AC_OUTPUT(Makefile,
c3a3ccc7
DJ
490[case x$CONFIG_HEADERS in
491xconfig.h:config.in)
492echo > stamp-h ;;
493esac
494])