Update description of the -plugin option used by the linker, ar and nm.
[deliverable/binutils-gdb.git] / gdb / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
61baf725 2dnl Copyright (C) 2000-2017 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
648d586d
JB
66gnulib_extra_configure_args=
67# If large-file support is disabled, make sure gnulib does the same.
68if test "$enable_largefile" = no; then
69gnulib_extra_configure_args="$gnulib_extra_configure_args --disable-largefile"
70fi
71
c971b7fa
PA
72# Configure gnulib. We can't use AC_CONFIG_SUBDIRS as that'd expect
73# to find the the source subdir to be configured directly under
74# gdbserver/. We need to build gnulib under some other directory not
75# "gnulib", to avoid the problem of both GDB and GDBserver wanting to
76# build it in the same directory, when building in the source dir.
648d586d
JB
77ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"],
78 ["$gnulib_extra_configure_args"])
c971b7fa 79
0b04e523
TT
80ACX_CONFIGURE_DIR(["../../libiberty"], ["build-libiberty-gdbserver"])
81
0d62e5e8 82AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl
1bd2f0ba 83 proc_service.h sys/procfs.h linux/elf.h dnl
9c232dda 84 fcntl.h signal.h sys/file.h dnl
61ff6e04 85 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
1bd2f0ba 86 netinet/tcp.h arpa/inet.h)
eb0edac8 87AC_FUNC_FORK
4b8b5e72 88AC_CHECK_FUNCS(getauxval pread pwrite pread64 setns)
84563040 89
3266f10b
TT
90GDB_AC_COMMON
91
eb7aa561
PA
92# Check the return and argument types of ptrace.
93GDB_AC_PTRACE
94
0fb4aa4b
PA
95# Check for UST
96ustlibs=""
97ustinc=""
98
99AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
100 Equivalent to --with-ust-include=PATH/include
101 plus --with-ust-lib=PATH/lib])
102AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
103AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
104
105case $with_ust in
106 no)
107 ustlibs=
108 ustinc=
109 ;;
110 "" | yes)
111 ustlibs=" -lust "
112 ustinc=""
113 ;;
114 *)
115 ustlibs="-L$with_ust/lib -lust"
116 ustinc="-I$with_ust/include "
117 ;;
118esac
119if test "x$with_ust_include" != x; then
120 ustinc="-I$with_ust_include "
121fi
122if test "x$with_ust_lib" != x; then
123 ustlibs="-L$with_ust_lib -lust"
124fi
125
126if test "x$with_ust" != "xno"; then
127 saved_CFLAGS="$CFLAGS"
128 CFLAGS="$CFLAGS $ustinc"
129 AC_MSG_CHECKING([for ust])
130 AC_TRY_COMPILE([
131#define CONFIG_UST_GDB_INTEGRATION
132#include <ust/ust.h>
133 ],[],
134 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
135 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
136 CFLAGS="$saved_CFLAGS"
137fi
138
139# Flags needed for UST
140AC_SUBST(ustlibs)
141AC_SUBST(ustinc)
142
8f13a3ce
MF
143AM_GDB_WARNINGS
144dnl The codebase isn't clean yet with this flag.
145case " $WARN_CFLAGS " in
146*" -Wmissing-prototypes "*)
147 WARN_CFLAGS="$WARN_CFLAGS -Wno-missing-prototypes"
148 ;;
149esac
3bc3d82a 150
10e86dd7
DE
151dnl dladdr is glibc-specific. It is used by thread-db.c but only for
152dnl debugging messages. It lives in -ldl which is handled below so we don't
153dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
154dnl augment LIBS.
155old_LIBS="$LIBS"
156LIBS="$LIBS -ldl"
157AC_CHECK_FUNCS(dladdr)
158LIBS="$old_LIBS"
159
07697489
PA
160libiberty_INIT
161
1bd2f0ba 162AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 163
791c0056
GB
164AC_CHECK_MEMBERS([struct stat.st_blocks, struct stat.st_blksize])
165
ccbd4912
MK
166AC_CHECK_TYPES(socklen_t, [], [],
167[#include <sys/types.h>
168#include <sys/socket.h>
169])
fb1e4ffc 170
64da5dd5
JB
171case "${target}" in
172 *-android*)
173 # Starting with NDK version 9, <elf.h> actually includes definitions
174 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
175 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
176 # leading to conflicts with the defintions from <linux/elf.h>.
177 # This makes it impossible for us to include both <elf.h> and
178 # <linux/elf.h>, which means that, in practice, we do not have
179 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
180 # Therefore, do not try to auto-detect availability, as it would
181 # get it wrong on this platform.
182 ;;
183 *)
184 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
185 #include <elf.h>
186 )
187esac
8365dcf5 188
c16158bc
JM
189ACX_PKGVERSION([GDB])
190ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
191AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
192AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
193
8838b45e
NS
194# Check for various supplementary target information (beyond the
195# triplet) which might affect the choices in configure.srv.
196case "${target}" in
197changequote(,)dnl
198 i[34567]86-*-linux*)
199changequote([,])dnl
200 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
201 [save_CPPFLAGS="$CPPFLAGS"
202 CPPFLAGS="$CPPFLAGS $CFLAGS"
203 AC_EGREP_CPP([got it], [
204#if __x86_64__
205got it
206#endif
207 ], [gdb_cv_i386_is_x86_64=yes],
208 [gdb_cv_i386_is_x86_64=no])
209 CPPFLAGS="$save_CPPFLAGS"])
210 ;;
201506da
PA
211
212 x86_64-*-linux*)
213 AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
214 [save_CPPFLAGS="$CPPFLAGS"
215 CPPFLAGS="$CPPFLAGS $CFLAGS"
216 AC_EGREP_CPP([got it], [
217#if __x86_64__ && __ILP32__
218got it
219#endif
220 ], [gdb_cv_x86_is_x32=yes],
221 [gdb_cv_x86_is_x32=no])
222 CPPFLAGS="$save_CPPFLAGS"])
223 ;;
224
9ac544ce
MK
225 m68k-*-*)
226 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
227 [save_CPPFLAGS="$CPPFLAGS"
228 CPPFLAGS="$CPPFLAGS $CFLAGS"
229 AC_EGREP_CPP([got it], [
230#ifdef __mcoldfire__
231got it
232#endif
233 ], [gdb_cv_m68k_is_coldfire=yes],
234 [gdb_cv_m68k_is_coldfire=no])
235 CPPFLAGS="$save_CPPFLAGS"])
236 ;;
8838b45e
NS
237esac
238
7ea81414 239. ${srcdir}/configure.srv
c906108c 240
fb23d554
SDJ
241# Add in the common host objects.
242. ${srcdir}/../common/common.host
243srv_host_obs="$common_host_obs"
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)
1041a03c 309 BFD_HAVE_SYS_PROCFS_TYPE(prfpregset_t)
0d62e5e8
DJ
310 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
311fi
312
18f5fd81
TJB
313dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
314if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
315 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
316fi
317
318dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
319if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
320 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
321fi
322
193f13e6
MK
323dnl Check for libdl, but do not add it to LIBS as only gdbserver
324dnl needs it (and gdbreplay doesn't).
325old_LIBS="$LIBS"
326AC_CHECK_LIB(dl, dlopen)
327LIBS="$old_LIBS"
328
0d62e5e8
DJ
329srv_thread_depfiles=
330srv_libs=
0d62e5e8
DJ
331
332if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
333 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
334 srv_libs="-ldl"
f6528abd 335 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 336 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
337 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
338 # supported there.
339 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
340 LDFLAGS="$LDFLAGS $RDYNAMIC"
341 AC_TRY_LINK([], [],
342 [found="-Wl,--dynamic-list"
343 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
344 [RDYNAMIC="-rdynamic"
345 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
346 AC_TRY_LINK([], [],
347 [found="-rdynamic"],
348 [found="no"
349 RDYNAMIC=""])])
193f13e6
MK
350 AC_SUBST(RDYNAMIC)
351 LDFLAGS="$old_LDFLAGS"
f6528abd 352 AC_MSG_RESULT($found)
193f13e6
MK
353 else
354 srv_libs="-lthread_db"
355 fi
0d62e5e8 356
0d62e5e8 357 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 358 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
359 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
360 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
361 [gdbsrv_cv_have_td_version=yes],
362 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
363 if test $gdbsrv_cv_have_td_version = yes; then
364 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
365 fi
0d62e5e8
DJ
366fi
367
96f15937
PP
368AC_ARG_WITH(libthread-db,
369AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
370[srv_libthread_db_path="${withval}"
96f15937
PP
371 srv_libs="$srv_libthread_db_path"
372])
373
193f13e6
MK
374if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
375 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
376fi
377
9b4b61c8 378if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
379 srv_xmlbuiltin="xml-builtin.o"
380 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
381
382 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 383 srv_xmlfiles=""
fb1e4ffc
DJ
384 for f in $tmp_xmlfiles; do
385 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
386 done
387fi
388
fb23d554 389GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 390GDBSERVER_LIBS="$srv_libs"
c906108c 391
fa593d66
PA
392dnl Check whether the target supports __sync_*_compare_and_swap.
393AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
394 gdbsrv_cv_have_sync_builtins, [
395AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
396 gdbsrv_cv_have_sync_builtins=yes,
397 gdbsrv_cv_have_sync_builtins=no)])
398if test $gdbsrv_cv_have_sync_builtins = yes; then
399 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
400 [Define to 1 if the target supports __sync_*_compare_and_swap])
401fi
402
403dnl Check for -fvisibility=hidden support in the compiler.
404saved_cflags="$CFLAGS"
405CFLAGS="$CFLAGS -fvisibility=hidden"
406AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
407 [gdbsrv_cv_have_visibility_hidden=yes],
408 [gdbsrv_cv_have_visibility_hidden=no])
409CFLAGS="$saved_cflags"
410
03583c20
UW
411dnl Check if we can disable the virtual address space randomization.
412dnl The functionality of setarch -R.
413AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
414define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
415# if !HAVE_DECL_ADDR_NO_RANDOMIZE
416# define ADDR_NO_RANDOMIZE 0x0040000
417# endif
418 /* Test the flag could be set and stays set. */
419 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
420 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
421 return 1])])
422AC_RUN_IFELSE([PERSONALITY_TEST],
423 [gdbsrv_cv_have_personality=true],
424 [gdbsrv_cv_have_personality=false],
425 [AC_LINK_IFELSE([PERSONALITY_TEST],
426 [gdbsrv_cv_have_personality=true],
427 [gdbsrv_cv_have_personality=false])])
428if $gdbsrv_cv_have_personality
429then
430 AC_DEFINE([HAVE_PERSONALITY], 1,
431 [Define if you support the personality syscall.])
432fi
433
c2a66c29 434
fa593d66 435IPA_DEPFILES=""
c2a66c29 436extra_libraries=""
fa593d66 437
c2a66c29 438# check whether to enable the inprocess agent
fa593d66
PA
439if test "$ipa_obj" != "" \
440 -a "$gdbsrv_cv_have_sync_builtins" = yes \
441 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
442 have_ipa=true
443else
444 have_ipa=false
445fi
446
447AC_ARG_ENABLE(inprocess-agent,
448AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
449[case "$enableval" in
450 yes) want_ipa=true ;;
451 no) want_ipa=false ;;
452 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
453esac],
454[want_ipa=$have_ipa])
455
456if $want_ipa ; then
457 if $have_ipa ; then
458 IPA_DEPFILES="$ipa_obj"
459 extra_libraries="$extra_libraries libinproctrace.so"
460 else
461 AC_MSG_ERROR([inprocess agent not supported for this target])
462 fi
fa593d66
PA
463fi
464
7ea81414 465AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 466AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
467AC_SUBST(srv_xmlbuiltin)
468AC_SUBST(srv_xmlfiles)
fa593d66
PA
469AC_SUBST(IPA_DEPFILES)
470AC_SUBST(extra_libraries)
c906108c 471
c971b7fa 472GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
473
474GNULIB_STDINT_H=
475if test x"$STDINT_H" != x; then
c971b7fa 476 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
477fi
478AC_SUBST(GNULIB_STDINT_H)
479
1e94266c 480AC_CONFIG_FILES([Makefile],
c3a3ccc7
DJ
481[case x$CONFIG_HEADERS in
482xconfig.h:config.in)
483echo > stamp-h ;;
484esac
485])
1e94266c
SM
486
487AC_OUTPUT
This page took 1.18209 seconds and 4 git commands to generate.