]> git.ipfire.org Git - thirdparty/gcc.git/blame - libbacktrace/configure.ac
Use rcrt1.o%s/grcrt1.o%s to relocate static PIE
[thirdparty/gcc.git] / libbacktrace / configure.ac
CommitLineData
eff02e4f 1# configure.ac -- Backtrace configure script.
cbe34bb5 2# Copyright (C) 2012-2017 Free Software Foundation, Inc.
eff02e4f
ILT
3
4# Redistribution and use in source and binary forms, with or without
5# modification, are permitted provided that the following conditions are
6# met:
7
8# (1) Redistributions of source code must retain the above copyright
84ebf639 9# notice, this list of conditions and the following disclaimer.
eff02e4f
ILT
10
11# (2) Redistributions in binary form must reproduce the above copyright
12# notice, this list of conditions and the following disclaimer in
13# the documentation and/or other materials provided with the
84ebf639
CL
14# distribution.
15
eff02e4f
ILT
16# (3) The name of the author may not be used to
17# endorse or promote products derived from this software without
18# specific prior written permission.
19
20# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
21# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23# DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT,
24# INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
26# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
27# HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
28# STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
29# IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
30# POSSIBILITY OF SUCH DAMAGE.
31
32AC_PREREQ(2.64)
33AC_INIT(package-unused, version-unused,, libbacktrace)
34AC_CONFIG_SRCDIR(backtrace.h)
35AC_CONFIG_HEADER(config.h)
36
405a6b1c
MK
37if test -n "${with_target_subdir}"; then
38 AM_ENABLE_MULTILIB(, ..)
39fi
40
eff02e4f
ILT
41AC_CANONICAL_SYSTEM
42target_alias=${target_alias-$host_alias}
43
d4c059d5
ILT
44AC_USE_SYSTEM_EXTENSIONS
45
eff02e4f
ILT
46libtool_VERSION=1:0:0
47AC_SUBST(libtool_VERSION)
48
af710874
ILT
49# 1.11.1: Require that version of automake.
50# foreign: Don't require README, INSTALL, NEWS, etc.
51# no-define: Don't define PACKAGE and VERSION.
52# no-dependencies: Don't generate automatic dependencies.
53# (because it breaks when using bootstrap-lean, since some of the
54# headers are gone at "make install" time).
55# -Wall: Issue all automake warnings.
56# -Wno-portability: Don't warn about constructs supported by GNU make.
57# (because GCC requires GNU make anyhow).
58AM_INIT_AUTOMAKE([1.11.1 foreign no-dist no-define no-dependencies -Wall -Wno-portability])
eff02e4f
ILT
59
60AM_MAINTAINER_MODE
61
62AC_ARG_WITH(target-subdir,
63[ --with-target-subdir=SUBDIR Configuring in a subdirectory for target])
64
65# We must force CC to /not/ be precious variables; otherwise
66# the wrong, non-multilib-adjusted value will be used in multilibs.
67# As a side effect, we have to subst CFLAGS ourselves.
68m4_rename([_AC_ARG_VAR_PRECIOUS],[backtrace_PRECIOUS])
69m4_define([_AC_ARG_VAR_PRECIOUS],[])
70AC_PROG_CC
71m4_rename_force([backtrace_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
72
73AC_SUBST(CFLAGS)
74
75AC_PROG_RANLIB
76
77AC_PROG_AWK
78case "$AWK" in
79"") AC_MSG_ERROR([can't build without awk]) ;;
80esac
81
7e5c7547 82LT_INIT
eff02e4f
ILT
83AM_PROG_LIBTOOL
84
e91a2ddc
RB
85AC_SYS_LARGEFILE
86
eff02e4f
ILT
87backtrace_supported=yes
88
89if test -n "${with_target_subdir}"; then
90 # We are compiling a GCC library. We can assume that the unwind
91 # library exists.
eff02e4f
ILT
92 BACKTRACE_FILE="backtrace.lo simple.lo"
93else
94 AC_CHECK_HEADER([unwind.h],
95 [AC_CHECK_FUNC([_Unwind_Backtrace],
96 [BACKTRACE_FILE="backtrace.lo simple.lo"],
97 [BACKTRACE_FILE="nounwind.lo"
98 backtrace_supported=no])],
99 [BACKTRACE_FILE="nounwind.lo"
100 backtrace_supported=no])
101fi
102AC_SUBST(BACKTRACE_FILE)
103
56195009 104EXTRA_FLAGS=
32061319 105if test -n "${with_target_subdir}"; then
36a58fb3 106 EXTRA_FLAGS="-funwind-tables -frandom-seed=\$@"
32061319
ILT
107else
108 AC_CACHE_CHECK([for -funwind-tables option],
109 [libbacktrace_cv_c_unwind_tables],
110 [CFLAGS_hold="$CFLAGS"
111 CFLAGS="$CFLAGS -funwind-tables"
112 AC_COMPILE_IFELSE(
113 [AC_LANG_PROGRAM([static int f() { return 0; }], [return f();])],
114 [libbacktrace_cv_c_unwind_tables=yes],
115 [libbacktrace_cv_c_unwind_tables=no])
116 CFLAGS="$CFLAGS_hold"])
36a58fb3
JJ
117 if test "$libbacktrace_cv_c_unwind_tables" = "yes"; then
118 EXTRA_FLAGS=-funwind-tables
119 fi
120 AC_CACHE_CHECK([for -frandom-seed=string option],
121 [libbacktrace_cv_c_random_seed_string],
122 [CFLAGS_hold="$CFLAGS"
123 CFLAGS="$CFLAGS -frandom-seed=conftest.lo"
124 AC_COMPILE_IFELSE(
125 [AC_LANG_PROGRAM([], [return 0;])],
126 [libbacktrace_cv_c_random_seed_string=yes],
127 [libbacktrace_cv_c_random_seed_string=no])
128 CFLAGS="$CFLAGS_hold"])
129 if test "$libbacktrace_cv_c_random_seed_string" = "yes"; then
130 EXTRA_FLAGS="$EXTRA_FLAGS -frandom-seed=\$@"
131 fi
56195009
UB
132fi
133AC_SUBST(EXTRA_FLAGS)
134
eff02e4f
ILT
135ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \
136 -Wmissing-prototypes -Wold-style-definition \
137 -Wmissing-format-attribute -Wcast-qual],
138 [WARN_FLAGS])
139
73c3ed27 140if test -n "${with_target_subdir}"; then
eff02e4f
ILT
141 WARN_FLAGS="$WARN_FLAGS -Werror"
142fi
143
144AC_SUBST(WARN_FLAGS)
145
64b89453
ILT
146if test -n "${with_target_subdir}"; then
147 GCC_CHECK_UNWIND_GETIPINFO
148else
385710cf
JH
149 ac_save_CFFLAGS="$CFLAGS"
150 CFLAGS="$CFLAGS -Werror-implicit-function-declaration"
151 AC_MSG_CHECKING([for _Unwind_GetIPInfo])
63fefb4b 152 AC_LINK_IFELSE(
385710cf
JH
153 [AC_LANG_PROGRAM(
154 [#include "unwind.h"
155 struct _Unwind_Context *context;
156 int ip_before_insn = 0;],
157 [return _Unwind_GetIPInfo (context, &ip_before_insn);])],
158 [have_unwind_getipinfo=yes], [have_unwind_getipinfo=no])
159 CFLAGS="$ac_save_CFLAGS"
160 AC_MSG_RESULT([$have_unwind_getipinfo])
64b89453
ILT
161 if test "$have_unwind_getipinfo" = "yes"; then
162 AC_DEFINE(HAVE_GETIPINFO, 1, [Define if _Unwind_GetIPInfo is available.])
163 fi
164fi
eff02e4f 165
7e5c7547 166# Enable --enable-host-shared.
459260ec
DM
167AC_ARG_ENABLE(host-shared,
168[AS_HELP_STRING([--enable-host-shared],
169 [build host code as shared libraries])],
7e5c7547 170[PIC_FLAG=-fPIC], [PIC_FLAG=])
eff02e4f
ILT
171AC_SUBST(PIC_FLAG)
172
173# Test for __sync support.
174AC_CACHE_CHECK([__sync extensions],
175[libbacktrace_cv_sys_sync],
176[if test -n "${with_target_subdir}"; then
2f401a8f
JDA
177 case "${host}" in
178 hppa*-*-hpux*) libbacktrace_cv_sys_sync=no ;;
179 *) libbacktrace_cv_sys_sync=yes ;;
180 esac
eff02e4f
ILT
181 else
182 AC_LINK_IFELSE(
183 [AC_LANG_PROGRAM([int i;],
184 [__sync_bool_compare_and_swap (&i, i, i);
185 __sync_lock_test_and_set (&i, 1);
186 __sync_lock_release (&i);])],
187 [libbacktrace_cv_sys_sync=yes],
188 [libbacktrace_cv_sys_sync=no])
189 fi])
190BACKTRACE_SUPPORTS_THREADS=0
191if test "$libbacktrace_cv_sys_sync" = "yes"; then
192 BACKTRACE_SUPPORTS_THREADS=1
193 AC_DEFINE([HAVE_SYNC_FUNCTIONS], 1,
194 [Define to 1 if you have the __sync functions])
195fi
196AC_SUBST(BACKTRACE_SUPPORTS_THREADS)
197
49579c7e
ILT
198# Test for __atomic support.
199AC_CACHE_CHECK([__atomic extensions],
200[libbacktrace_cv_sys_atomic],
201[if test -n "${with_target_subdir}"; then
202 libbacktrace_cv_sys_atomic=yes
203 else
204 AC_LINK_IFELSE(
205 [AC_LANG_PROGRAM([int i;],
206 [__atomic_load_n (&i, __ATOMIC_ACQUIRE);
207 __atomic_store_n (&i, 1, __ATOMIC_RELEASE);])],
208 [libbacktrace_cv_sys_atomic=yes],
209 [libbacktrace_cv_sys_atomic=no])
210 fi])
211if test "$libbacktrace_cv_sys_atomic" = "yes"; then
212 AC_DEFINE([HAVE_ATOMIC_FUNCTIONS], 1,
213 [Define to 1 if you have the __atomic functions])
214fi
215
eff02e4f
ILT
216# The library needs to be able to read the executable itself. Compile
217# a file to determine the executable format. The awk script
218# filetype.awk prints out the file type.
219AC_CACHE_CHECK([output filetype],
220[libbacktrace_cv_sys_filetype],
221[filetype=
222AC_COMPILE_IFELSE(
223 [AC_LANG_PROGRAM([int i;], [int j;])],
224 [filetype=`${AWK} -f $srcdir/filetype.awk conftest.$ac_objext`],
225 [AC_MSG_FAILURE([compiler failed])])
226libbacktrace_cv_sys_filetype=$filetype])
227
228# Match the file type to decide what files to compile.
229FORMAT_FILE=
e24afc10 230backtrace_supports_data=yes
eff02e4f
ILT
231case "$libbacktrace_cv_sys_filetype" in
232elf*) FORMAT_FILE="elf.lo" ;;
e24afc10
TG
233pecoff) FORMAT_FILE="pecoff.lo"
234 backtrace_supports_data=no
235 ;;
7e2a8417
TR
236xcoff*) FORMAT_FILE="xcoff.lo"
237 backtrace_supports_data=no
238 ;;
eff02e4f
ILT
239*) AC_MSG_WARN([could not determine output file type])
240 FORMAT_FILE="unknown.lo"
241 backtrace_supported=no
242 ;;
243esac
244AC_SUBST(FORMAT_FILE)
245
246# ELF defines.
247elfsize=
248case "$libbacktrace_cv_sys_filetype" in
249elf32) elfsize=32 ;;
250elf64) elfsize=64 ;;
e24afc10 251*) elfsize=unused
eff02e4f
ILT
252esac
253AC_DEFINE_UNQUOTED([BACKTRACE_ELF_SIZE], [$elfsize], [ELF size: 32 or 64])
254
7e2a8417
TR
255# XCOFF defines.
256xcoffsize=
257case "$libbacktrace_cv_sys_filetype" in
258xcoff32) xcoffsize=32 ;;
259xcoff64) xcoffsize=64 ;;
260*) xcoffsize=unused
261esac
262AC_DEFINE_UNQUOTED([BACKTRACE_XCOFF_SIZE], [$xcoffsize], [XCOFF size: 32 or 64])
263
eff02e4f
ILT
264BACKTRACE_SUPPORTED=0
265if test "$backtrace_supported" = "yes"; then
266 BACKTRACE_SUPPORTED=1
267fi
268AC_SUBST(BACKTRACE_SUPPORTED)
269
e24afc10
TG
270BACKTRACE_SUPPORTS_DATA=0
271if test "$backtrace_supports_data" = "yes"; then
272 BACKTRACE_SUPPORTS_DATA=1
273fi
274AC_SUBST(BACKTRACE_SUPPORTS_DATA)
275
76850556
RO
276GCC_HEADER_STDINT(gstdint.h)
277
eff02e4f
ILT
278AC_CHECK_HEADERS(sys/mman.h)
279if test "$ac_cv_header_sys_mman_h" = "no"; then
280 have_mmap=no
281else
282 if test -n "${with_target_subdir}"; then
283 # When built as a GCC target library, we can't do a link test. We
284 # simply assume that if we have mman.h, we have mmap.
285 have_mmap=yes
1b533361 286 case "${host}" in
5b4bbc7d 287 spu-*-*|*-*-msdosdjgpp)
1b533361
UW
288 # The SPU does not have mmap, but it has a sys/mman.h header file
289 # containing "mmap_eaddr" and the mmap flags, confusing the test.
5b4bbc7d 290 # DJGPP also has sys/man.h, but no mmap
1b533361
UW
291 have_mmap=no ;;
292 esac
eff02e4f
ILT
293 else
294 AC_CHECK_FUNC(mmap, [have_mmap=yes], [have_mmap=no])
295 fi
296fi
297if test "$have_mmap" = "no"; then
298 VIEW_FILE=read.lo
299 ALLOC_FILE=alloc.lo
300else
301 VIEW_FILE=mmapio.lo
302 AC_PREPROC_IFELSE([
303#include <sys/mman.h>
304#if !defined(MAP_ANONYMOUS) && !defined(MAP_ANON)
305 #error no MAP_ANONYMOUS
306#endif
307], [ALLOC_FILE=mmap.lo], [ALLOC_FILE=alloc.lo])
308fi
309AC_SUBST(VIEW_FILE)
310AC_SUBST(ALLOC_FILE)
311
312BACKTRACE_USES_MALLOC=0
313if test "$ALLOC_FILE" = "alloc.lo"; then
314 BACKTRACE_USES_MALLOC=1
315fi
316AC_SUBST(BACKTRACE_USES_MALLOC)
317
e561a992
ILT
318# Check for dl_iterate_phdr.
319AC_CHECK_HEADERS(link.h)
320if test "$ac_cv_header_link_h" = "no"; then
321 have_dl_iterate_phdr=no
322else
323 if test -n "${with_target_subdir}"; then
324 # When built as a GCC target library, we can't do a link test.
325 AC_EGREP_HEADER([dl_iterate_phdr], [link.h], [have_dl_iterate_phdr=yes],
326 [have_dl_iterate_phdr=no])
5551b12c
ILT
327 case "${host}" in
328 *-*-solaris2.10*)
329 # Avoid dl_iterate_phdr on Solaris 10, where it is in the
330 # header file but is only in -ldl.
331 have_dl_iterate_phdr=no ;;
332 esac
e561a992
ILT
333 else
334 AC_CHECK_FUNC([dl_iterate_phdr], [have_dl_iterate_phdr=yes],
335 [have_dl_iterate_phdr=no])
336 fi
337fi
338if test "$have_dl_iterate_phdr" = "yes"; then
339 AC_DEFINE(HAVE_DL_ITERATE_PHDR, 1, [Define if dl_iterate_phdr is available.])
340fi
341
7e2a8417
TR
342# Check for loadquery.
343AC_CHECK_HEADERS(sys/ldr.h)
344if test "$ac_cv_header_sys_ldr_h" = "no"; then
345 have_loadquery=no
346else
347 if test -n "${with_target_subdir}"; then
348 # When built as a GCC target library, we can't do a link test.
349 AC_EGREP_HEADER([loadquery], [sys/ldr.h], [have_loadquery=yes],
350 [have_loadquery=no])
351 else
352 AC_CHECK_FUNC([loadquery], [have_loadquery=yes],
353 [have_loadquery=no])
354 fi
355fi
356if test "$have_loadquery" = "yes"; then
357 AC_DEFINE(HAVE_LOADQUERY, 1, [Define if AIX loadquery is available.])
358fi
359
3319ef17
ILT
360# Check for the fcntl function.
361if test -n "${with_target_subdir}"; then
362 case "${host}" in
363 *-*-mingw*) have_fcntl=no ;;
8f5027bf 364 spu-*-*) have_fcntl=no ;;
3319ef17
ILT
365 *) have_fcntl=yes ;;
366 esac
367else
368 AC_CHECK_FUNC(fcntl, [have_fcntl=yes], [have_fcntl=no])
369fi
370if test "$have_fcntl" = "yes"; then
371 AC_DEFINE([HAVE_FCNTL], 1,
372 [Define to 1 if you have the fcntl function])
373fi
374
772a71a9 375AC_CHECK_DECLS(strnlen)
8c2ea6b2 376AC_CHECK_FUNCS(lstat readlink)
772a71a9 377
33521509
ILT
378# Check for getexecname function.
379if test -n "${with_target_subdir}"; then
380 case "${host}" in
381 *-*-solaris2*) have_getexecname=yes ;;
382 *) have_getexecname=no ;;
383 esac
384else
385 AC_CHECK_FUNC(getexecname, [have_getexecname=yes], [have_getexecname=no])
386fi
387if test "$have_getexecname" = "yes"; then
388 AC_DEFINE(HAVE_GETEXECNAME, 1, [Define if getexecname is available.])
389fi
390
dbc31f20
TS
391# Check for the clock_gettime function.
392AC_CHECK_FUNCS(clock_gettime)
dd954c67
TS
393clock_gettime_link=
394# At least for glibc, clock_gettime is in librt. But don't
395# pull that in if it still doesn't give us the function we want. This
396# test is copied from libgomp, and modified to not link in -lrt as
397# we're using this for test timing only.
398if test "$ac_cv_func_clock_gettime" = no; then
399 AC_CHECK_LIB(rt, clock_gettime,
8398c1df 400 [CLOCK_GETTIME_LINK=-lrt
dd954c67
TS
401 AC_DEFINE(HAVE_CLOCK_GETTIME, 1,
402 [Define to 1 if you have the `clock_gettime' function.])])
403fi
8398c1df 404AC_SUBST(CLOCK_GETTIME_LINK)
dbc31f20 405
d1609a23
ILT
406dnl Test whether the compiler supports the -pthread option.
407AC_CACHE_CHECK([whether -pthread is supported],
408[libgo_cv_lib_pthread],
409[CFLAGS_hold=$CFLAGS
410CFLAGS="$CFLAGS -pthread"
411AC_COMPILE_IFELSE([[int i;]],
412[libgo_cv_lib_pthread=yes],
413[libgo_cv_lib_pthread=no])
414CFLAGS=$CFLAGS_hold])
415PTHREAD_CFLAGS=
416if test "$libgo_cv_lib_pthread" = yes; then
417 PTHREAD_CFLAGS=-pthread
418fi
419AC_SUBST(PTHREAD_CFLAGS)
420
421AM_CONDITIONAL(HAVE_PTHREAD, test "$libgo_cv_lib_pthread" = yes)
422
8da872d9
ILT
423AC_CHECK_LIB([z], [compress], [])
424if test $ac_cv_lib_z_compress = "yes"; then
425 AC_DEFINE(HAVE_ZLIB, 1, [Define if -lz is available.])
426fi
427AM_CONDITIONAL(HAVE_ZLIB, test "$ac_cv_lib_z_compress" = yes)
428
429dnl Test whether the linker supports the --compress_debug_sections option.
430AC_CACHE_CHECK([whether --compress-debug-sections is supported],
431[libgo_cv_ld_compress],
432[LDFLAGS_hold=$LDFLAGS
433LDFLAGS="$LDFLAGS -Wl,--compress-debug-sections=zlib-gnu"
434AC_LINK_IFELSE([AC_LANG_PROGRAM(,)],
435[libgo_cv_ld_compress=yes],
436[libgo_cv_ld_compress=no])
437LDFLAGS=$LDFLAGS_hold])
438AM_CONDITIONAL(HAVE_COMPRESSED_DEBUG, test "$libgo_cv_ld_compress" = yes)
439
9283471b
ILT
440AC_ARG_VAR(OBJCOPY, [location of objcopy])
441AC_CHECK_PROG(OBJCOPY, objcopy, objcopy,)
442AC_CACHE_CHECK([whether objcopy supports debuglink],
443[libbacktrace_cv_objcopy_debuglink],
444[if test -n "${with_target_subdir}"; then
445 libbacktrace_cv_objcopy_debuglink=no
446elif ${OBJCOPY} --add-gnu-debuglink=x /bin/ls /tmp/ls$$; then
447 rm -f /tmp/ls$$
448 libbacktrace_cv_objcopy_debuglink=yes
449else
450 libbacktrace_cv_objcopy_debuglink=no
451fi])
452AM_CONDITIONAL(HAVE_OBJCOPY_DEBUGLINK, test "$libbacktrace_cv_objcopy_debuglink" = yes)
453
eff02e4f
ILT
454AC_CACHE_CHECK([whether tests can run],
455 [libbacktrace_cv_sys_native],
456 [AC_RUN_IFELSE([AC_LANG_PROGRAM([], [return 0;])],
457 [libbacktrace_cv_sys_native=yes],
458 [libbacktrace_cv_sys_native=no],
459 [libbacktrace_cv_sys_native=no])])
460AM_CONDITIONAL(NATIVE, test "$libbacktrace_cv_sys_native" = "yes")
461
462if test "${multilib}" = "yes"; then
463 multilib_arg="--enable-multilib"
464else
465 multilib_arg=
466fi
467
468AC_CONFIG_FILES(Makefile backtrace-supported.h)
469
470# We need multilib support, but only if configuring for the target.
471AC_CONFIG_COMMANDS([default],
472[if test -n "$CONFIG_FILES"; then
473 if test -n "${with_target_subdir}"; then
474 # Multilibs need MULTISUBDIR defined correctly in certain makefiles so
475 # that multilib installs will end up installed in the correct place.
476 # The testsuite needs it for multilib-aware ABI baseline files.
477 # To work around this not being passed down from config-ml.in ->
478 # srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually
479 # append it here. Only modify Makefiles that have just been created.
480 #
481 # Also, get rid of this simulated-VPATH thing that automake does.
482 cat > vpsed << \_EOF
483 s!`test -f '$<' || echo '$(srcdir)/'`!!
484_EOF
485 for i in $SUBDIRS; do
486 case $CONFIG_FILES in
487 *${i}/Makefile*)
488 #echo "Adding MULTISUBDIR to $i/Makefile"
489 sed -f vpsed $i/Makefile > tmp
490 grep '^MULTISUBDIR =' Makefile >> tmp
491 mv tmp $i/Makefile
492 ;;
493 esac
494 done
495 rm vpsed
496 fi
497 fi
498],
499[
500# Variables needed in config.status (file generation) which aren't already
501# passed by autoconf.
502SUBDIRS="$SUBDIRS"
503])
504
505AC_OUTPUT