remove unused gdbserver configury
[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
1bd2f0ba 82 proc_service.h sys/procfs.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
1bd2f0ba
TT
86 netinet/tcp.h arpa/inet.h)
87AC_CHECK_FUNCS(pread pwrite pread64 readlink)
c9a1864a 88AC_REPLACE_FUNCS(vasprintf vsnprintf)
84563040 89
3266f10b
TT
90GDB_AC_COMMON
91
0fb4aa4b
PA
92# Check for UST
93ustlibs=""
94ustinc=""
95
96AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
97 Equivalent to --with-ust-include=PATH/include
98 plus --with-ust-lib=PATH/lib])
99AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
100AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
101
102case $with_ust in
103 no)
104 ustlibs=
105 ustinc=
106 ;;
107 "" | yes)
108 ustlibs=" -lust "
109 ustinc=""
110 ;;
111 *)
112 ustlibs="-L$with_ust/lib -lust"
113 ustinc="-I$with_ust/include "
114 ;;
115esac
116if test "x$with_ust_include" != x; then
117 ustinc="-I$with_ust_include "
118fi
119if test "x$with_ust_lib" != x; then
120 ustlibs="-L$with_ust_lib -lust"
121fi
122
123if test "x$with_ust" != "xno"; then
124 saved_CFLAGS="$CFLAGS"
125 CFLAGS="$CFLAGS $ustinc"
126 AC_MSG_CHECKING([for ust])
127 AC_TRY_COMPILE([
128#define CONFIG_UST_GDB_INTEGRATION
129#include <ust/ust.h>
130 ],[],
131 [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
132 [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ])
133 CFLAGS="$saved_CFLAGS"
134fi
135
136# Flags needed for UST
137AC_SUBST(ustlibs)
138AC_SUBST(ustinc)
139
d4596a3d
PA
140AC_ARG_ENABLE(werror,
141 AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]),
142 [case "${enableval}" in
143 yes | y) ERROR_ON_WARNING="yes" ;;
144 no | n) ERROR_ON_WARNING="no" ;;
145 *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;;
146 esac])
147
148# Enable -Werror by default when using gcc
149if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then
150 ERROR_ON_WARNING=yes
151fi
152
153WERROR_CFLAGS=""
154if test "${ERROR_ON_WARNING}" = yes ; then
155 WERROR_CFLAGS="-Werror"
156fi
157
158build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \
8c29b58e 159-Wformat-nonliteral -Wno-char-subscripts -Wempty-body"
d4596a3d
PA
160
161WARN_CFLAGS=""
162if test "x$GCC" = xyes
163then
164 AC_MSG_CHECKING(compiler warning flags)
165 # Separate out the -Werror flag as some files just cannot be
166 # compiled with it enabled.
167 for w in ${build_warnings}; do
168 case $w in
169 -Werr*) WERROR_CFLAGS=-Werror ;;
170 *) # Check that GCC accepts it
171 saved_CFLAGS="$CFLAGS"
172 CFLAGS="$CFLAGS $w"
173 AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",)
174 CFLAGS="$saved_CFLAGS"
175 esac
176 done
177 AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS})
178fi
179AC_SUBST(WARN_CFLAGS)
180AC_SUBST(WERROR_CFLAGS)
181
10e86dd7
DE
182dnl dladdr is glibc-specific. It is used by thread-db.c but only for
183dnl debugging messages. It lives in -ldl which is handled below so we don't
184dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
185dnl augment LIBS.
186old_LIBS="$LIBS"
187LIBS="$LIBS -ldl"
188AC_CHECK_FUNCS(dladdr)
189LIBS="$old_LIBS"
190
1bd2f0ba 191AC_CHECK_DECLS([strerror, perror, vasprintf, vsnprintf])
43d5792c 192
ccbd4912
MK
193AC_CHECK_TYPES(socklen_t, [], [],
194[#include <sys/types.h>
195#include <sys/socket.h>
196])
fb1e4ffc 197
8365dcf5
TJB
198AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
199#include <elf.h>
200)
201
c16158bc
JM
202ACX_PKGVERSION([GDB])
203ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
204AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
205AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
206
8838b45e
NS
207# Check for various supplementary target information (beyond the
208# triplet) which might affect the choices in configure.srv.
209case "${target}" in
210changequote(,)dnl
211 i[34567]86-*-linux*)
212changequote([,])dnl
213 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
214 [save_CPPFLAGS="$CPPFLAGS"
215 CPPFLAGS="$CPPFLAGS $CFLAGS"
216 AC_EGREP_CPP([got it], [
217#if __x86_64__
218got it
219#endif
220 ], [gdb_cv_i386_is_x86_64=yes],
221 [gdb_cv_i386_is_x86_64=no])
222 CPPFLAGS="$save_CPPFLAGS"])
223 ;;
9ac544ce
MK
224 m68k-*-*)
225 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
226 [save_CPPFLAGS="$CPPFLAGS"
227 CPPFLAGS="$CPPFLAGS $CFLAGS"
228 AC_EGREP_CPP([got it], [
229#ifdef __mcoldfire__
230got it
231#endif
232 ], [gdb_cv_m68k_is_coldfire=yes],
233 [gdb_cv_m68k_is_coldfire=no])
234 CPPFLAGS="$save_CPPFLAGS"])
235 ;;
8838b45e
NS
236esac
237
7ea81414 238. ${srcdir}/configure.srv
c906108c 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)
0d62e5e8
DJ
304 BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t)
305fi
306
18f5fd81
TJB
307dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
308if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
309 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
310fi
311
312dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
313if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
314 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
315fi
316
193f13e6
MK
317dnl Check for libdl, but do not add it to LIBS as only gdbserver
318dnl needs it (and gdbreplay doesn't).
319old_LIBS="$LIBS"
320AC_CHECK_LIB(dl, dlopen)
321LIBS="$old_LIBS"
322
0d62e5e8
DJ
323srv_thread_depfiles=
324srv_libs=
0d62e5e8
DJ
325
326if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
327 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
328 srv_libs="-ldl"
f6528abd 329 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 330 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
331 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
332 # supported there.
333 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
334 LDFLAGS="$LDFLAGS $RDYNAMIC"
335 AC_TRY_LINK([], [],
336 [found="-Wl,--dynamic-list"
337 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
338 [RDYNAMIC="-rdynamic"
339 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
340 AC_TRY_LINK([], [],
341 [found="-rdynamic"],
342 [found="no"
343 RDYNAMIC=""])])
193f13e6
MK
344 AC_SUBST(RDYNAMIC)
345 LDFLAGS="$old_LDFLAGS"
f6528abd 346 AC_MSG_RESULT($found)
193f13e6
MK
347 else
348 srv_libs="-lthread_db"
349 fi
0d62e5e8 350
0d62e5e8 351 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 352 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
3db0444b
DJ
353 AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version,
354 [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;],
1b3f6016
PA
355 [gdbsrv_cv_have_td_version=yes],
356 [gdbsrv_cv_have_td_version=no])])
3db0444b
DJ
357 if test $gdbsrv_cv_have_td_version = yes; then
358 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
359 fi
0d62e5e8
DJ
360fi
361
96f15937
PP
362AC_ARG_WITH(libthread-db,
363AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
364[srv_libthread_db_path="${withval}"
96f15937
PP
365 srv_libs="$srv_libthread_db_path"
366])
367
193f13e6
MK
368if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
369 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
370fi
371
9b4b61c8 372if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
373 srv_xmlbuiltin="xml-builtin.o"
374 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
375
376 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 377 srv_xmlfiles=""
fb1e4ffc
DJ
378 for f in $tmp_xmlfiles; do
379 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
380 done
381fi
382
59a016f0 383GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
0d62e5e8 384GDBSERVER_LIBS="$srv_libs"
c906108c 385
fa593d66
PA
386dnl Check whether the target supports __sync_*_compare_and_swap.
387AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap],
388 gdbsrv_cv_have_sync_builtins, [
389AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);],
390 gdbsrv_cv_have_sync_builtins=yes,
391 gdbsrv_cv_have_sync_builtins=no)])
392if test $gdbsrv_cv_have_sync_builtins = yes; then
393 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
394 [Define to 1 if the target supports __sync_*_compare_and_swap])
395fi
396
397dnl Check for -fvisibility=hidden support in the compiler.
398saved_cflags="$CFLAGS"
399CFLAGS="$CFLAGS -fvisibility=hidden"
400AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]),
401 [gdbsrv_cv_have_visibility_hidden=yes],
402 [gdbsrv_cv_have_visibility_hidden=no])
403CFLAGS="$saved_cflags"
404
03583c20
UW
405dnl Check if we can disable the virtual address space randomization.
406dnl The functionality of setarch -R.
407AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>])
408define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [
409# if !HAVE_DECL_ADDR_NO_RANDOMIZE
410# define ADDR_NO_RANDOMIZE 0x0040000
411# endif
412 /* Test the flag could be set and stays set. */
413 personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE);
414 if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE))
415 return 1])])
416AC_RUN_IFELSE([PERSONALITY_TEST],
417 [gdbsrv_cv_have_personality=true],
418 [gdbsrv_cv_have_personality=false],
419 [AC_LINK_IFELSE([PERSONALITY_TEST],
420 [gdbsrv_cv_have_personality=true],
421 [gdbsrv_cv_have_personality=false])])
422if $gdbsrv_cv_have_personality
423then
424 AC_DEFINE([HAVE_PERSONALITY], 1,
425 [Define if you support the personality syscall.])
426fi
427
c2a66c29 428
fa593d66 429IPA_DEPFILES=""
c2a66c29 430extra_libraries=""
fa593d66 431
c2a66c29 432# check whether to enable the inprocess agent
fa593d66
PA
433if test "$ipa_obj" != "" \
434 -a "$gdbsrv_cv_have_sync_builtins" = yes \
435 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
436 have_ipa=true
437else
438 have_ipa=false
439fi
440
441AC_ARG_ENABLE(inprocess-agent,
442AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
443[case "$enableval" in
444 yes) want_ipa=true ;;
445 no) want_ipa=false ;;
446 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
447esac],
448[want_ipa=$have_ipa])
449
450if $want_ipa ; then
451 if $have_ipa ; then
452 IPA_DEPFILES="$ipa_obj"
453 extra_libraries="$extra_libraries libinproctrace.so"
454 else
455 AC_MSG_ERROR([inprocess agent not supported for this target])
456 fi
fa593d66
PA
457fi
458
7ea81414 459AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 460AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
461AC_SUBST(srv_xmlbuiltin)
462AC_SUBST(srv_xmlfiles)
fa593d66
PA
463AC_SUBST(IPA_DEPFILES)
464AC_SUBST(extra_libraries)
c906108c 465
c971b7fa 466GNULIB=build-gnulib-gdbserver/import
c9a1864a
YQ
467
468GNULIB_STDINT_H=
469if test x"$STDINT_H" != x; then
c971b7fa 470 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
471fi
472AC_SUBST(GNULIB_STDINT_H)
473
c971b7fa 474AC_OUTPUT(Makefile,
c3a3ccc7
DJ
475[case x$CONFIG_HEADERS in
476xconfig.h:config.in)
477echo > stamp-h ;;
478esac
479])
This page took 1.025079 seconds and 4 git commands to generate.