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