gdbserver: use the new gdb warning helpers
[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
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)
4b8b5e72 97AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
84563040 98
3266f10b
TT
99GDB_AC_COMMON
100
eb7aa561
PA
101# Check the return and argument types of ptrace.
102GDB_AC_PTRACE
103
0fb4aa4b
PA
104# Check for UST
105ustlibs=""
106ustinc=""
107
108AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
109 Equivalent to --with-ust-include=PATH/include
110 plus --with-ust-lib=PATH/lib])
111AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
112AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
113
114case $with_ust in
115 no)
116 ustlibs=
117 ustinc=
118 ;;
119 "" | yes)
120 ustlibs=" -lust "
121 ustinc=""
122 ;;
123 *)
124 ustlibs="-L$with_ust/lib -lust"
125 ustinc="-I$with_ust/include "
126 ;;
127esac
128if test "x$with_ust_include" != x; then
129 ustinc="-I$with_ust_include "
130fi
131if test "x$with_ust_lib" != x; then
132 ustlibs="-L$with_ust_lib -lust"
133fi
134
135if test "x$with_ust" != "xno"; then
136 saved_CFLAGS="$CFLAGS"
137 CFLAGS="$CFLAGS $ustinc"
138 AC_MSG_CHECKING([for ust])
139 AC_TRY_COMPILE([
140#define CONFIG_UST_GDB_INTEGRATION
141#include <ust/ust.h>
142 ],[],
143 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
144 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
145 CFLAGS="$saved_CFLAGS"
146fi
147
148# Flags needed for UST
149AC_SUBST(ustlibs)
150AC_SUBST(ustinc)
151
8f13a3ce
MF
152AM_GDB_WARNINGS
153dnl The codebase isn't clean yet with this flag.
154case " $WARN_CFLAGS " in
155*" -Wmissing-prototypes "*)
156 WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
157 ;;
158esac
3bc3d82a 159
10e86dd7
DE
160dnl dladdr is glibc-specific. It is used by thread-db.c but only for
161dnl debugging messages. It lives in -ldl which is handled below so we don't
162dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
163dnl augment LIBS.
164old_LIBS="$LIBS"
165LIBS="$LIBS -ldl"
166AC_CHECK_FUNCS(dladdr)
167LIBS="$old_LIBS"
168
07697489
PA
169libiberty_INIT
170
1bd2f0ba 171AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 172
791c0056
GB
173AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
174
ccbd4912
MK
175AC_CHECK_TYPES(socklen_t, [], [],
176[#include <sys/types.h>
177#include <sys/socket.h>
178])
fb1e4ffc 179
64da5dd5
JB
180case "${target}" in
181 *-android*)
182 # Starting with NDK version 9, <elf.h> actually includes definitions
183 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
184 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
185 # leading to conflicts with the defintions from <linux/elf.h>.
186 # This makes it impossible for us to include both <elf.h> and
187 # <linux/elf.h>, which means that, in practice, we do not have
188 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
189 # Therefore, do not try to auto-detect availability, as it would
190 # get it wrong on this platform.
191 ;;
192 *)
193 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
194 #include <elf.h>
195 )
196esac
8365dcf5 197
c16158bc
JM
198ACX_PKGVERSION([GDB])
199ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
200AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
201AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
202
8838b45e
NS
203# Check for various supplementary target information (beyond the
204# triplet) which might affect the choices in configure.srv.
205case "${target}" in
206changequote(,)dnl
207 i[34567]86-*-linux*)
208changequote([,])dnl
209 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
210 [save_CPPFLAGS="$CPPFLAGS"
211 CPPFLAGS="$CPPFLAGS $CFLAGS"
212 AC_EGREP_CPP([got it], [
213#if __x86_64__
214got it
215#endif
216 ], [gdb_cv_i386_is_x86_64=yes],
217 [gdb_cv_i386_is_x86_64=no])
218 CPPFLAGS="$save_CPPFLAGS"])
219 ;;
9ac544ce
MK
220 m68k-*-*)
221 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
222 [save_CPPFLAGS="$CPPFLAGS"
223 CPPFLAGS="$CPPFLAGS $CFLAGS"
224 AC_EGREP_CPP([got it], [
225#ifdef __mcoldfire__
226got it
227#endif
228 ], [gdb_cv_m68k_is_coldfire=yes],
229 [gdb_cv_m68k_is_coldfire=no])
230 CPPFLAGS="$save_CPPFLAGS"])
231 ;;
8838b45e
NS
232esac
233
7ea81414 234. ${srcdir}/configure.srv
c906108c 235
fb23d554
SDJ
236# Add in the common host objects.
237. ${srcdir}/../common/common.host
238srv_host_obs="$common_host_obs"
239
68070c10
PA
240if test "${srv_mingwce}" = "yes"; then
241 LIBS="$LIBS -lws2"
242elif test "${srv_mingw}" = "yes"; then
12ea4b69 243 LIBS="$LIBS -lws2_32"
ac8c974e
AR
244elif test "${srv_qnx}" = "yes"; then
245 LIBS="$LIBS -lsocket"
8ed54b31
JB
246elif test "${srv_lynxos}" = "yes"; then
247 LIBS="$LIBS -lnetinet"
68070c10
PA
248fi
249
250if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
251 AC_DEFINE(USE_WIN32API, 1,
252 [Define if we should use the Windows API, instead of the
253 POSIX API. On Windows, we use the Windows API when
254 building for MinGW, but the POSIX API when building
255 for Cygwin.])
256fi
257
58caa3dc 258if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
259 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
260 [Define if the target supports PTRACE_PEEKUSR for register ]
261 [access.])
58caa3dc
DJ
262fi
263
264if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
265 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
266 [Define if the target supports register sets.])
267
58caa3dc
DJ
268 AC_MSG_CHECKING(for PTRACE_GETREGS)
269 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
270 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
271 [PTRACE_GETREGS;],
272 [gdbsrv_cv_have_ptrace_getregs=yes],
273 [gdbsrv_cv_have_ptrace_getregs=no])])
274 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
275 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 276 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
277 [Define if the target supports PTRACE_GETREGS for register ]
278 [access.])
58caa3dc
DJ
279 fi
280
281 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
282 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
283 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
284 [PTRACE_GETFPXREGS;],
285 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
286 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
287 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
288 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
289 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
290 [Define if the target supports PTRACE_GETFPXREGS for extended ]
291 [register access.])
58caa3dc
DJ
292 fi
293fi
294
9accd112
MM
295if test "${srv_linux_btrace}" = "yes"; then
296 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
297 [Define if the target supports branch tracing.])
298fi
299
0d62e5e8
DJ
300if test "$ac_cv_header_sys_procfs_h" = yes; then
301 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
302 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
303 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
1041a03c 304 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
305 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
306fi
307
18f5fd81
TJB
308dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
309if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
310 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
311fi
312
313dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
314if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
315 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
316fi
317
193f13e6
MK
318dnl Check for libdl, but do not add it to LIBS as only gdbserver
319dnl needs it (and gdbreplay doesn't).
320old_LIBS="$LIBS"
321AC_CHECK_LIB(dl, dlopen)
322LIBS="$old_LIBS"
323
0d62e5e8
DJ
324srv_thread_depfiles=
325srv_libs=
0d62e5e8
DJ
326
327if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
328 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
329 srv_libs="-ldl"
f6528abd 330 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 331 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
332 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
333 # supported there.
334 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
335 LDFLAGS="$LDFLAGS $RDYNAMIC"
336 AC_TRY_LINK([], [],
337 [found="-Wl,--dynamic-list"
338 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
339 [RDYNAMIC="-rdynamic"
340 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
341 AC_TRY_LINK([], [],
342 [found="-rdynamic"],
343 [found="no"
344 RDYNAMIC=""])])
193f13e6
MK
345 AC_SUBST(RDYNAMIC)
346 LDFLAGS="$old_LDFLAGS"
f6528abd 347 AC_MSG_RESULT($found)
193f13e6
MK
348 else
349 srv_libs="-lthread_db"
350 fi
0d62e5e8 351
0d62e5e8 352 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 353 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
354 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
355 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
356 [gdbsrv_cv_have_td_version=yes],
357 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
358 if test $gdbsrv_cv_have_td_version = yes; then
359 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
360 fi
0d62e5e8
DJ
361fi
362
96f15937
PP
363AC_ARG_WITH(libthread-db,
364AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
365[srv_libthread_db_path="${withval}"
96f15937
PP
366 srv_libs="$srv_libthread_db_path"
367])
368
193f13e6
MK
369if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
370 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
371fi
372
9b4b61c8 373if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
374 srv_xmlbuiltin="xml-builtin.o"
375 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
376
377 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 378 srv_xmlfiles=""
fb1e4ffc
DJ
379 for f in $tmp_xmlfiles; do
380 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
381 done
382fi
383
fb23d554 384GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 385GDBSERVER_LIBS="$srv_libs"
c906108c 386
fa593d66
PA
387dnl Check whether the target supports __sync_*_compare_and_swap.
388AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
389 gdbsrv_cv_have_sync_builtins, [
390AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
391 gdbsrv_cv_have_sync_builtins=yes,
392 gdbsrv_cv_have_sync_builtins=no)])
393if test $gdbsrv_cv_have_sync_builtins = yes; then
394 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
395 [Define to 1 if the target supports __sync_*_compare_and_swap])
396fi
397
398dnl Check for -fvisibility=hidden support in the compiler.
399saved_cflags="$CFLAGS"
400CFLAGS="$CFLAGS -fvisibility=hidden"
401AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
402 [gdbsrv_cv_have_visibility_hidden=yes],
403 [gdbsrv_cv_have_visibility_hidden=no])
404CFLAGS="$saved_cflags"
405
03583c20
UW
406dnl Check if we can disable the virtual address space randomization.
407dnl The functionality of setarch -R.
408AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
409define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
410# if !HAVE_DECL_ADDR_NO_RANDOMIZE
411# define ADDR_NO_RANDOMIZE 0x0040000
412# endif
413 /* Test the flag could be set and stays set. */
414 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
415 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
416 return 1])])
417AC_RUN_IFELSE([PERSONALITY_TEST],
418 [gdbsrv_cv_have_personality=true],
419 [gdbsrv_cv_have_personality=false],
420 [AC_LINK_IFELSE([PERSONALITY_TEST],
421 [gdbsrv_cv_have_personality=true],
422 [gdbsrv_cv_have_personality=false])])
423if $gdbsrv_cv_have_personality
424then
425 AC_DEFINE([HAVE_PERSONALITY], 1,
426 [Define if you support the personality syscall.])
427fi
428
c2a66c29 429
fa593d66 430IPA_DEPFILES=""
c2a66c29 431extra_libraries=""
fa593d66 432
c2a66c29 433# check whether to enable the inprocess agent
fa593d66
PA
434if test "$ipa_obj" != "" \
435 -a "$gdbsrv_cv_have_sync_builtins" = yes \
436 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
437 have_ipa=true
438else
439 have_ipa=false
440fi
441
442AC_ARG_ENABLE(inprocess-agent,
443AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
444[case "$enableval" in
445 yes) want_ipa=true ;;
446 no) want_ipa=false ;;
447 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
448esac],
449[want_ipa=$have_ipa])
450
451if $want_ipa ; then
452 if $have_ipa ; then
453 IPA_DEPFILES="$ipa_obj"
454 extra_libraries="$extra_libraries libinproctrace.so"
455 else
456 AC_MSG_ERROR([inprocess agent not supported for this target])
457 fi
fa593d66
PA
458fi
459
7ea81414 460AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 461AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
462AC_SUBST(srv_xmlbuiltin)
463AC_SUBST(srv_xmlfiles)
fa593d66
PA
464AC_SUBST(IPA_DEPFILES)
465AC_SUBST(extra_libraries)
c906108c 466
c971b7fa 467GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
468
469GNULIB_STDINT_H=
470if test x"$STDINT_H" != x; then
c971b7fa 471 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
472fi
473AC_SUBST(GNULIB_STDINT_H)
474
c971b7fa 475AC_OUTPUT(Makefile,
c3a3ccc7
DJ
476[case x$CONFIG_HEADERS in
477xconfig.h:config.in)
478echo > stamp-h ;;
479esac
480])
This page took 1.147201 seconds and 4 git commands to generate.