]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdbserver/configure.ac
Fixes a problem recognizing libraries created by Visual Studio.
[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)
cdf43629 93AC_CHECK_FUNCS(getauxval 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
fb23d554
SDJ
245# Add in the common host objects.
246. ${srcdir}/../common/common.host
247srv_host_obs="$common_host_obs"
248
68070c10
PA
249if test "${srv_mingwce}" = "yes"; then
250 LIBS="$LIBS -lws2"
251elif test "${srv_mingw}" = "yes"; then
12ea4b69 252 LIBS="$LIBS -lws2_32"
ac8c974e
AR
253elif test "${srv_qnx}" = "yes"; then
254 LIBS="$LIBS -lsocket"
8ed54b31
JB
255elif test "${srv_lynxos}" = "yes"; then
256 LIBS="$LIBS -lnetinet"
68070c10
PA
257fi
258
259if test "${srv_mingw}" = "yes"; then
b80864fb
DJ
260 AC_DEFINE(USE_WIN32API, 1,
261 [Define if we should use the Windows API, instead of the
262 POSIX API. On Windows, we use the Windows API when
263 building for MinGW, but the POSIX API when building
264 for Cygwin.])
265fi
266
58caa3dc 267if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
268 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
269 [Define if the target supports PTRACE_PEEKUSR for register ]
270 [access.])
58caa3dc
DJ
271fi
272
273if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
274 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
275 [Define if the target supports register sets.])
276
58caa3dc
DJ
277 AC_MSG_CHECKING(for PTRACE_GETREGS)
278 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs,
279 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
280 [PTRACE_GETREGS;],
281 [gdbsrv_cv_have_ptrace_getregs=yes],
282 [gdbsrv_cv_have_ptrace_getregs=no])])
283 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
284 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 285 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
286 [Define if the target supports PTRACE_GETREGS for register ]
287 [access.])
58caa3dc
DJ
288 fi
289
290 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
291 AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs,
292 [AC_TRY_COMPILE([#include <sys/ptrace.h>],
293 [PTRACE_GETFPXREGS;],
294 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
295 [gdbsrv_cv_have_ptrace_getfpxregs=no])])
296 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
297 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
298 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
299 [Define if the target supports PTRACE_GETFPXREGS for extended ]
300 [register access.])
58caa3dc
DJ
301 fi
302fi
303
9accd112
MM
304if test "${srv_linux_btrace}" = "yes"; then
305 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
306 [Define if the target supports branch tracing.])
307fi
308
0d62e5e8
DJ
309if test "$ac_cv_header_sys_procfs_h" = yes; then
310 BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t)
311 BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t)
312 BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t)
0d62e5e8
DJ
313 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
314fi
315
18f5fd81
TJB
316dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
317if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
318 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
319fi
320
321dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
322if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
323 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
324fi
325
193f13e6
MK
326dnl Check for libdl, but do not add it to LIBS as only gdbserver
327dnl needs it (and gdbreplay doesn't).
328old_LIBS="$LIBS"
329AC_CHECK_LIB(dl, dlopen)
330LIBS="$old_LIBS"
331
0d62e5e8
DJ
332srv_thread_depfiles=
333srv_libs=
0d62e5e8
DJ
334
335if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
336 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
337 srv_libs="-ldl"
f6528abd 338 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 339 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
340 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
341 # supported there.
342 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
343 LDFLAGS="$LDFLAGS $RDYNAMIC"
344 AC_TRY_LINK([], [],
345 [found="-Wl,--dynamic-list"
346 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
347 [RDYNAMIC="-rdynamic"
348 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
349 AC_TRY_LINK([], [],
350 [found="-rdynamic"],
351 [found="no"
352 RDYNAMIC=""])])
193f13e6
MK
353 AC_SUBST(RDYNAMIC)
354 LDFLAGS="$old_LDFLAGS"
f6528abd 355 AC_MSG_RESULT($found)
193f13e6
MK
356 else
357 srv_libs="-lthread_db"
358 fi
0d62e5e8 359
0d62e5e8 360 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 361 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
362 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
363 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
364 [gdbsrv_cv_have_td_version=yes],
365 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
366 if test $gdbsrv_cv_have_td_version = yes; then
367 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
368 fi
0d62e5e8
DJ
369fi
370
96f15937
PP
371AC_ARG_WITH(libthread-db,
372AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
373[srv_libthread_db_path="${withval}"
96f15937
PP
374 srv_libs="$srv_libthread_db_path"
375])
376
193f13e6
MK
377if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
378 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
379fi
380
9b4b61c8 381if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
382 srv_xmlbuiltin="xml-builtin.o"
383 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
384
385 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 386 srv_xmlfiles=""
fb1e4ffc
DJ
387 for f in $tmp_xmlfiles; do
388 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
389 done
390fi
391
fb23d554 392GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles $srv_host_obs"
0d62e5e8 393GDBSERVER_LIBS="$srv_libs"
c906108c 394
fa593d66
PA
395dnl Check whether the target supports __sync_*_compare_and_swap.
396AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
397 gdbsrv_cv_have_sync_builtins, [
398AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
399 gdbsrv_cv_have_sync_builtins=yes,
400 gdbsrv_cv_have_sync_builtins=no)])
401if test $gdbsrv_cv_have_sync_builtins = yes; then
402 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
403 [Define to 1 if the target supports __sync_*_compare_and_swap])
404fi
405
406dnl Check for -fvisibility=hidden support in the compiler.
407saved_cflags="$CFLAGS"
408CFLAGS="$CFLAGS -fvisibility=hidden"
409AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
410 [gdbsrv_cv_have_visibility_hidden=yes],
411 [gdbsrv_cv_have_visibility_hidden=no])
412CFLAGS="$saved_cflags"
413
03583c20
UW
414dnl Check if we can disable the virtual address space randomization.
415dnl The functionality of setarch -R.
416AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
417define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
418# if !HAVE_DECL_ADDR_NO_RANDOMIZE
419# define ADDR_NO_RANDOMIZE 0x0040000
420# endif
421 /* Test the flag could be set and stays set. */
422 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
423 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
424 return 1])])
425AC_RUN_IFELSE([PERSONALITY_TEST],
426 [gdbsrv_cv_have_personality=true],
427 [gdbsrv_cv_have_personality=false],
428 [AC_LINK_IFELSE([PERSONALITY_TEST],
429 [gdbsrv_cv_have_personality=true],
430 [gdbsrv_cv_have_personality=false])])
431if $gdbsrv_cv_have_personality
432then
433 AC_DEFINE([HAVE_PERSONALITY], 1,
434 [Define if you support the personality syscall.])
435fi
436
c2a66c29 437
fa593d66 438IPA_DEPFILES=""
c2a66c29 439extra_libraries=""
fa593d66 440
c2a66c29 441# check whether to enable the inprocess agent
fa593d66
PA
442if test "$ipa_obj" != "" \
443 -a "$gdbsrv_cv_have_sync_builtins" = yes \
444 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
445 have_ipa=true
446else
447 have_ipa=false
448fi
449
450AC_ARG_ENABLE(inprocess-agent,
451AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
452[case "$enableval" in
453 yes) want_ipa=true ;;
454 no) want_ipa=false ;;
455 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
456esac],
457[want_ipa=$have_ipa])
458
459if $want_ipa ; then
460 if $have_ipa ; then
461 IPA_DEPFILES="$ipa_obj"
462 extra_libraries="$extra_libraries libinproctrace.so"
463 else
464 AC_MSG_ERROR([inprocess agent not supported for this target])
465 fi
fa593d66
PA
466fi
467
7ea81414 468AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 469AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
470AC_SUBST(srv_xmlbuiltin)
471AC_SUBST(srv_xmlfiles)
fa593d66
PA
472AC_SUBST(IPA_DEPFILES)
473AC_SUBST(extra_libraries)
c906108c 474
c971b7fa 475GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
476
477GNULIB_STDINT_H=
478if test x"$STDINT_H" != x; then
c971b7fa 479 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
480fi
481AC_SUBST(GNULIB_STDINT_H)
482
c971b7fa 483AC_OUTPUT(Makefile,
c3a3ccc7
DJ
484[case x$CONFIG_HEADERS in
485xconfig.h:config.in)
486echo > stamp-h ;;
487esac
488])