libctf: require a Tcl capable of try/catch to run tests
[deliverable/binutils-gdb.git] / libctf / configure.ac
CommitLineData
0e65dfba
NA
1dnl -*- Autoconf -*-
2dnl Process this file with autoconf to produce a configure script.
3dnl
250d07de 4dnl Copyright (C) 2019-2021 Free Software Foundation, Inc.
0e65dfba
NA
5dnl
6dnl This file is free software; you can redistribute it and/or modify
7dnl it under the terms of the GNU General Public License as published by
8dnl the Free Software Foundation; either version 2 of the License, or
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
17dnl along with this program; see the file COPYING. If not see
18dnl <http://www.gnu.org/licenses/>.
19dnl
20
21AC_PREREQ(2.64)
987cf30a 22AC_INIT([libctf], 1.2.0)
0e65dfba 23AC_CONFIG_SRCDIR(ctf-impl.h)
a7c23ac9 24AC_CONFIG_MACRO_DIR(..)
0e65dfba 25AC_CONFIG_MACRO_DIR(../config)
87279e3c 26AC_CONFIG_MACRO_DIR(../bfd)
0e65dfba
NA
27AC_USE_SYSTEM_EXTENSIONS
28AM_INIT_AUTOMAKE
29
30# Checks for programs.
31AC_PROG_MAKE_SET
32AC_PROG_CC
33AC_PROG_RANLIB
34AM_PROG_AR
8e6635bd 35ZW_GNU_GETTEXT_SISTER_DIR
0e65dfba 36
87279e3c
NA
37dnl Default to a non shared library. This may be overridden by the
38dnl configure option --enable-shared.
39AC_DISABLE_SHARED
40
41LT_INIT
0e65dfba
NA
42AC_SYS_LARGEFILE
43
44MISSING=`cd $ac_aux_dir && ${PWDCMD-pwd}`/missing
45AC_CHECK_PROGS([ACLOCAL], [aclocal], [$MISSING aclocal])
46AC_CHECK_PROGS([AUTOCONF], [autoconf], [$MISSING autoconf])
47AC_CHECK_PROGS([AUTOHEADER], [autoheader], [$MISSING autoheader])
48
49# Figure out what compiler warnings we can enable.
50# See config/warnings.m4 for details.
51
52ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wno-narrowing -Wwrite-strings \
53 -Wmissing-format-attribute], [warn])
54ACX_PROG_CC_WARNING_OPTS([-Wstrict-prototypes -Wmissing-prototypes \
55 -Wold-style-definition], [c_warn])
56ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long])
57
58# Only enable with --enable-werror-always until existing warnings are
59# corrected.
60ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual])
61
62AM_MAINTAINER_MODE
87279e3c 63AM_INSTALL_LIBBFD
0e65dfba
NA
64ACX_PROG_CC_WARNING_OPTS([-Wall], [ac_libctf_warn_cflags])
65
66AC_FUNC_MMAP
87279e3c 67# Needed for BFD capability checks.
9698cf9b 68AC_SEARCH_LIBS(dlopen, dl)
a0486bac 69AM_ZLIB
9698cf9b 70
a9b98702
NA
71GCC_ENABLE([libctf-hash-debugging], [no], [], [Enable expensive debugging of CTF deduplication type hashing])
72if test "${enable_libctf_hash_debugging}" = yes; then
73 AC_DEFINE(ENABLE_LIBCTF_HASH_DEBUGGING, 1, [Enable expensive debugging of CTF deduplication type hashing])
74fi
75AM_CONDITIONAL(ENABLE_LIBCTF_HASH_DEBUGGING, test "${enable_libctf_hash_debugging}" = yes)
76
9698cf9b
NA
77# Similar to GDB_AC_CHECK_BFD.
78OLD_CFLAGS=$CFLAGS
79OLD_LDFLAGS=$LDFLAGS
80OLD_LIBS=$LIBS
81# Put the old CFLAGS/LDFLAGS last, in case the user's (C|LD)FLAGS
82# points somewhere with bfd, with -I/foo/lib and -L/foo/lib. We
83# always want our bfd.
84CFLAGS="-I${srcdir}/../include -I../bfd -I${srcdir}/../bfd $CFLAGS"
85ZLIBDIR=`echo $zlibdir | sed 's,\$(top_builddir)/,,g'`
86LDFLAGS="-L../bfd -L../libiberty $ZLIBDIR $LDFLAGS"
87intl=`echo $LIBINTL | sed 's,${top_builddir}/,,g'`
88LIBS="-lbfd -liberty -lz $intl $LIBS"
89AC_CACHE_CHECK([for ELF support in BFD], ac_cv_libctf_bfd_elf,
90[AC_TRY_LINK([#include <stdlib.h>
91 #include "bfd.h"
92 #include "elf-bfd.h"],
93 [(void) bfd_section_from_elf_index (NULL, 0);
94 return 0;],
95 [ac_cv_libctf_bfd_elf=yes],
96 [ac_cv_libctf_bfd_elf=no])])
97CFLAGS=$OLD_CFLAGS
98LDFLAGS=$OLD_LDFLAGS
99LIBS=$OLD_LIBS
100
101if test $ac_cv_libctf_bfd_elf = yes; then
102 AC_DEFINE([HAVE_BFD_ELF], 1,
103 [Whether libbfd was configured for an ELF target.])
104fi
105
a0486bac
JM
106AC_C_BIGENDIAN
107AC_CHECK_HEADERS(byteswap.h endian.h)
0e65dfba 108AC_CHECK_FUNCS(pread)
6b22174f 109
e755667f
NA
110dnl Check for bswap_{16,32,64}
111AC_CHECK_DECLS([bswap_16, bswap_32, bswap_64], [], [], [[#include <byteswap.h>]])
0f0c11f7 112AC_CHECK_DECLS([asprintf, vasprintf, stpcpy])
3a657c60 113
6b22174f
NA
114dnl Check for qsort_r. (Taken from gnulib.)
115AC_CHECK_FUNCS_ONCE([qsort_r])
116if test $ac_cv_func_qsort_r = yes; then
117 AC_CACHE_CHECK([for qsort_r signature], [ac_cv_libctf_qsort_r_signature],
118 [AC_LINK_IFELSE(
119 [AC_LANG_PROGRAM([[#undef qsort_r
120 #include <stdlib.h>
121 void qsort_r (void *, size_t, size_t,
122 int (*) (void const *, void const *,
123 void *),
124 void *);
125 void (*p) (void *, size_t, size_t,
126 int (*) (void const *, void const *,
127 void *),
128 void *) = qsort_r;
129 ]])],
130 [ac_cv_libctf_qsort_r_signature=GNU],
131 [AC_LINK_IFELSE(
132 [AC_LANG_PROGRAM([[#undef qsort_r
133 #include <stdlib.h>
134 void qsort_r (void *, size_t, size_t, void *,
135 int (*) (void *,
136 void const *,
137 void const *));
138 void (*p) (void *, size_t, size_t, void *,
139 int (*) (void *, void const *,
140 void const *)) = qsort_r;
141 ]])],
142 [ac_cv_libctf_qsort_r_signature=BSD],
143 [ac_cv_libctf_qsort_r_signature=unknown])])])
144fi
145
146case x$ac_cv_libctf_qsort_r_signature in
147 xGNU) AC_DEFINE([HAVE_QSORT_R_ARG_LAST], 1,
148 [Whether a qsort_r exists with a void *arg as its last arg.]);;
149 xBSD) AC_DEFINE([HAVE_QSORT_R_COMPAR_LAST], 1,
150 [Whether a qsort_r exists with the compar function as its last arg.]);;
151 *) ac_cv_libctf_qsort_r_signature=unknown;;
152esac
153
154AM_CONDITIONAL(NEED_CTF_QSORT_R, test "${ac_cv_libctf_qsort_r_signature}" = unknown)
0e65dfba 155
ad118caa
NA
156AC_CACHE_CHECK([for O_CLOEXEC], [ac_cv_libctf_macro_O_CLOEXEC],
157 [AC_LINK_IFELSE(
158 [AC_LANG_PROGRAM([[#include <fcntl.h>
159 #ifndef O_CLOEXEC
160 choke me;
161 #endif
162 ]],
163 [[return O_CLOEXEC;]])],
164 [ac_cv_libctf_macro_O_CLOEXEC=yes],
165 [ac_cv_libctf_macro_O_CLOEXEC=no])])
166
167if test $ac_cv_libctf_macro_O_CLOEXEC = yes; then
168 AC_DEFINE([HAVE_O_CLOEXEC], 1,
169 [Whether the platform has a definition of O_CLOEXEC.])
170fi
171
1038406a 172CTF_LIBADD="-L`pwd`/../libiberty -liberty"
87279e3c 173SHARED_LDFLAGS=
95148614
NA
174
175# Horrible hacks to build DLLs on Windows and a shared library elsewhere.
87279e3c
NA
176if test "$enable_shared" = "yes"; then
177# When building a shared libctf, link against the pic version of libiberty
178# so that apps that use libctf won't need libiberty just to satisfy any
95148614
NA
179# libctf references. We can't do that if a pic libiberty is unavailable
180# since including non-pic # code would insert text relocations into libctf.
87279e3c
NA
181# Note that linking against libbfd as we do here, which is itself linked
182# against libiberty, may not satisfy all the libctf libiberty references
183# since libbfd may not pull in the entirety of libiberty.
95148614
NA
184# Also, jam libintl into the right place in all of this: after libiberty,
185# which uses it, but before -lcygwin, which it uses.
87279e3c
NA
186changequote(,)dnl
187 x=`sed -n -e 's/^[ ]*PICFLAG[ ]*=[ ]*//p' < ../libiberty/Makefile | sed -n '$p'`
188changequote([,])dnl
189 if test -n "$x"; then
1038406a 190 CTF_LIBADD="-L`pwd`/../libiberty/pic -liberty"
87279e3c 191 fi
95148614
NA
192fi
193
194CTF_LIBADD="$CTF_LIBADD $LIBINTL"
87279e3c 195
95148614 196if test "$enable_shared" = "yes"; then
87279e3c
NA
197 case "${host}" in
198 # More hacks to build DLLs on Windows.
199 *-*-cygwin*)
200 SHARED_LDFLAGS="-no-undefined"
95148614 201 CTF_LIBADD="$CTF_LIBADD -lcygwin"
87279e3c
NA
202 ;;
203 esac
204fi
205AC_SUBST(SHARED_LDFLAGS)
1038406a 206AC_SUBST(CTF_LIBADD)
87279e3c 207
cbd8f5bb
NA
208AC_PATH_PROG([EXPECT], [expect])
209AC_CACHE_CHECK([for Tcl supporting try/catch], [ac_cv_libctf_tcl_try],
210 [ac_cv_libctf_tcl_try=`if test -z $EXPECT; then echo no; else $EXPECT << EOF
211if @<:@llength @<:@info commands try@:>@@:>@ then { puts yes } else { puts no }
212EOF
213fi`
214])
215AM_CONDITIONAL(TCL_TRY, test "${ac_cv_libctf_tcl_try}" = yes)
216
87279e3c
NA
217# Use a version script, if possible, or an -export-symbols-regex otherwise.
218VERSION_FLAGS='-export-symbols-regex ctf_.*'
219if $LD --help 2>&1 | grep -- --version-script >/dev/null; then
220 VERSION_FLAGS="-Wl,--version-script='$srcdir/libctf.ver'"
221fi
222AC_SUBST(VERSION_FLAGS)
223
0e65dfba
NA
224AC_CONFIG_FILES(Makefile)
225AC_CONFIG_HEADERS(config.h)
226AC_OUTPUT
d546b610
L
227
228GNU_MAKE_JOBSERVER
This page took 0.11281 seconds and 4 git commands to generate.