Commit | Line | Data |
---|---|---|
d6e9fb05 | 1 | dnl Autoconf configure script for GDB server. |
28e7fd62 | 2 | dnl Copyright (C) 2000-2013 Free Software Foundation, Inc. |
d6e9fb05 JK |
3 | dnl |
4 | dnl This file is part of GDB. | |
5 | dnl | |
6 | dnl This program is free software; you can redistribute it and/or modify | |
7 | dnl it under the terms of the GNU General Public License as published by | |
5a0e3bd0 | 8 | dnl the Free Software Foundation; either version 3 of the License, or |
d6e9fb05 JK |
9 | dnl (at your option) any later version. |
10 | dnl | |
11 | dnl This program is distributed in the hope that it will be useful, | |
12 | dnl but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 | dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 | dnl GNU General Public License for more details. | |
15 | dnl | |
16 | dnl You should have received a copy of the GNU General Public License | |
5a0e3bd0 | 17 | dnl along with this program. If not, see <http://www.gnu.org/licenses/>. |
d6e9fb05 JK |
18 | |
19 | dnl Process this file with autoconf to produce a configure script. | |
20 | ||
bec39cab AC |
21 | AC_PREREQ(2.59)dnl |
22 | ||
d6e9fb05 | 23 | AC_INIT(server.c) |
84563040 | 24 | AC_CONFIG_HEADER(config.h:config.in) |
c9a1864a YQ |
25 | |
26 | AM_MAINTAINER_MODE | |
84563040 DJ |
27 | |
28 | AC_PROG_CC | |
fd462a61 | 29 | AC_GNU_SOURCE |
589bc927 | 30 | AC_SYS_LARGEFILE |
d6e9fb05 JK |
31 | |
32 | AC_CANONICAL_SYSTEM | |
84563040 | 33 | |
d6e9fb05 | 34 | AC_PROG_INSTALL |
c971b7fa | 35 | AC_PROG_RANLIB |
c906108c | 36 | |
dcdb98d2 DJ |
37 | AC_ARG_PROGRAM |
38 | ||
ee6e2b82 | 39 | AC_HEADER_STDC |
d26e3629 | 40 | AC_HEADER_DIRENT |
84563040 | 41 | |
a1723c35 | 42 | AC_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. | |
49 | if $development; then | |
50 | libmcheck_default=yes | |
51 | else | |
52 | libmcheck_default=no | |
53 | fi | |
54 | GDB_AC_LIBMCHECK(${libmcheck_default}) | |
55 | ||
bd885420 YQ |
56 | ACX_NONCANONICAL_TARGET |
57 | ACX_NONCANONICAL_HOST | |
58 | ||
61c125b9 TT |
59 | # Dependency checking. |
60 | ZW_CREATE_DEPDIR | |
61 | ZW_PROG_COMPILER_DEPENDENCIES([CC]) | |
62 | ||
c9a1864a YQ |
63 | # Check for the 'make' the user wants to use. |
64 | AC_CHECK_PROGS(MAKE, make) | |
61c125b9 TT |
65 | MAKE_IS_GNU= |
66 | case "`$MAKE --version 2>&1 | sed 1q`" in | |
67 | *GNU*) | |
68 | MAKE_IS_GNU=yes | |
69 | ;; | |
70 | esac | |
71 | AM_CONDITIONAL(GMAKE, test "$MAKE_IS_GNU" = yes) | |
72 | AC_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. | |
79 | ACX_CONFIGURE_DIR(["../gnulib"], ["build-gnulib-gdbserver"]) | |
80 | ||
0d62e5e8 | 81 | AC_CHECK_HEADERS(sgtty.h termio.h termios.h sys/reg.h string.h dnl |
94e10508 | 82 | proc_service.h sys/procfs.h thread_db.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 |
945bf713 MM |
86 | netinet/tcp.h arpa/inet.h sys/wait.h wait.h sys/un.h dnl |
87 | linux/perf_event.h) | |
614c279d | 88 | AC_CHECK_FUNCS(pread pwrite pread64 readlink fdwalk pipe2) |
c9a1864a | 89 | AC_REPLACE_FUNCS(vasprintf vsnprintf) |
84563040 | 90 | |
0fb4aa4b PA |
91 | # Check for UST |
92 | ustlibs="" | |
93 | ustinc="" | |
94 | ||
95 | AC_ARG_WITH(ust, [ --with-ust=PATH Specify prefix directory for the installed UST package | |
96 | Equivalent to --with-ust-include=PATH/include | |
97 | plus --with-ust-lib=PATH/lib]) | |
98 | AC_ARG_WITH(ust_include, [ --with-ust-include=PATH Specify directory for installed UST include files]) | |
99 | AC_ARG_WITH(ust_lib, [ --with-ust-lib=PATH Specify the directory for the installed UST library]) | |
100 | ||
101 | case $with_ust in | |
102 | no) | |
103 | ustlibs= | |
104 | ustinc= | |
105 | ;; | |
106 | "" | yes) | |
107 | ustlibs=" -lust " | |
108 | ustinc="" | |
109 | ;; | |
110 | *) | |
111 | ustlibs="-L$with_ust/lib -lust" | |
112 | ustinc="-I$with_ust/include " | |
113 | ;; | |
114 | esac | |
115 | if test "x$with_ust_include" != x; then | |
116 | ustinc="-I$with_ust_include " | |
117 | fi | |
118 | if test "x$with_ust_lib" != x; then | |
119 | ustlibs="-L$with_ust_lib -lust" | |
120 | fi | |
121 | ||
122 | if test "x$with_ust" != "xno"; then | |
123 | saved_CFLAGS="$CFLAGS" | |
124 | CFLAGS="$CFLAGS $ustinc" | |
125 | AC_MSG_CHECKING([for ust]) | |
126 | AC_TRY_COMPILE([ | |
127 | #define CONFIG_UST_GDB_INTEGRATION | |
128 | #include <ust/ust.h> | |
129 | ],[], | |
130 | [AC_MSG_RESULT([yes]); AC_DEFINE(HAVE_UST, 1, [Define if UST is available])], | |
131 | [AC_MSG_RESULT([no]); ustlibs= ; ustinc= ]) | |
132 | CFLAGS="$saved_CFLAGS" | |
133 | fi | |
134 | ||
135 | # Flags needed for UST | |
136 | AC_SUBST(ustlibs) | |
137 | AC_SUBST(ustinc) | |
138 | ||
d4596a3d PA |
139 | AC_ARG_ENABLE(werror, |
140 | AS_HELP_STRING([--enable-werror], [treat compile warnings as errors]), | |
141 | [case "${enableval}" in | |
142 | yes | y) ERROR_ON_WARNING="yes" ;; | |
143 | no | n) ERROR_ON_WARNING="no" ;; | |
144 | *) AC_MSG_ERROR(bad value ${enableval} for --enable-werror) ;; | |
145 | esac]) | |
146 | ||
147 | # Enable -Werror by default when using gcc | |
148 | if test "${GCC}" = yes -a -z "${ERROR_ON_WARNING}" ; then | |
149 | ERROR_ON_WARNING=yes | |
150 | fi | |
151 | ||
152 | WERROR_CFLAGS="" | |
153 | if test "${ERROR_ON_WARNING}" = yes ; then | |
154 | WERROR_CFLAGS="-Werror" | |
155 | fi | |
156 | ||
157 | build_warnings="-Wall -Wdeclaration-after-statement -Wpointer-arith \ | |
8c29b58e | 158 | -Wformat-nonliteral -Wno-char-subscripts -Wempty-body" |
d4596a3d PA |
159 | |
160 | WARN_CFLAGS="" | |
161 | if test "x$GCC" = xyes | |
162 | then | |
163 | AC_MSG_CHECKING(compiler warning flags) | |
164 | # Separate out the -Werror flag as some files just cannot be | |
165 | # compiled with it enabled. | |
166 | for w in ${build_warnings}; do | |
167 | case $w in | |
168 | -Werr*) WERROR_CFLAGS=-Werror ;; | |
169 | *) # Check that GCC accepts it | |
170 | saved_CFLAGS="$CFLAGS" | |
171 | CFLAGS="$CFLAGS $w" | |
172 | AC_TRY_COMPILE([],[],WARN_CFLAGS="${WARN_CFLAGS} $w",) | |
173 | CFLAGS="$saved_CFLAGS" | |
174 | esac | |
175 | done | |
176 | AC_MSG_RESULT(${WARN_CFLAGS} ${WERROR_CFLAGS}) | |
177 | fi | |
178 | AC_SUBST(WARN_CFLAGS) | |
179 | AC_SUBST(WERROR_CFLAGS) | |
180 | ||
10e86dd7 DE |
181 | dnl dladdr is glibc-specific. It is used by thread-db.c but only for |
182 | dnl debugging messages. It lives in -ldl which is handled below so we don't | |
183 | dnl use AC_CHECK_LIB (or AC_SEARCH_LIBS) here. Instead we just temporarily | |
184 | dnl augment LIBS. | |
185 | old_LIBS="$LIBS" | |
186 | LIBS="$LIBS -ldl" | |
187 | AC_CHECK_FUNCS(dladdr) | |
188 | LIBS="$old_LIBS" | |
189 | ||
68070c10 PA |
190 | have_errno=no |
191 | AC_MSG_CHECKING(for errno) | |
192 | AC_TRY_LINK([ | |
193 | #if HAVE_ERRNO_H | |
194 | #include <errno.h> | |
195 | #endif], [static int x; x = errno;], | |
196 | [AC_MSG_RESULT(yes - in errno.h); AC_DEFINE(HAVE_ERRNO, 1, [Define if errno is available]) have_errno=yes]) | |
197 | if test $have_errno = no; then | |
198 | AC_TRY_LINK([ | |
199 | #if HAVE_ERRNO_H | |
200 | #include <errno.h> | |
201 | #endif], [extern int errno; static int x; x = errno;], | |
202 | [AC_MSG_RESULT(yes - must define); AC_DEFINE(HAVE_ERRNO, 1, [Define if errno is available]) AC_DEFINE(MUST_DEFINE_ERRNO, 1, [Checking if errno must be defined])], | |
203 | [AC_MSG_RESULT(no)]) | |
204 | fi | |
205 | ||
e6712ff1 | 206 | AC_CHECK_DECLS([strerror, strstr, perror, vasprintf, vsnprintf]) |
43d5792c | 207 | |
ccbd4912 MK |
208 | AC_CHECK_TYPES(socklen_t, [], [], |
209 | [#include <sys/types.h> | |
210 | #include <sys/socket.h> | |
211 | ]) | |
fb1e4ffc | 212 | |
8365dcf5 TJB |
213 | AC_CHECK_TYPES([Elf32_auxv_t, Elf64_auxv_t], [], [], |
214 | #include <elf.h> | |
215 | ) | |
216 | ||
c16158bc JM |
217 | ACX_PKGVERSION([GDB]) |
218 | ACX_BUGURL([http://www.gnu.org/software/gdb/bugs/]) | |
219 | AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"], [Additional package description]) | |
220 | AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"], [Bug reporting address]) | |
221 | ||
8838b45e NS |
222 | # Check for various supplementary target information (beyond the |
223 | # triplet) which might affect the choices in configure.srv. | |
224 | case "${target}" in | |
225 | changequote(,)dnl | |
226 | i[34567]86-*-linux*) | |
227 | changequote([,])dnl | |
228 | AC_CACHE_CHECK([if building for x86-64], [gdb_cv_i386_is_x86_64], | |
229 | [save_CPPFLAGS="$CPPFLAGS" | |
230 | CPPFLAGS="$CPPFLAGS $CFLAGS" | |
231 | AC_EGREP_CPP([got it], [ | |
232 | #if __x86_64__ | |
233 | got it | |
234 | #endif | |
235 | ], [gdb_cv_i386_is_x86_64=yes], | |
236 | [gdb_cv_i386_is_x86_64=no]) | |
237 | CPPFLAGS="$save_CPPFLAGS"]) | |
238 | ;; | |
9ac544ce MK |
239 | m68k-*-*) |
240 | AC_CACHE_CHECK([if building for Coldfire], [gdb_cv_m68k_is_coldfire], | |
241 | [save_CPPFLAGS="$CPPFLAGS" | |
242 | CPPFLAGS="$CPPFLAGS $CFLAGS" | |
243 | AC_EGREP_CPP([got it], [ | |
244 | #ifdef __mcoldfire__ | |
245 | got it | |
246 | #endif | |
247 | ], [gdb_cv_m68k_is_coldfire=yes], | |
248 | [gdb_cv_m68k_is_coldfire=no]) | |
249 | CPPFLAGS="$save_CPPFLAGS"]) | |
250 | ;; | |
8838b45e NS |
251 | esac |
252 | ||
7ea81414 | 253 | . ${srcdir}/configure.srv |
c906108c | 254 | |
68070c10 PA |
255 | if test "${srv_mingwce}" = "yes"; then |
256 | LIBS="$LIBS -lws2" | |
257 | elif test "${srv_mingw}" = "yes"; then | |
12ea4b69 | 258 | LIBS="$LIBS -lws2_32" |
ac8c974e AR |
259 | elif test "${srv_qnx}" = "yes"; then |
260 | LIBS="$LIBS -lsocket" | |
8ed54b31 JB |
261 | elif test "${srv_lynxos}" = "yes"; then |
262 | LIBS="$LIBS -lnetinet" | |
68070c10 PA |
263 | fi |
264 | ||
265 | if test "${srv_mingw}" = "yes"; then | |
b80864fb DJ |
266 | AC_DEFINE(USE_WIN32API, 1, |
267 | [Define if we should use the Windows API, instead of the | |
268 | POSIX API. On Windows, we use the Windows API when | |
269 | building for MinGW, but the POSIX API when building | |
270 | for Cygwin.]) | |
271 | fi | |
272 | ||
58caa3dc | 273 | if test "${srv_linux_usrregs}" = "yes"; then |
f450004a DJ |
274 | AC_DEFINE(HAVE_LINUX_USRREGS, 1, |
275 | [Define if the target supports PTRACE_PEEKUSR for register ] | |
276 | [access.]) | |
58caa3dc DJ |
277 | fi |
278 | ||
279 | if test "${srv_linux_regsets}" = "yes"; then | |
e9d25b98 DJ |
280 | AC_DEFINE(HAVE_LINUX_REGSETS, 1, |
281 | [Define if the target supports register sets.]) | |
282 | ||
58caa3dc DJ |
283 | AC_MSG_CHECKING(for PTRACE_GETREGS) |
284 | AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getregs, | |
285 | [AC_TRY_COMPILE([#include <sys/ptrace.h>], | |
286 | [PTRACE_GETREGS;], | |
287 | [gdbsrv_cv_have_ptrace_getregs=yes], | |
288 | [gdbsrv_cv_have_ptrace_getregs=no])]) | |
289 | AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getregs) | |
290 | if test "${gdbsrv_cv_have_ptrace_getregs}" = "yes"; then | |
e9d25b98 | 291 | AC_DEFINE(HAVE_PTRACE_GETREGS, 1, |
f450004a DJ |
292 | [Define if the target supports PTRACE_GETREGS for register ] |
293 | [access.]) | |
58caa3dc DJ |
294 | fi |
295 | ||
296 | AC_MSG_CHECKING(for PTRACE_GETFPXREGS) | |
297 | AC_CACHE_VAL(gdbsrv_cv_have_ptrace_getfpxregs, | |
298 | [AC_TRY_COMPILE([#include <sys/ptrace.h>], | |
299 | [PTRACE_GETFPXREGS;], | |
300 | [gdbsrv_cv_have_ptrace_getfpxregs=yes], | |
301 | [gdbsrv_cv_have_ptrace_getfpxregs=no])]) | |
302 | AC_MSG_RESULT($gdbsrv_cv_have_ptrace_getfpxregs) | |
303 | if test "${gdbsrv_cv_have_ptrace_getfpxregs}" = "yes"; then | |
f450004a DJ |
304 | AC_DEFINE(HAVE_PTRACE_GETFPXREGS, 1, |
305 | [Define if the target supports PTRACE_GETFPXREGS for extended ] | |
306 | [register access.]) | |
58caa3dc DJ |
307 | fi |
308 | fi | |
309 | ||
9accd112 MM |
310 | if test "${srv_linux_btrace}" = "yes"; then |
311 | AC_DEFINE(HAVE_LINUX_BTRACE, 1, | |
312 | [Define if the target supports branch tracing.]) | |
313 | fi | |
314 | ||
0d62e5e8 DJ |
315 | if test "$ac_cv_header_sys_procfs_h" = yes; then |
316 | BFD_HAVE_SYS_PROCFS_TYPE(lwpid_t) | |
317 | BFD_HAVE_SYS_PROCFS_TYPE(psaddr_t) | |
318 | BFD_HAVE_SYS_PROCFS_TYPE(prgregset_t) | |
0d62e5e8 DJ |
319 | BFD_HAVE_SYS_PROCFS_TYPE(elf_fpregset_t) |
320 | fi | |
321 | ||
18f5fd81 TJB |
322 | dnl Some systems (e.g., Android) have lwpid_t defined in libthread_db.h. |
323 | if test "$bfd_cv_have_sys_procfs_type_lwpid_t" != yes; then | |
324 | GDBSERVER_HAVE_THREAD_DB_TYPE(lwpid_t) | |
325 | fi | |
326 | ||
327 | dnl Some systems (e.g., Android) have psaddr_t defined in libthread_db.h. | |
328 | if test "$bfd_cv_have_sys_procfs_type_psaddr_t" != yes; then | |
329 | GDBSERVER_HAVE_THREAD_DB_TYPE(psaddr_t) | |
330 | fi | |
331 | ||
193f13e6 MK |
332 | dnl Check for libdl, but do not add it to LIBS as only gdbserver |
333 | dnl needs it (and gdbreplay doesn't). | |
334 | old_LIBS="$LIBS" | |
335 | AC_CHECK_LIB(dl, dlopen) | |
336 | LIBS="$old_LIBS" | |
337 | ||
0d62e5e8 DJ |
338 | srv_thread_depfiles= |
339 | srv_libs= | |
0d62e5e8 DJ |
340 | |
341 | if test "$srv_linux_thread_db" = "yes"; then | |
193f13e6 MK |
342 | if test "$ac_cv_lib_dl_dlopen" = "yes"; then |
343 | srv_libs="-ldl" | |
f6528abd | 344 | AC_MSG_CHECKING(for the dynamic export flag) |
193f13e6 | 345 | old_LDFLAGS="$LDFLAGS" |
f6528abd JK |
346 | # Older GNU ld supports --export-dynamic but --dynamic-list may not be |
347 | # supported there. | |
348 | RDYNAMIC="-Wl,--dynamic-list=${srcdir}/proc-service.list" | |
349 | LDFLAGS="$LDFLAGS $RDYNAMIC" | |
350 | AC_TRY_LINK([], [], | |
351 | [found="-Wl,--dynamic-list" | |
352 | RDYNAMIC='-Wl,--dynamic-list=$(srcdir)/proc-service.list'], | |
353 | [RDYNAMIC="-rdynamic" | |
354 | LDFLAGS="$old_LDFLAGS $RDYNAMIC" | |
355 | AC_TRY_LINK([], [], | |
356 | [found="-rdynamic"], | |
357 | [found="no" | |
358 | RDYNAMIC=""])]) | |
193f13e6 MK |
359 | AC_SUBST(RDYNAMIC) |
360 | LDFLAGS="$old_LDFLAGS" | |
f6528abd | 361 | AC_MSG_RESULT($found) |
193f13e6 MK |
362 | else |
363 | srv_libs="-lthread_db" | |
364 | fi | |
0d62e5e8 | 365 | |
0d62e5e8 | 366 | srv_thread_depfiles="thread-db.o proc-service.o" |
7d4e5717 | 367 | AC_DEFINE(USE_THREAD_DB, 1, [Define if we should use libthread_db.]) |
3db0444b DJ |
368 | AC_CACHE_CHECK([for TD_VERSION], gdbsrv_cv_have_td_version, |
369 | [AC_TRY_COMPILE([#include <thread_db.h>], [TD_VERSION;], | |
1b3f6016 PA |
370 | [gdbsrv_cv_have_td_version=yes], |
371 | [gdbsrv_cv_have_td_version=no])]) | |
3db0444b DJ |
372 | if test $gdbsrv_cv_have_td_version = yes; then |
373 | AC_DEFINE(HAVE_TD_VERSION, 1, [Define if TD_VERSION is available.]) | |
374 | fi | |
0d62e5e8 DJ |
375 | fi |
376 | ||
96f15937 PP |
377 | AC_ARG_WITH(libthread-db, |
378 | AS_HELP_STRING([--with-libthread-db=PATH], [use given libthread_db directly]), | |
379 | [srv_libthread_db_path="${withval}" | |
96f15937 PP |
380 | srv_libs="$srv_libthread_db_path" |
381 | ]) | |
382 | ||
193f13e6 MK |
383 | if test "$srv_libs" != "" -a "$srv_libs" != "-ldl"; then |
384 | AC_DEFINE(USE_LIBTHREAD_DB_DIRECTLY, 1, [Define if we should use libthread_db directly.]) | |
385 | fi | |
386 | ||
9b4b61c8 | 387 | if test "$srv_xmlfiles" != ""; then |
fb1e4ffc DJ |
388 | srv_xmlbuiltin="xml-builtin.o" |
389 | AC_DEFINE(USE_XML, 1, [Define if an XML target description is available.]) | |
390 | ||
391 | tmp_xmlfiles=$srv_xmlfiles | |
9b4b61c8 | 392 | srv_xmlfiles="" |
fb1e4ffc DJ |
393 | for f in $tmp_xmlfiles; do |
394 | srv_xmlfiles="$srv_xmlfiles \$(XML_DIR)/$f" | |
395 | done | |
396 | fi | |
397 | ||
59a016f0 | 398 | GDBSERVER_DEPFILES="$srv_regobj $srv_tgtobj $srv_hostio_err_objs $srv_thread_depfiles" |
0d62e5e8 | 399 | GDBSERVER_LIBS="$srv_libs" |
c906108c | 400 | |
fa593d66 PA |
401 | dnl Check whether the target supports __sync_*_compare_and_swap. |
402 | AC_CACHE_CHECK([whether the target supports __sync_*_compare_and_swap], | |
403 | gdbsrv_cv_have_sync_builtins, [ | |
404 | AC_TRY_LINK([], [int foo, bar; bar = __sync_val_compare_and_swap(&foo, 0, 1);], | |
405 | gdbsrv_cv_have_sync_builtins=yes, | |
406 | gdbsrv_cv_have_sync_builtins=no)]) | |
407 | if test $gdbsrv_cv_have_sync_builtins = yes; then | |
408 | AC_DEFINE(HAVE_SYNC_BUILTINS, 1, | |
409 | [Define to 1 if the target supports __sync_*_compare_and_swap]) | |
410 | fi | |
411 | ||
412 | dnl Check for -fvisibility=hidden support in the compiler. | |
413 | saved_cflags="$CFLAGS" | |
414 | CFLAGS="$CFLAGS -fvisibility=hidden" | |
415 | AC_COMPILE_IFELSE(AC_LANG_PROGRAM([]), | |
416 | [gdbsrv_cv_have_visibility_hidden=yes], | |
417 | [gdbsrv_cv_have_visibility_hidden=no]) | |
418 | CFLAGS="$saved_cflags" | |
419 | ||
03583c20 UW |
420 | dnl Check if we can disable the virtual address space randomization. |
421 | dnl The functionality of setarch -R. | |
422 | AC_CHECK_DECLS([ADDR_NO_RANDOMIZE],,, [#include <sys/personality.h>]) | |
423 | define([PERSONALITY_TEST], [AC_LANG_PROGRAM([#include <sys/personality.h>], [ | |
424 | # if !HAVE_DECL_ADDR_NO_RANDOMIZE | |
425 | # define ADDR_NO_RANDOMIZE 0x0040000 | |
426 | # endif | |
427 | /* Test the flag could be set and stays set. */ | |
428 | personality (personality (0xffffffff) | ADDR_NO_RANDOMIZE); | |
429 | if (!(personality (personality (0xffffffff)) & ADDR_NO_RANDOMIZE)) | |
430 | return 1])]) | |
431 | AC_RUN_IFELSE([PERSONALITY_TEST], | |
432 | [gdbsrv_cv_have_personality=true], | |
433 | [gdbsrv_cv_have_personality=false], | |
434 | [AC_LINK_IFELSE([PERSONALITY_TEST], | |
435 | [gdbsrv_cv_have_personality=true], | |
436 | [gdbsrv_cv_have_personality=false])]) | |
437 | if $gdbsrv_cv_have_personality | |
438 | then | |
439 | AC_DEFINE([HAVE_PERSONALITY], 1, | |
440 | [Define if you support the personality syscall.]) | |
441 | fi | |
442 | ||
c2a66c29 | 443 | |
fa593d66 | 444 | IPA_DEPFILES="" |
c2a66c29 | 445 | extra_libraries="" |
fa593d66 | 446 | |
c2a66c29 | 447 | # check whether to enable the inprocess agent |
fa593d66 PA |
448 | if test "$ipa_obj" != "" \ |
449 | -a "$gdbsrv_cv_have_sync_builtins" = yes \ | |
450 | -a "$gdbsrv_cv_have_visibility_hidden" = yes; then | |
c2a66c29 NS |
451 | have_ipa=true |
452 | else | |
453 | have_ipa=false | |
454 | fi | |
455 | ||
456 | AC_ARG_ENABLE(inprocess-agent, | |
457 | AS_HELP_STRING([--enable-inprocess-agent], [inprocess agent]), | |
458 | [case "$enableval" in | |
459 | yes) want_ipa=true ;; | |
460 | no) want_ipa=false ;; | |
461 | *) AC_MSG_ERROR([bad value $enableval for inprocess-agent]) ;; | |
462 | esac], | |
463 | [want_ipa=$have_ipa]) | |
464 | ||
465 | if $want_ipa ; then | |
466 | if $have_ipa ; then | |
467 | IPA_DEPFILES="$ipa_obj" | |
468 | extra_libraries="$extra_libraries libinproctrace.so" | |
469 | else | |
470 | AC_MSG_ERROR([inprocess agent not supported for this target]) | |
471 | fi | |
fa593d66 PA |
472 | fi |
473 | ||
7ea81414 | 474 | AC_SUBST(GDBSERVER_DEPFILES) |
0d62e5e8 | 475 | AC_SUBST(GDBSERVER_LIBS) |
fb1e4ffc DJ |
476 | AC_SUBST(srv_xmlbuiltin) |
477 | AC_SUBST(srv_xmlfiles) | |
fa593d66 PA |
478 | AC_SUBST(IPA_DEPFILES) |
479 | AC_SUBST(extra_libraries) | |
c906108c | 480 | |
c971b7fa | 481 | GNULIB=build-gnulib-gdbserver/import |
c9a1864a YQ |
482 | |
483 | GNULIB_STDINT_H= | |
484 | if test x"$STDINT_H" != x; then | |
c971b7fa | 485 | GNULIB_STDINT_H=$GNULIB/$STDINT_H |
c9a1864a YQ |
486 | fi |
487 | AC_SUBST(GNULIB_STDINT_H) | |
488 | ||
c971b7fa | 489 | AC_OUTPUT(Makefile, |
c3a3ccc7 DJ |
490 | [case x$CONFIG_HEADERS in |
491 | xconfig.h:config.in) | |
492 | echo > stamp-h ;; | |
493 | esac | |
494 | ]) |