]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdbserver/configure.ac
Update copyright year range in all GDB files
[thirdparty/binutils-gdb.git] / gdbserver / configure.ac
CommitLineData
d6e9fb05 1dnl Autoconf configure script for GDB server.
3666a048 2dnl Copyright (C) 2000-2021 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
7e8c7130
SM
21AC_INIT
22AC_CONFIG_SRCDIR([server.cc])
c5adaa19 23AC_CONFIG_HEADERS(config.h:config.in, [echo > stamp-h])
c9a1864a
YQ
24
25AM_MAINTAINER_MODE
84563040
DJ
26
27AC_PROG_CC
3bc3d82a 28AC_PROG_CXX
7e8c7130 29AC_USE_SYSTEM_EXTENSIONS
589bc927 30AC_SYS_LARGEFILE
bdaed379 31AM_PROG_INSTALL_STRIP
d6e9fb05 32
91e1a0ed
SM
33# Set build, build_cpu, build_vendor and build_os.
34AC_CANONICAL_BUILD
35
36# Set host, host_cpu, host_vendor, and host_os.
37AC_CANONICAL_HOST
38
39# Set target, target_cpu, target_vendor, and target_os.
40AC_CANONICAL_TARGET
84563040 41
d6e9fb05 42AC_PROG_INSTALL
e1d2394b 43AC_CHECK_TOOL(AR, ar)
c971b7fa 44AC_PROG_RANLIB
c906108c 45
dcdb98d2
DJ
46AC_ARG_PROGRAM
47
0bcda685
PA
48# We require a C++11 compiler. Check if one is available, and if
49# necessary, set CXX_DIALECT to some -std=xxx switch.
50AX_CXX_COMPILE_STDCXX(11, , mandatory)
51
ee6e2b82 52AC_HEADER_STDC
84563040 53
db6878ac 54GDB_AC_COMMON
4635ff97
TT
55# This is set by GDB_AC_COMMON.
56AC_SUBST(WIN32APILIBS)
17ef446e 57
4635ff97 58GDB_AC_SELFTEST
6d580b63 59
bd885420
YQ
60ACX_NONCANONICAL_TARGET
61ACX_NONCANONICAL_HOST
62
61c125b9
TT
63# Dependency checking.
64ZW_CREATE_DEPDIR
60d6cfc9 65
9a665d62
TT
66dnl Set up for gettext.
67ZW_GNU_GETTEXT_SISTER_DIR
68
60d6cfc9 69# Create sub-directories for objects and dependencies.
42cd72aa 70CONFIG_SRC_SUBDIR="arch gdbsupport nat target"
60d6cfc9
YQ
71AC_SUBST(CONFIG_SRC_SUBDIR)
72
73AC_CONFIG_COMMANDS([gdbdepdir],[
74 for subdir in ${CONFIG_SRC_SUBDIR}
75 do
76 $SHELL $ac_aux_dir/mkinstalldirs $subdir/$DEPDIR
77 done],
78 [ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR CONFIG_SRC_SUBDIR="$CONFIG_SRC_SUBDIR"])
79
61c125b9
TT
80ZW_PROG_COMPILER_DEPENDENCIES([CC])
81
726e1356 82AC_CHECK_HEADERS(termios.h sys/reg.h string.h dnl
05ea2a05 83 sys/procfs.h linux/elf.h dnl
9c232dda 84 fcntl.h signal.h sys/file.h dnl
80e24d09 85 sys/ioctl.h netinet/in.h sys/socket.h netdb.h dnl
05a6b8c2 86 netinet/tcp.h arpa/inet.h ws2tcpip.h)
eb0edac8 87AC_FUNC_FORK
05ea2a05 88AC_CHECK_FUNCS(pread pwrite pread64)
84563040 89
eb7aa561
PA
90# Check the return and argument types of ptrace.
91GDB_AC_PTRACE
92
0fb4aa4b
PA
93# Check for UST
94ustlibs=""
95ustinc=""
96
97AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package
98 Equivalent to --with-ust-include=PATH/include
99 plus --with-ust-lib=PATH/lib])
100AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files])
101AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library])
102
103case $with_ust in
104 no)
105 ustlibs=
106 ustinc=
107 ;;
108 "" | yes)
109 ustlibs=" -lust "
110 ustinc=""
111 ;;
112 *)
113 ustlibs="-L$with_ust/lib -lust"
114 ustinc="-I$with_ust/include "
115 ;;
116esac
117if test "x$with_ust_include" != x; then
118 ustinc="-I$with_ust_include "
119fi
120if test "x$with_ust_lib" != x; then
121 ustlibs="-L$with_ust_lib -lust"
122fi
123
124if test "x$with_ust" != "xno"; then
125 saved_CFLAGS="$CFLAGS"
126 CFLAGS="$CFLAGS $ustinc"
127 AC_MSG_CHECKING([for ust])
7e8c7130
SM
128 AC_COMPILE_IFELSE(
129 [AC_LANG_PROGRAM(
130 [
0fb4aa4b
PA
131#define CONFIG_UST_GDB_INTEGRATION
132#include <ust/ust.h>
7e8c7130
SM
133 ],
134 []
135 )],
136 [AC_MSG_RESULT([yes]);
137 AC_DEFINE(HAVE_UST, 1, [Define if UST is available])],
138 [AC_MSG_RESULT([no])
139 ustlibs= ; ustinc= ]
140 )
0fb4aa4b
PA
141 CFLAGS="$saved_CFLAGS"
142fi
143
144# Flags needed for UST
145AC_SUBST(ustlibs)
146AC_SUBST(ustinc)
147
8f13a3ce 148AM_GDB_WARNINGS
3bc3d82a 149
10e86dd7
DE
150dnl dladdr is glibc-specific. It is used by thread-db.c but only for
151dnl debugging messages. It lives in -ldl which is handled below so we don't
152dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily
153dnl augment LIBS.
154old_LIBS="$LIBS"
155LIBS="$LIBS -ldl"
156AC_CHECK_FUNCS(dladdr)
157LIBS="$old_LIBS"
158
07697489
PA
159libiberty_INIT
160
ab7d13f0 161AC_CHECK_DECLS([perror, vasprintf, vsnprintf])
43d5792c 162
ccbd4912
MK
163AC_CHECK_TYPES(socklen_t, [], [],
164[#include <sys/types.h>
05a6b8c2
EZ
165#if HAVE_SYS_SOCKET_H
166# include <sys/socket.h>
167#elif HAVE_WS2TCPIP_H
168# include <ws2tcpip.h>
169#endif
ccbd4912 170])
fb1e4ffc 171
64da5dd5
JB
172case "${target}" in
173 *-android*)
174 # Starting with NDK version 9, <elf.h> actually includes definitions
175 # of Elf32_auxv_t and Elf64_auxv_t. But sadly, <elf.h> includes
176 # <sys/exec_elf.h> which defines some of the ELF types incorrectly,
177 # leading to conflicts with the defintions from <linux/elf.h>.
178 # This makes it impossible for us to include both <elf.h> and
179 # <linux/elf.h>, which means that, in practice, we do not have
180 # access to Elf32_auxv_t and Elf64_auxv_t on this platform.
181 # Therefore, do not try to auto-detect availability, as it would
182 # get it wrong on this platform.
183 ;;
184 *)
185 AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [],
186 #include <elf.h>
187 )
188esac
8365dcf5 189
c16158bc
JM
190ACX_PKGVERSION([GDB])
191ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/])
192AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description])
193AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address])
194
8838b45e
NS
195# Check for various supplementary target information (beyond the
196# triplet) which might affect the choices in configure.srv.
197case "${target}" in
198changequote(,)dnl
199 i[34567]86-*-linux*)
200changequote([,])dnl
201 AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64],
202 [save_CPPFLAGS="$CPPFLAGS"
203 CPPFLAGS="$CPPFLAGS $CFLAGS"
204 AC_EGREP_CPP([got it], [
205#if __x86_64__
206got it
207#endif
208 ], [gdb_cv_i386_is_x86_64=yes],
209 [gdb_cv_i386_is_x86_64=no])
210 CPPFLAGS="$save_CPPFLAGS"])
211 ;;
201506da
PA
212
213 x86_64-*-linux*)
214 AC_CACHE_CHECK([if building for x32], [gdb_cv_x86_is_x32],
215 [save_CPPFLAGS="$CPPFLAGS"
216 CPPFLAGS="$CPPFLAGS $CFLAGS"
217 AC_EGREP_CPP([got it], [
218#if __x86_64__ && __ILP32__
219got it
220#endif
221 ], [gdb_cv_x86_is_x32=yes],
222 [gdb_cv_x86_is_x32=no])
223 CPPFLAGS="$save_CPPFLAGS"])
224 ;;
225
9ac544ce
MK
226 m68k-*-*)
227 AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire],
228 [save_CPPFLAGS="$CPPFLAGS"
229 CPPFLAGS="$CPPFLAGS $CFLAGS"
230 AC_EGREP_CPP([got it], [
231#ifdef __mcoldfire__
232got it
233#endif
234 ], [gdb_cv_m68k_is_coldfire=yes],
235 [gdb_cv_m68k_is_coldfire=no])
236 CPPFLAGS="$save_CPPFLAGS"])
237 ;;
8838b45e
NS
238esac
239
7ea81414 240. ${srcdir}/configure.srv
c906108c 241
68070c10
PA
242if test "${srv_mingwce}" = "yes"; then
243 LIBS="$LIBS -lws2"
244elif test "${srv_mingw}" = "yes"; then
b2ceabe8
TT
245 # WIN32APILIBS is set by GDB_AC_COMMON.
246 LIBS="$LIBS $WIN32APILIBS"
68070c10
PA
247fi
248
58caa3dc 249if test "${srv_linux_usrregs}" = "yes"; then
f450004a
DJ
250 AC_DEFINE(HAVE_LINUX_USRREGS, 1,
251 [Define if the target supports PTRACE_PEEKUSR for register ]
252 [access.])
58caa3dc
DJ
253fi
254
255if test "${srv_linux_regsets}" = "yes"; then
e9d25b98
DJ
256 AC_DEFINE(HAVE_LINUX_REGSETS, 1,
257 [Define if the target supports register sets.])
258
58caa3dc 259 AC_MSG_CHECKING(for PTRACE_GETREGS)
7e8c7130
SM
260 AC_CACHE_VAL(
261 [gdbsrv_cv_have_ptrace_getregs],
262 [AC_COMPILE_IFELSE(
263 [AC_LANG_PROGRAM([#include <sys/ptrace.h>], [PTRACE_GETREGS;])],
264 [gdbsrv_cv_have_ptrace_getregs=yes],
265 [gdbsrv_cv_have_ptrace_getregs=no]
266 )]
267 )
58caa3dc
DJ
268 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs)
269 if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then
e9d25b98 270 AC_DEFINE(HAVE_PTRACE_GETREGS, 1,
f450004a
DJ
271 [Define if the target supports PTRACE_GETREGS for register ]
272 [access.])
58caa3dc
DJ
273 fi
274
275 AC_MSG_CHECKING(for PTRACE_GETFPXREGS)
7e8c7130
SM
276 AC_CACHE_VAL(
277 [gdbsrv_cv_have_ptrace_getfpxregs],
278 [AC_COMPILE_IFELSE(
279 [AC_LANG_PROGRAM([#include <sys/ptrace.h>], [PTRACE_GETFPXREGS;])],
280 [gdbsrv_cv_have_ptrace_getfpxregs=yes],
281 [gdbsrv_cv_have_ptrace_getfpxregs=no]
282 )]
283 )
58caa3dc
DJ
284 AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs)
285 if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then
f450004a
DJ
286 AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1,
287 [Define if the target supports PTRACE_GETFPXREGS for extended ]
288 [register access.])
58caa3dc
DJ
289 fi
290fi
291
9accd112
MM
292if test "${srv_linux_btrace}" = "yes"; then
293 AC_DEFINE(HAVE_LINUX_BTRACE, 1,
294 [Define if the target supports branch tracing.])
295fi
296
18f5fd81
TJB
297dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h.
298if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then
299 GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t)
300fi
301
302dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h.
303if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then
304 GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t)
305fi
306
193f13e6
MK
307dnl Check for libdl, but do not add it to LIBS as only gdbserver
308dnl needs it (and gdbreplay doesn't).
309old_LIBS="$LIBS"
310AC_CHECK_LIB(dl, dlopen)
311LIBS="$old_LIBS"
312
0d62e5e8
DJ
313srv_thread_depfiles=
314srv_libs=
0d62e5e8
DJ
315
316if test "$srv_linux_thread_db" = "yes"; then
193f13e6
MK
317 if test "$ac_cv_lib_dl_dlopen" = "yes"; then
318 srv_libs="-ldl"
f6528abd 319 AC_MSG_CHECKING(for the dynamic export flag)
193f13e6 320 old_LDFLAGS="$LDFLAGS"
f6528abd
JK
321 # Older GNU ld supports --export-dynamic but --dynamic-list may not be
322 # supported there.
323 RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list"
324 LDFLAGS="$LDFLAGS $RDYNAMIC"
7e8c7130
SM
325 AC_LINK_IFELSE(
326 [AC_LANG_PROGRAM([],[])],
327 [found="-Wl,--dynamic-list"
328 RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'],
329 [RDYNAMIC="-rdynamic"
330 LDFLAGS="$old_LDFLAGS $RDYNAMIC"
331 AC_LINK_IFELSE(
332 [AC_LANG_PROGRAM([], [])],
333 [found="-rdynamic"],
334 [found="no"
335 RDYNAMIC=""]
336 )]
337 )
193f13e6
MK
338 AC_SUBST(RDYNAMIC)
339 LDFLAGS="$old_LDFLAGS"
f6528abd 340 AC_MSG_RESULT($found)
193f13e6
MK
341 else
342 srv_libs="-lthread_db"
343 fi
0d62e5e8 344
0d62e5e8 345 srv_thread_depfiles="thread-db.o proc-service.o"
7d4e5717 346 AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.])
7e8c7130
SM
347 AC_CACHE_CHECK(
348 [for TD_VERSION],
349 [gdbsrv_cv_have_td_version],
350 [AC_COMPILE_IFELSE(
351 [AC_LANG_PROGRAM([#include <thread_db.h>], [TD_VERSION;])],
352 [gdbsrv_cv_have_td_version=yes],
353 [gdbsrv_cv_have_td_version=no]
354 )]
355 )
0ad6b8ee 356 if test "$gdbsrv_cv_have_td_version" = yes; then
3db0444b
DJ
357 AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.])
358 fi
0d62e5e8
DJ
359fi
360
96f15937
PP
361AC_ARG_WITH(libthread-db,
362AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]),
363[srv_libthread_db_path="${withval}"
96f15937
PP
364 srv_libs="$srv_libthread_db_path"
365])
366
193f13e6
MK
367if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then
368 AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.])
369fi
370
9b4b61c8 371if test "$srv_xmlfiles" != ""; then
fb1e4ffc
DJ
372 srv_xmlbuiltin="xml-builtin.o"
373 AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.])
374
375 tmp_xmlfiles=$srv_xmlfiles
9b4b61c8 376 srv_xmlfiles=""
fb1e4ffc
DJ
377 for f in $tmp_xmlfiles; do
378 srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f"
379 done
380fi
381
4635ff97 382GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles"
0d62e5e8 383GDBSERVER_LIBS="$srv_libs"
c906108c 384
fa593d66 385dnl Check whether the target supports __sync_*_compare_and_swap.
7e8c7130
SM
386AC_CACHE_CHECK(
387 [whether the target supports __sync_*_compare_and_swap],
388 [gdbsrv_cv_have_sync_builtins],
389 [AC_LINK_IFELSE(
390 [AC_LANG_PROGRAM(
391 [],
392 [int foo, bar;
393 bar = __sync_val_compare_and_swap(&foo, 0, 1);]
394 )],
395 [gdbsrv_cv_have_sync_builtins=yes],
396 [gdbsrv_cv_have_sync_builtins=no]
397 )]
398)
0ad6b8ee 399if test "$gdbsrv_cv_have_sync_builtins" = yes; then
fa593d66
PA
400 AC_DEFINE(HAVE_SYNC_BUILTINS, 1,
401 [Define to 1 if the target supports __sync_*_compare_and_swap])
402fi
403
404dnl Check for -fvisibility=hidden support in the compiler.
405saved_cflags="$CFLAGS"
406CFLAGS="$CFLAGS -fvisibility=hidden"
d0ac1c44 407AC_COMPILE_IFELSE([AC_LANG_PROGRAM([])],
fa593d66
PA
408 [gdbsrv_cv_have_visibility_hidden=yes],
409 [gdbsrv_cv_have_visibility_hidden=no])
410CFLAGS="$saved_cflags"
411
412IPA_DEPFILES=""
c2a66c29 413extra_libraries=""
fa593d66 414
c2a66c29 415# check whether to enable the inprocess agent
fa593d66
PA
416if test "$ipa_obj" != "" \
417 -a "$gdbsrv_cv_have_sync_builtins" = yes \
418 -a "$gdbsrv_cv_have_visibility_hidden" = yes; then
c2a66c29
NS
419 have_ipa=true
420else
421 have_ipa=false
422fi
423
424AC_ARG_ENABLE(inprocess-agent,
425AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]),
426[case "$enableval" in
427 yes) want_ipa=true ;;
428 no) want_ipa=false ;;
429 *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;;
430esac],
431[want_ipa=$have_ipa])
432
433if $want_ipa ; then
434 if $have_ipa ; then
435 IPA_DEPFILES="$ipa_obj"
436 extra_libraries="$extra_libraries libinproctrace.so"
437 else
438 AC_MSG_ERROR([inprocess agent not supported for this target])
439 fi
fa593d66
PA
440fi
441
7ea81414 442AC_SUBST(GDBSERVER_DEPFILES)
0d62e5e8 443AC_SUBST(GDBSERVER_LIBS)
fb1e4ffc
DJ
444AC_SUBST(srv_xmlbuiltin)
445AC_SUBST(srv_xmlfiles)
fa593d66
PA
446AC_SUBST(IPA_DEPFILES)
447AC_SUBST(extra_libraries)
c906108c 448
1a627e7e 449GNULIB=../gnulib/import
c9a1864a
YQ
450
451GNULIB_STDINT_H=
452if test x"$STDINT_H" != x; then
c971b7fa 453 GNULIB_STDINT_H=$GNULIB/$STDINT_H
c9a1864a
YQ
454fi
455AC_SUBST(GNULIB_STDINT_H)
456
c5adaa19 457AC_CONFIG_FILES([Makefile])
1e94266c
SM
458
459AC_OUTPUT