fix a comment in configure.ac
[deliverable/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 86 netinet/tcp.h arpa/inet.h sys/wait.h wait.h sys/un.h dnl
5b4e221c 87 linux/perf_event.h sys/syscall.h)
614c279d 88AC_CHECK_FUNCS(pread pwrite pread64 readlink fdwalk pipe2)
c9a1864a 89AC_REPLACE_FUNCS(vasprintf vsnprintf)
84563040 90
3266f10b
TT
91GDB_AC_COMMON
92
0fb4aa4b
PA
93# Check for UST
94ustlibs=""
95ustinc=""
96
97AC_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])
100AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
101AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
102
103case $with_ust in
104 no)
105 ustlibs=
106 ustinc=
107 ;;
108 "" | yes)
109 ustlibs=" -lust "
110 ustinc=""
111 ;;
112 *)
113 ustlibs="-L$with_ust/lib -lust"
114 ustinc="-I$with_ust/include "
115 ;;
116esac
117if test "x$with_ust_include" != x; then
118 ustinc="-I$with_ust_include "
119fi
120if test "x$with_ust_lib" != x; then
121 ustlibs="-L$with_ust_lib -lust"
122fi
123
124if test "x$with_ust" != "xno"; then
125 saved_CFLAGS="$CFLAGS"
126 CFLAGS="$CFLAGS $ustinc"
127 AC_MSG_CHECKING([for ust])
128 AC_TRY_COMPILE([
129#define CONFIG_UST_GDB_INTEGRATION
130#include <ust/ust.h>
131 ],[],
132 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
133 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
134 CFLAGS="$saved_CFLAGS"
135fi
136
137# Flags needed for UST
138AC_SUBST(ustlibs)
139AC_SUBST(ustinc)
140
d4596a3d
PA
141AC_ARG_ENABLE(werror,
142 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
143 [case "${enableval}" in
144 yes | y) ERROR_ON_WARNING="yes" ;;
145 no | n) ERROR_ON_WARNING="no" ;;
146 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
147 esac])
148
149# Enable -Werror by default when using gcc
150if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
151 ERROR_ON_WARNING=yes
152fi
153
154WERROR_CFLAGS=""
155if test "${ERROR_ON_WARNING}" = yes ; then
156 WERROR_CFLAGS="-Werror"
157fi
158
159build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
8c29b58e 160-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
d4596a3d
PA
161
162WARN_CFLAGS=""
163if test "x$GCC" = xyes
164then
165 AC_MSG_CHECKING(compiler warning flags)
166 # Separate out the -Werror flag as some files just cannot be
167 # compiled with it enabled.
168 for w in ${build_warnings}; do
169 case $w in
170 -Werr*) WERROR_CFLAGS=-Werror ;;
171 *) # Check that GCC accepts it
172 saved_CFLAGS="$CFLAGS"
173 CFLAGS="$CFLAGS $w"
174 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
175 CFLAGS="$saved_CFLAGS"
176 esac
177 done
178 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
179fi
180AC_SUBST(WARN_CFLAGS)
181AC_SUBST(WERROR_CFLAGS)
182
10e86dd7
DE
183dnl dladdr is glibc-specific. It is used by thread-db.c but only for
184dnl debugging messages. It lives in -ldl which is handled below so we don't
185dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
186dnl augment LIBS.
187old_LIBS="$LIBS"
188LIBS="$LIBS -ldl"
189AC_CHECK_FUNCS(dladdr)
190LIBS="$old_LIBS"
191
68070c10
PA
192have_errno=no
193AC_MSG_CHECKING(for errno)
194AC_TRY_LINK([
195#if HAVE_ERRNO_H
196#include <errno.h>
197#endif], [static int x; x = errno;],
198 [AC_MSG_RESULT(yes - in errno.h); AC_DEFINE(HAVE_ERRNO, 1, [Define if errno is available]) have_errno=yes])
199if test $have_errno = no; then
200AC_TRY_LINK([
201#if HAVE_ERRNO_H
202#include <errno.h>
203#endif], [extern int errno; static int x; x = errno;],
204 [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])],
205 [AC_MSG_RESULT(no)])
206fi
207
e6712ff1 208AC_CHECK_DECLS([strerror, strstr, perror, vasprintf, vsnprintf])
43d5792c 209
ccbd4912
MK
210AC_CHECK_TYPES(socklen_t, [], [],
211[#include <sys/types.h>
212#include <sys/socket.h>
213])
fb1e4ffc 214
8365dcf5
TJB
215AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
216#include <elf.h>
217)
218
c16158bc
JM
219ACX_PKGVERSION([GDB])
220ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
221AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
222AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
223
8838b45e
NS
224# Check for various supplementary target information (beyond the
225# triplet) which might affect the choices in configure.srv.
226case "${target}" in
227changequote(,)dnl
228 i[34567]86-*-linux*)
229changequote([,])dnl
230 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
231 [save_CPPFLAGS="$CPPFLAGS"
232 CPPFLAGS="$CPPFLAGS $CFLAGS"
233 AC_EGREP_CPP([got it], [
234#if __x86_64__
235got it
236#endif
237 ], [gdb_cv_i386_is_x86_64=yes],
238 [gdb_cv_i386_is_x86_64=no])
239 CPPFLAGS="$save_CPPFLAGS"])
240 ;;
9ac544ce
MK
241 m68k-*-*)
242 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
243 [save_CPPFLAGS="$CPPFLAGS"
244 CPPFLAGS="$CPPFLAGS $CFLAGS"
245 AC_EGREP_CPP([got it], [
246#ifdef __mcoldfire__
247got it
248#endif
249 ], [gdb_cv_m68k_is_coldfire=yes],
250 [gdb_cv_m68k_is_coldfire=no])
251 CPPFLAGS="$save_CPPFLAGS"])
252 ;;
8838b45e
NS
253esac
254
7ea81414 255. ${srcdir}/configure.srv
c906108c 256
68070c10
PA
257if test "${srv_mingwce}" = "yes"; then
258 LIBS="$LIBS -lws2"
259elif test "${srv_mingw}" = "yes"; then
12ea4b69 260 LIBS="$LIBS -lws2_32"
ac8c974e
AR
261elif test "${srv_qnx}" = "yes"; then
262 LIBS="$LIBS -lsocket"
8ed54b31
JB
263elif test "${srv_lynxos}" = "yes"; then
264 LIBS="$LIBS -lnetinet"
68070c10
PA
265fi
266
267if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
268 AC_DEFINE(USE_WIN32API, 1,
269 [Define if we should use the Windows API, instead of the
270 POSIX API. On Windows, we use the Windows API when
271 building for MinGW, but the POSIX API when building
272 for Cygwin.])
273fi
274
58caa3dc 275if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
276 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
277 [Define if the target supports PTRACE_PEEKUSR for register ]
278 [access.])
58caa3dc
DJ
279fi
280
281if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
282 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
283 [Define if the target supports register sets.])
284
58caa3dc
DJ
285 AC_MSG_CHECKING(for PTRACE_GETREGS)
286 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
287 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
288 [PTRACE_GETREGS;],
289 [gdbsrv_cv_have_ptrace_getregs=yes],
290 [gdbsrv_cv_have_ptrace_getregs=no])])
291 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
292 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 293 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
294 [Define if the target supports PTRACE_GETREGS for register ]
295 [access.])
58caa3dc
DJ
296 fi
297
298 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
299 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
300 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
301 [PTRACE_GETFPXREGS;],
302 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
303 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
304 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
305 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
306 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
307 [Define if the target supports PTRACE_GETFPXREGS for extended ]
308 [register access.])
58caa3dc
DJ
309 fi
310fi
311
9accd112
MM
312if test "${srv_linux_btrace}" = "yes"; then
313 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
314 [Define if the target supports branch tracing.])
315fi
316
0d62e5e8
DJ
317if test "$ac_cv_header_sys_procfs_h" = yes; then
318 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
319 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
320 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_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
59a016f0 400GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
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
c971b7fa 491AC_OUTPUT(Makefile,
c3a3ccc7
DJ
492[case x$CONFIG_HEADERS in
493xconfig.h:config.in)
494echo > stamp-h ;;
495esac
496])
This page took 0.975379 seconds and 4 git commands to generate.