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