]> git.ipfire.org Git - thirdparty/glibc.git/blame - configure.ac
elf: Fix elf/tst-pldd with --enable-hardcoded-path-in-tests (BZ#24506)
[thirdparty/glibc.git] / configure.ac
CommitLineData
f4017d20 1dnl Process this file with autoconf to produce a configure script.
f7934be8 2dnl Note we do not use AC_PREREQ here! See aclocal.m4 for what we use instead.
a306c790 3AC_INIT([GNU C Library], [(see version.h)], [https://sourceware.org/bugzilla/], [glibc])
5d77b1da 4AC_CONFIG_SRCDIR([include/features.h])
6b7f6183
RM
5AC_CONFIG_HEADERS([config.h])
6AC_CONFIG_AUX_DIR([scripts])
28f540f4 7
8b748aed
JM
8ACX_PKGVERSION([GNU libc])
9ACX_BUGURL([http://www.gnu.org/software/libc/bugs.html])
10AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"],
11 [Package description])
12AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"],
13 [Bug reporting address])
14
918b5606
L
15# Glibc should not depend on any header files
16AC_DEFUN([_AC_INCLUDES_DEFAULT_REQUIREMENTS],
17 [m4_divert_text([DEFAULTS],
18 [ac_includes_default='/* none */'])])
19
bb931195
TS
20# We require GCC, and by default use its preprocessor. Override AC_PROG_CPP
21# here to work around the Autoconf issue discussed in
a306c790 22# <https://sourceware.org/ml/libc-alpha/2013-01/msg00721.html>.
bb931195
TS
23AC_DEFUN([AC_PROG_CPP],
24[AC_REQUIRE([AC_PROG_CC])dnl
25AC_ARG_VAR([CPP], [C preprocessor])dnl
26_AC_ARG_VAR_CPPFLAGS()dnl
27# On Suns, sometimes $CPP names a directory.
28if test -n "$CPP" && test -d "$CPP"; then
29 CPP=
30fi
31if test -z "$CPP"; then
32 CPP="$CC -E"
33fi
34AC_SUBST(CPP)dnl
35])# AC_PROG_CPP
36
b5a5da23
TS
37# We require GCC. Override _AC_PROG_CC_C89 here to work around the Autoconf
38# issue discussed in
a306c790 39# <https://sourceware.org/ml/libc-alpha/2013-01/msg00757.html>.
b5a5da23
TS
40AC_DEFUN([_AC_PROG_CC_C89], [[$1]])
41
7967983f
RM
42dnl This is here so we can set $subdirs directly based on configure fragments.
43AC_CONFIG_SUBDIRS()
44
c16a054d
AS
45AC_CANONICAL_HOST
46
c0bac8b0
UD
47AC_PROG_CC
48if test $host != $build; then
49 AC_CHECK_PROGS(BUILD_CC, gcc cc)
50fi
51AC_SUBST(cross_compiling)
52AC_PROG_CPP
e4693aa7
RM
53AC_CHECK_TOOL(READELF, readelf, false)
54
c0bac8b0
UD
55# We need the C++ compiler only for testing.
56AC_PROG_CXX
e4693aa7
RM
57# It's useless to us if it can't link programs (e.g. missing -lstdc++).
58AC_CACHE_CHECK([whether $CXX can link programs], libc_cv_cxx_link_ok, [dnl
59AC_LANG_PUSH([C++])
d337ceb7 60# Default, dynamic case.
e4693aa7
RM
61AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
62 [libc_cv_cxx_link_ok=yes],
63 [libc_cv_cxx_link_ok=no])
d337ceb7
FW
64# Static case.
65old_LDFLAGS="$LDFLAGS"
66LDFLAGS="$LDFLAGS -static"
67AC_LINK_IFELSE([AC_LANG_SOURCE([
68#include <iostream>
69
70int
71main()
72{
73 std::cout << "Hello, world!";
74 return 0;
75}
76])],
77 [],
78 [libc_cv_cxx_link_ok=no])
79LDFLAGS="$old_LDFLAGS"
e4693aa7
RM
80AC_LANG_POP([C++])])
81AS_IF([test $libc_cv_cxx_link_ok != yes], [CXX=])
c0bac8b0 82
db340c90 83if test "`cd $srcdir; pwd -P`" = "`pwd -P`"; then
c72637d4
RM
84 AC_MSG_ERROR([you must configure in a separate build directory])
85fi
86
28f540f4
RM
87# This will get text that should go into config.make.
88config_vars=
89
c8f3e6db 90# Check for a --with-gd argument and set libgd-LDFLAGS in config.make.
6b7f6183 91AC_ARG_WITH([gd],
77e8bddf
AS
92 AC_HELP_STRING([--with-gd=DIR],
93 [find libgd include dir and library with prefix DIR]),
c8f3e6db
UD
94 [dnl
95case "$with_gd" in
f5f7239f
UD
96yes|''|no) ;;
97*) libgd_include="-I$withval/include"
c8f3e6db
UD
98 libgd_ldflags="-L$withval/lib" ;;
99esac
100])
6b7f6183 101AC_ARG_WITH([gd-include],
77e8bddf
AS
102 AC_HELP_STRING([--with-gd-include=DIR],
103 [find libgd include files in DIR]),
104 [dnl
f5f7239f
UD
105case "$with_gd_include" in
106''|no) ;;
107*) libgd_include="-I$withval" ;;
108esac
109])
6b7f6183 110AC_ARG_WITH([gd-lib],
77e8bddf
AS
111 AC_HELP_STRING([--with-gd-lib=DIR],
112 [find libgd library files in DIR]),
113 [dnl
f5f7239f
UD
114case "$with_gd_lib" in
115''|no) ;;
116*) libgd_ldflags="-L$withval" ;;
117esac
118])
119
120if test -n "$libgd_include"; then
121 config_vars="$config_vars
cf90163d 122CFLAGS-memusagestat.c = $libgd_include"
f5f7239f
UD
123fi
124if test -n "$libgd_ldflags"; then
125 config_vars="$config_vars
126libgd-LDFLAGS = $libgd_ldflags"
127fi
28f540f4 128
ff3d7ed3 129dnl Arguments to specify presence of other packages/features.
6b7f6183 130AC_ARG_WITH([binutils],
77e8bddf
AS
131 AC_HELP_STRING([--with-binutils=PATH],
132 [specify location of binutils (as and ld)]),
6b7f6183
RM
133 [path_binutils=$withval],
134 [path_binutils=''])
2fff3d93 135AC_ARG_WITH([selinux],
77e8bddf
AS
136 AC_HELP_STRING([--with-selinux],
137 [if building with SELinux support]),
2fff3d93
UD
138 [with_selinux=$withval],
139 [with_selinux=auto])
28f540f4 140
6b7f6183 141AC_ARG_WITH([headers],
77e8bddf
AS
142 AC_HELP_STRING([--with-headers=PATH],
143 [location of system headers to use
6b7f6183
RM
144 (for example /usr/src/linux/include)
145 @<:@default=compiler default@:>@]),
146 [sysheaders=$withval],
147 [sysheaders=''])
c91c505f 148AC_SUBST(sysheaders)
dbe7a0f5 149
f781ef40
RM
150AC_SUBST(use_default_link)
151AC_ARG_WITH([default-link],
152 AC_HELP_STRING([--with-default-link],
fd5e21c7 153 [do not use explicit linker scripts]),
f781ef40 154 [use_default_link=$withval],
fd5e21c7 155 [use_default_link=default])
f781ef40 156
6413fcde
FW
157dnl Additional build flags injection.
158AC_ARG_WITH([nonshared-cflags],
159 AC_HELP_STRING([--with-nonshared-cflags=CFLAGS],
160 [build nonshared libraries with additional CFLAGS]),
161 [extra_nonshared_cflags=$withval],
162 [extra_nonshared_cflags=])
163AC_SUBST(extra_nonshared_cflags)
164
6b7f6183 165AC_ARG_ENABLE([sanity-checks],
77e8bddf
AS
166 AC_HELP_STRING([--disable-sanity-checks],
167 [really do not use threads (should not be used except in special situations) @<:@default=yes@:>@]),
6b7f6183
RM
168 [enable_sanity=$enableval],
169 [enable_sanity=yes])
a18f587d 170
6b7f6183 171AC_ARG_ENABLE([shared],
77e8bddf 172 AC_HELP_STRING([--enable-shared],
a0da5fe1 173 [build shared library @<:@default=yes if GNU ld@:>@]),
6b7f6183 174 [shared=$enableval],
a0da5fe1 175 [shared=yes])
6b7f6183 176AC_ARG_ENABLE([profile],
77e8bddf
AS
177 AC_HELP_STRING([--enable-profile],
178 [build profiled library @<:@default=no@:>@]),
6b7f6183 179 [profile=$enableval],
11bf311e 180 [profile=no])
9d7a3741
L
181AC_ARG_ENABLE([static-pie],
182 AC_HELP_STRING([--enable-static-pie],
183 [enable static PIE support and use it in the testsuite @<:@default=no@:>@]),
184 [static_pie=$enableval],
185 [static_pie=no])
1cba4036
MF
186AC_ARG_ENABLE([timezone-tools],
187 AC_HELP_STRING([--disable-timezone-tools],
44f826e3 188 [do not install timezone tools @<:@default=install@:>@]),
1cba4036
MF
189 [enable_timezone_tools=$enableval],
190 [enable_timezone_tools=yes])
191AC_SUBST(enable_timezone_tools)
6b7f6183 192
740b3dbe
L
193AC_ARG_ENABLE([hardcoded-path-in-tests],
194 AC_HELP_STRING([--enable-hardcoded-path-in-tests],
195 [hardcode newly built glibc path in tests @<:@default=no@:>@]),
196 [hardcoded_path_in_tests=$enableval],
197 [hardcoded_path_in_tests=no])
198AC_SUBST(hardcoded_path_in_tests)
199
35f1e827
UD
200AC_ARG_ENABLE([stackguard-randomization],
201 AC_HELP_STRING([--enable-stackguard-randomization],
202 [initialize __stack_chk_guard canary with a random number at program start]),
203 [enable_stackguard_randomize=$enableval],
204 [enable_stackguard_randomize=no])
205if test "$enable_stackguard_randomize" = yes; then
206 AC_DEFINE(ENABLE_STACKGUARD_RANDOMIZE)
207fi
208
6b7f6183 209AC_ARG_ENABLE([hidden-plt],
77e8bddf
AS
210 AC_HELP_STRING([--disable-hidden-plt],
211 [do not hide internal function calls to avoid PLT]),
6b7f6183
RM
212 [hidden=$enableval],
213 [hidden=yes])
749a9a4f
RM
214if test "x$hidden" = xno; then
215 AC_DEFINE(NO_HIDDEN)
216fi
217
4df8c11d
UD
218AC_ARG_ENABLE([bind-now],
219 AC_HELP_STRING([--enable-bind-now],
220 [disable lazy relocations in DSOs]),
221 [bindnow=$enableval],
222 [bindnow=no])
223AC_SUBST(bindnow)
6901def6
L
224if test "x$bindnow" = xyes; then
225 AC_DEFINE(BIND_NOW)
226fi
4df8c11d 227
03baef1c
NA
228dnl Build glibc with -fstack-protector, -fstack-protector-all, or
229dnl -fstack-protector-strong.
230AC_ARG_ENABLE([stack-protector],
231 AC_HELP_STRING([--enable-stack-protector=@<:@yes|no|all|strong@:>@],
232 [Use -fstack-protector[-all|-strong] to detect glibc buffer overflows]),
233 [enable_stack_protector=$enableval],
234 [enable_stack_protector=no])
235case "$enable_stack_protector" in
236all|yes|no|strong) ;;
237*) AC_MSG_ERROR([Not a valid argument for --enable-stack-protector: \"$enable_stack_protector\"]);;
238esac
239
5107cf1d
UD
240dnl On some platforms we cannot use dynamic loading. We must provide
241dnl static NSS modules.
6b7f6183 242AC_ARG_ENABLE([static-nss],
77e8bddf
AS
243 AC_HELP_STRING([--enable-static-nss],
244 [build static NSS modules @<:@default=no@:>@]),
6b7f6183
RM
245 [static_nss=$enableval],
246 [static_nss=no])
834cef7c
UD
247dnl Enable static NSS also if we build no shared objects.
248if test x"$static_nss" = xyes || test x"$shared" = xno; then
3172f58f 249 static_nss=yes
5107cf1d
UD
250 AC_DEFINE(DO_STATIC_NSS)
251fi
252
6b7f6183 253AC_ARG_ENABLE([force-install],
77e8bddf
AS
254 AC_HELP_STRING([--disable-force-install],
255 [don't force installation of files from this package, even if they are older than the installed files]),
6b7f6183
RM
256 [force_install=$enableval],
257 [force_install=yes])
73237de3
UD
258AC_SUBST(force_install)
259
8894bad3
AM
260AC_ARG_ENABLE([maintainer-mode],
261 AC_HELP_STRING([--enable-maintainer-mode],
262 [enable make rules and dependencies not useful (and sometimes confusing) to the casual installer]),
263 [maintainer=$enableval],
264 [maintainer=no])
265
958f238f
UD
266dnl On some platforms we allow dropping compatibility with all kernel
267dnl versions.
6b7f6183 268AC_ARG_ENABLE([kernel],
77e8bddf
AS
269 AC_HELP_STRING([--enable-kernel=VERSION],
270 [compile for compatibility with kernel not older than VERSION]),
6b7f6183
RM
271 [minimum_kernel=$enableval],
272 [])
86cfe82d
UD
273dnl Prevent unreasonable values.
274if test "$minimum_kernel" = yes || test "$minimum_kernel" = no; then
275 # Better nothing than this.
276 minimum_kernel=""
269e369f
UD
277else
278 if test "$minimum_kernel" = current; then
279 minimum_kernel=`uname -r 2>/dev/null` || minimum_kernel=
280 fi
86cfe82d 281fi
958f238f 282
6cc7d725
UD
283dnl For the development we sometimes want gcc to issue even more warnings.
284dnl This is not the default since many of the extra warnings are not
285dnl appropriate.
6b7f6183
RM
286AC_ARG_ENABLE([all-warnings],
287 AC_HELP_STRING([--enable-all-warnings],
77e8bddf 288 [enable all useful warnings gcc can issue]),
6b7f6183
RM
289 [all_warnings=$enableval],
290 [])
6cc7d725
UD
291AC_SUBST(all_warnings)
292
a4ecc9eb
JM
293AC_ARG_ENABLE([werror],
294 AC_HELP_STRING([--disable-werror],
295 [do not build with -Werror]),
296 [enable_werror=$enableval],
297 [enable_werror=yes])
298AC_SUBST(enable_werror)
299
425ce2ed
UD
300AC_ARG_ENABLE([multi-arch],
301 AC_HELP_STRING([--enable-multi-arch],
302 [enable single DSO with optimizations for multiple architectures]),
303 [multi_arch=$enableval],
6f89d2f3 304 [multi_arch=default])
425ce2ed 305
d5c3fafc
DD
306AC_ARG_ENABLE([experimental-malloc],
307 AC_HELP_STRING([--disable-experimental-malloc],
308 [disable experimental malloc features]),
309 [experimental_malloc=$enableval],
310 [experimental_malloc=yes])
311AC_SUBST(experimental_malloc)
312
e69d994a
ZW
313AC_ARG_ENABLE([crypt],
314 AC_HELP_STRING([--disable-crypt],
315 [do not build nor install the passphrase hashing library, libcrypt]),
316 [build_crypt=$enableval],
317 [build_crypt=yes])
318AC_SUBST(build_crypt)
319
ff886b82
UD
320AC_ARG_ENABLE([nss-crypt],
321 AC_HELP_STRING([--enable-nss-crypt],
322 [enable libcrypt to use nss]),
323 [nss_crypt=$enableval],
324 [nss_crypt=no])
e69d994a
ZW
325if test x$build_libcrypt = xno && test x$nss_crypt = xyes; then
326 AC_MSG_WARN([--enable-nss-crypt has no effect when libcrypt is disabled])
327 nss_crypt=no
328fi
ff886b82
UD
329if test x$nss_crypt = xyes; then
330 nss_includes=-I$(nss-config --includedir 2>/dev/null)
331 if test $? -ne 0; then
332 AC_MSG_ERROR([cannot find include directory with nss-config])
333 fi
57b4af19
GT
334 nspr_includes=-I$(nspr-config --includedir 2>/dev/null)
335 if test $? -ne 0; then
336 AC_MSG_ERROR([cannot find include directory with nspr-config])
337 fi
ff886b82 338 old_CFLAGS="$CFLAGS"
57b4af19 339 CFLAGS="$CFLAGS $nss_includes $nspr_includes"
b68e08db 340 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
ff886b82
UD
341#include <hasht.h>
342#include <nsslowhash.h>
b68e08db 343void f (void) { NSSLOW_Init (); }])],
ff886b82
UD
344 libc_cv_nss_crypt=yes,
345 AC_MSG_ERROR([
346cannot find NSS headers with lowlevel hash function interfaces]))
347 old_LIBS="$LIBS"
84aa7516 348 old_LDFLAGS="$LDFLAGS"
ff886b82
UD
349 LIBS="$LIBS -lfreebl3"
350 AC_LINK_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
351#include <hasht.h>
352#include <nsslowhash.h>],
353 [NSSLOW_Init();])],
354 libc_cv_nss_crypt=yes,
355 AC_MSG_ERROR([
356cannot link program using lowlevel NSS hash functions]))
84aa7516
CD
357 # Check to see if there is a static NSS cryptographic library.
358 # If there isn't then we can't link anything with libcrypt.a,
359 # and that might mean disabling some static tests.
360 LDFLAGS="$LDFLAGS -static"
361 AC_LINK_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
362#include <hasht.h>
363#include <nsslowhash.h>],
364 [NSSLOW_Init();])],
365 libc_cv_static_nss_crypt=yes,
366 libc_cv_static_nss_crypt=no)
367 LDFLAGS="$old_LDFLAGS"
ff886b82
UD
368 CFLAGS="$old_CFLAGS"
369 LIBS="$old_LIBS"
370else
371 libc_cv_nss_crypt=no
84aa7516 372 libc_cv_static_nss_crypt=no
ff886b82
UD
373fi
374AC_SUBST(libc_cv_nss_crypt)
84aa7516 375AC_SUBST(libc_cv_static_nss_crypt)
ff886b82 376
3a097cc7 377
021db4be
AJ
378AC_ARG_ENABLE([obsolete-rpc],
379 AC_HELP_STRING([--enable-obsolete-rpc],
380 [build and install the obsolete RPC code for link-time usage]),
381 [link_obsolete_rpc=$enableval],
382 [link_obsolete_rpc=no])
383AC_SUBST(link_obsolete_rpc)
384
385if test "$link_obsolete_rpc" = yes; then
386 AC_DEFINE(LINK_OBSOLETE_RPC)
387fi
388
1e4d83f6
TK
389AC_ARG_ENABLE([obsolete-nsl],
390 AC_HELP_STRING([--enable-obsolete-nsl],
391 [build and install the obsolete libnsl library and depending NSS modules]),
392 [build_obsolete_nsl=$enableval],
393 [build_obsolete_nsl=no])
394AC_SUBST(build_obsolete_nsl)
395
396if test "$build_obsolete_nsl" = yes; then
397 AC_DEFINE(LINK_OBSOLETE_NSL)
398fi
399
3a097cc7
RM
400AC_ARG_ENABLE([systemtap],
401 [AS_HELP_STRING([--enable-systemtap],
402 [enable systemtap static probe points @<:@default=no@:>@])],
403 [systemtap=$enableval],
404 [systemtap=no])
405if test "x$systemtap" != xno; then
406 AC_CACHE_CHECK([for systemtap static probe support], libc_cv_sdt, [dnl
407 old_CFLAGS="$CFLAGS"
783dd2d3 408 CFLAGS="-std=gnu11 $CFLAGS"
0e3933b9 409 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <sys/sdt.h>
3a097cc7
RM
410void foo (int i, void *p)
411{
412 asm ("" STAP_PROBE_ASM (foo, bar, STAP_PROBE_ASM_TEMPLATE (2)) ""
413 :: STAP_PROBE_ASM_OPERANDS (2, i, p));
0e3933b9 414}]])], [libc_cv_sdt=yes], [libc_cv_sdt=no])
3a097cc7
RM
415 CFLAGS="$old_CFLAGS"])
416 if test $libc_cv_sdt = yes; then
417 AC_DEFINE([USE_STAP_PROBE])
418 elif test "x$systemtap" != xauto; then
419 AC_MSG_FAILURE([systemtap support needs sys/sdt.h with asm support])
420 fi
421fi
422
c53d909c
RM
423AC_ARG_ENABLE([build-nscd],
424 [AS_HELP_STRING([--disable-build-nscd],
425 [disable building and installing the nscd daemon])],
426 [build_nscd=$enableval],
427 [build_nscd=default])
428AC_SUBST(build_nscd)
429
3cc3ef96
RM
430# Note the use of $use_nscd is near the bottom of the file.
431AC_ARG_ENABLE([nscd],
432 [AS_HELP_STRING([--disable-nscd],
433 [library functions will not contact the nscd daemon])],
434 [use_nscd=$enableval],
435 [use_nscd=yes])
436
e4608715
CD
437AC_ARG_ENABLE([pt_chown],
438 [AS_HELP_STRING([--enable-pt_chown],
439 [Enable building and installing pt_chown])],
440 [build_pt_chown=$enableval],
441 [build_pt_chown=no])
442AC_SUBST(build_pt_chown)
8c12f01d 443if test "$build_pt_chown" = yes; then
e4608715
CD
444 AC_DEFINE(HAVE_PT_CHOWN)
445fi
446
67e58f39
SP
447AC_ARG_ENABLE([tunables],
448 [AS_HELP_STRING([--enable-tunables],
6765d5d3 449 [Enable tunables support. Known values are 'yes', 'no' and 'valstring'])],
67e58f39 450 [have_tunables=$enableval],
2c0b90ab 451 [have_tunables=yes])
67e58f39
SP
452AC_SUBST(have_tunables)
453if test "$have_tunables" = yes; then
454 AC_DEFINE(HAVE_TUNABLES)
455fi
456
ebf27d12
ST
457# The abi-tags file uses a fairly simplistic model for name recognition that
458# can't distinguish i486-pc-linux-gnu fully from i486-pc-gnu. So we mutate a
459# $host_os of `gnu*' here to be `gnu-gnu*' just so that it can tell.
460# This doesn't get used much beyond that, so it's fairly safe.
461case "$host_os" in
462linux*)
463 ;;
464gnu*)
465 host_os=`echo $host_os | sed -e 's/gnu/gnu-gnu/'`
466 ;;
467esac
468
5695d46f
AS
469AC_ARG_ENABLE([mathvec],
470 [AS_HELP_STRING([--enable-mathvec],
471 [Enable building and installing mathvec @<:@default depends on architecture@:>@])],
472 [build_mathvec=$enableval],
473 [build_mathvec=notset])
474
0b4c3e1e
FW
475AC_TRY_COMPILE([], [
476#ifndef __CET__
477# error no CET compiler support
478#endif],
479 [libc_cv_compiler_default_cet=yes],
480 [libc_cv_compiler_default_cet=no])
481
f753fa7d
L
482AC_ARG_ENABLE([cet],
483 AC_HELP_STRING([--enable-cet],
484 [enable Intel Control-flow Enforcement Technology (CET), x86 only]),
485 [enable_cet=$enableval],
0b4c3e1e 486 [enable_cet=$libc_cv_compiler_default_cet])
f753fa7d 487
28f540f4
RM
488# We keep the original values in `$config_*' and never modify them, so we
489# can write them unchanged into config.make. Everything else uses
490# $machine, $vendor, and $os, and changes them whenever convenient.
491config_machine=$host_cpu config_vendor=$host_vendor config_os=$host_os
492
2f64b655
UD
493# Don't allow vendor == "unknown"
494test "$config_vendor" = unknown && config_vendor=
495config_os="`echo $config_os | sed 's/^unknown-//'`"
496
a2fe9c76 497# Some configurations imply other options.
0269750c 498elf=yes
a2fe9c76 499
644d3857 500# The configure fragment of a port can modify these to supplement
8f73811b
RM
501# or override the table in the case statement below. No fragment should
502# ever change the config_* variables, however.
28f540f4
RM
503machine=$config_machine
504vendor=$config_vendor
505os=$config_os
b22d21b3 506base_os=''
28f540f4 507
2ceaa76a
RM
508submachine=
509AC_ARG_WITH([cpu],
510 AS_HELP_STRING([--with-cpu=CPU], [select code for CPU variant]),
511 [dnl
512 case "$withval" in
513 yes|'') AC_MSG_ERROR([--with-cpu requires an argument]) ;;
514 no) ;;
515 *) submachine="$withval" ;;
516 esac
517])
518
05439291
RM
519# An preconfigure script can set this when it wants to disable the sanity
520# check below.
521libc_config_ok=no
522
8df5d347
JM
523# A preconfigure script for a system that may or may not use fpu
524# sysdeps directories sets this to a preprocessor conditional for
525# whether to use such directories.
526with_fp_cond=1
527
644d3857 528dnl Let sysdeps/*/preconfigure act here.
10a803e0
RM
529LIBC_PRECONFIGURE([$srcdir], [for sysdeps])
530
8f73811b 531
bdc8eb03
UD
532###
533### By using the undocumented --enable-hacker-mode option for configure
534### one can skip this test to make the configuration not fail for unsupported
535### platforms.
536###
8f73811b 537if test -z "$enable_hacker_mode" && test x"$libc_config_ok" != xyes; then
bdc8eb03 538 case "$machine-$host_os" in
2ce4f015 539 *-linux* | *-gnu*)
bdc8eb03
UD
540 ;;
541 *)
4e58b648
MF
542 AC_MSG_ERROR([
543*** The GNU C library is currently unavailable for this platform.
544*** If you are interested in seeing glibc on this platform visit
545*** the "How to submit a new port" in the wiki:
546*** https://sourceware.org/glibc/wiki/#Development
547*** and join the community!])
bdc8eb03
UD
548 ;;
549 esac
550fi
551
3e239be6
JM
552# Set base_machine if not set by a preconfigure fragment.
553test -n "$base_machine" || base_machine=$machine
f0523145 554AC_SUBST(base_machine)
28f540f4 555
8df5d347
JM
556# Determine whether to use fpu or nofpu sysdeps directories.
557AC_CACHE_CHECK([for use of fpu sysdeps directories],
558 libc_cv_with_fp, [dnl
559cat > conftest.c <<EOF
560#if $with_fp_cond
561int dummy;
562#else
563# error "no hardware floating point"
564#endif
565EOF
566libc_cv_with_fp=no
567if ${CC-cc} $CFLAGS $CPPFLAGS -S conftest.c -o conftest.s \
568 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ; then
569 libc_cv_with_fp=yes
570fi
571rm -f conftest*])
572AC_SUBST(libc_cv_with_fp)
573
03baef1c
NA
574AC_CACHE_CHECK(for -fstack-protector, libc_cv_ssp, [dnl
575LIBC_TRY_CC_OPTION([$CFLAGS $CPPFLAGS -Werror -fstack-protector],
576 [libc_cv_ssp=yes],
577 [libc_cv_ssp=no])
578])
579
580AC_CACHE_CHECK(for -fstack-protector-strong, libc_cv_ssp_strong, [dnl
581LIBC_TRY_CC_OPTION([$CFLAGS $CPPFLAGS -Werror -fstack-protector-strong],
582 [libc_cv_ssp_strong=yes],
583 [libc_cv_ssp_strong=no])
584])
585
586AC_CACHE_CHECK(for -fstack-protector-all, libc_cv_ssp_all, [dnl
587LIBC_TRY_CC_OPTION([$CFLAGS $CPPFLAGS -Werror -fstack-protector-all],
588 [libc_cv_ssp_all=yes],
589 [libc_cv_ssp_all=no])
590])
591
592stack_protector=
593no_stack_protector=
594if test "$libc_cv_ssp" = yes; then
595 no_stack_protector="-fno-stack-protector -DSTACK_PROTECTOR_LEVEL=0"
de659123 596 AC_DEFINE(HAVE_CC_NO_STACK_PROTECTOR)
03baef1c
NA
597fi
598
599if test "$enable_stack_protector" = yes && test "$libc_cv_ssp" = yes; then
600 stack_protector="-fstack-protector"
601 AC_DEFINE(STACK_PROTECTOR_LEVEL, 1)
602elif test "$enable_stack_protector" = all && test "$libc_cv_ssp_all" = yes; then
603 stack_protector="-fstack-protector-all"
604 AC_DEFINE(STACK_PROTECTOR_LEVEL, 2)
605elif test "$enable_stack_protector" = strong && test "$libc_cv_ssp_strong" = yes; then
606 stack_protector="-fstack-protector-strong"
607 AC_DEFINE(STACK_PROTECTOR_LEVEL, 3)
66a704c4
NA
608else
609 stack_protector="-fno-stack-protector"
610 AC_DEFINE(STACK_PROTECTOR_LEVEL, 0)
03baef1c
NA
611fi
612AC_SUBST(libc_cv_ssp)
613AC_SUBST(stack_protector)
614AC_SUBST(no_stack_protector)
615
66a704c4
NA
616if test -n "$stack_protector"; then
617 dnl Don't run configure tests with stack-protection on, to avoid problems with
618 dnl bootstrapping.
619 no_ssp=-fno-stack-protector
620else
621 no_ssp=
622
623 if test "$enable_stack_protector" != no; then
624 AC_MSG_ERROR([--enable-stack-protector=$enable_stack_protector specified, but specified level of stack protection is not supported by the compiler.])
625 fi
626fi
627
0cae3f4b
MF
628# For the multi-arch option we need support in the assembler & linker.
629AC_CACHE_CHECK([for assembler and linker STT_GNU_IFUNC support],
630 libc_cv_ld_gnu_indirect_function, [dnl
786b0b67 631cat > conftest.S <<EOF
84b9230c 632.type foo,%gnu_indirect_function
0cae3f4b
MF
633foo:
634.globl _start
635_start:
636.globl __start
637__start:
638.data
786b0b67
AS
639#ifdef _LP64
640.quad foo
641#else
0cae3f4b 642.long foo
786b0b67 643#endif
84b9230c 644EOF
0cae3f4b
MF
645libc_cv_ld_gnu_indirect_function=no
646if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
66a704c4 647 -nostartfiles -nostdlib $no_ssp \
786b0b67 648 -o conftest conftest.S 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
0cae3f4b
MF
649 # Do a link to see if the backend supports IFUNC relocs.
650 $READELF -r conftest 1>&AS_MESSAGE_LOG_FD
651 LC_ALL=C $READELF -r conftest | grep 'no relocations' >/dev/null || {
652 libc_cv_ld_gnu_indirect_function=yes
653 }
84b9230c
MF
654fi
655rm -f conftest*])
656
022dfdce
SL
657# Check if gcc supports attribute ifunc as it is used in libc_ifunc macro.
658AC_CACHE_CHECK([for gcc attribute ifunc support],
659 libc_cv_gcc_indirect_function, [dnl
660cat > conftest.c <<EOF
661extern int func (int);
662int used_func (int a)
663{
664 return a;
665}
666static void *resolver ()
667{
668 return &used_func;
669}
670extern __typeof (func) func __attribute__ ((ifunc ("resolver")));
671EOF
672libc_cv_gcc_indirect_function=no
673if ${CC-cc} -c conftest.c -o conftest.o 1>&AS_MESSAGE_LOG_FD \
674 2>&AS_MESSAGE_LOG_FD ; then
675 if $READELF -s conftest.o | grep IFUNC >/dev/null 2>&AS_MESSAGE_LOG_FD; then
676 libc_cv_gcc_indirect_function=yes
677 fi
678fi
679rm -f conftest*])
680
b5c45e83
AZ
681# Check if linker supports textrel relocation with ifunc (used on elf/tests).
682# Note that it relies on libc_cv_ld_gnu_indirect_function test above.
683AC_CACHE_CHECK([whether the linker supports textrels along with ifunc],
684 libc_cv_textrel_ifunc, [dnl
685cat > conftest.S <<EOF
686.type foo,%gnu_indirect_function
687foo:
688.globl _start
689_start:
690.globl __start
691__start:
692.data
693#ifdef _LP64
694.quad foo
695#else
696.long foo
697#endif
698.text
699.globl address
700address:
701#ifdef _LP64
702.quad address
703#else
704.long address
705#endif
706EOF
707libc_cv_textrel_ifunc=no
708if test $libc_cv_ld_gnu_indirect_function = yes; then
709 if AC_TRY_COMMAND(${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -nostartfiles -nostdlib $no_ssp -pie -o conftest conftest.S); then
710 libc_cv_textrel_ifunc=yes
711 fi
712fi
713rm -f conftest*])
714AC_SUBST(libc_cv_textrel_ifunc)
715
8f6f5362
AZ
716# Check if gcc warns about alias for function with incompatible types.
717AC_CACHE_CHECK([if compiler warns about alias for function with incompatible types],
718 libc_cv_gcc_incompatible_alias, [dnl
719cat > conftest.c <<EOF
720int __redirect_foo (const void *s, int c);
721
722__typeof (__redirect_foo) *foo_impl (void) __asm__ ("foo");
723__typeof (__redirect_foo) *foo_impl (void)
724{
725 return 0;
726}
727
728extern __typeof (__redirect_foo) foo_alias __attribute__ ((alias ("foo")));
729EOF
730libc_cv_gcc_incompatible_alias=yes
731if ${CC-cc} -Werror -c conftest.c -o conftest.o 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD ; then
732 libc_cv_gcc_incompatible_alias=no
733fi
734rm -f conftest*])
735
0cae3f4b 736if test x"$libc_cv_ld_gnu_indirect_function" != xyes; then
84b9230c
MF
737 if test x"$multi_arch" = xyes; then
738 AC_MSG_ERROR([--enable-multi-arch support requires assembler and linker support])
739 else
740 multi_arch=no
741 fi
742fi
8f6f5362
AZ
743if test x"$libc_cv_gcc_indirect_function" != xyes; then
744 # GCC 8+ emits a warning for alias with incompatible types and it might
745 # fail to build ifunc resolvers aliases to either weak or internal
746 # symbols. Disables multiarch build in this case.
747 if test x"$libc_cv_gcc_incompatible_alias" == xyes; then
748 AC_MSG_WARN([gcc emits a warning for alias between functions of incompatible types])
749 if test x"$multi_arch" = xyes; then
750 AC_MSG_ERROR([--enable-multi-arch support requires a gcc with gnu-indirect-function support])
751 fi
752 AC_MSG_WARN([Multi-arch is disabled.])
753 multi_arch=no
754 elif test x"$multi_arch" = xyes; then
755 AC_MSG_WARN([--enable-multi-arch support recommends a gcc with gnu-indirect-function support.
022dfdce 756Please use a gcc which supports it by default or configure gcc with --enable-gnu-indirect-function])
8f6f5362 757 fi
022dfdce 758fi
6270516e 759multi_arch_d=
84b9230c
MF
760if test x"$multi_arch" != xno; then
761 multi_arch_d=/multiarch
762fi
763
f0523145 764# Compute the list of sysdep directories for this configuration.
f332db02 765# This can take a while to compute.
f0523145 766sysdep_dir=$srcdir/sysdeps
f332db02 767AC_MSG_CHECKING(sysdep dirs)
f0523145
RM
768dnl We need to use [ and ] for other purposes for a while now.
769changequote(,)dnl
28f540f4
RM
770# Make sco3.2v4 become sco3.2.4 and sunos4.1.1_U1 become sunos4.1.1.U1.
771os="`echo $os | sed 's/\([0-9A-Z]\)[v_]\([0-9A-Z]\)/\1.\2/g'`"
772
b22d21b3 773test "x$base_os" != x || case "$os" in
28f540f4
RM
774gnu*)
775 base_os=mach/hurd ;;
2ce4f015 776linux*)
28f540f4 777 base_os=unix/sysv ;;
28f540f4
RM
778esac
779
780# For sunos4.1.1, try sunos4.1.1, then sunos4.1, then sunos4, then sunos.
781tail=$os
782ostry=$os
783while o=`echo $tail | sed 's/\.[^.]*$//'`; test $o != $tail; do
784 ostry="$ostry /$o"
785 tail=$o
75914335 786done
28f540f4
RM
787o=`echo $tail | sed 's/[0-9]*$//'`
788if test $o != $tail; then
789 ostry="$ostry /$o"
790fi
ec4b0518
UD
791# For linux-gnu, try linux-gnu, then linux.
792o=`echo $tail | sed 's/-.*$//'`
793if test $o != $tail; then
794 ostry="$ostry /$o"
795fi
28f540f4
RM
796
797# For unix/sysv/sysv4, try unix/sysv/sysv4, then unix/sysv, then unix.
798base=
799tail=$base_os
800while b=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$b"; do
801 set $b
802 base="$base /$1"
803 tail="$2"
804done
805
ae6b8730 806# For sparc/sparc32, try sparc/sparc32 and then sparc.
28f540f4 807mach=
2ceaa76a 808tail=$machine${submachine:+/$submachine}
28f540f4
RM
809while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
810 set $m
10ceac89 811 # Prepend the machine's FPU directory unless --without-fp.
8df5d347 812 if test "$libc_cv_with_fp" = yes; then
6270516e 813 maybe_fpu=/fpu
f4b07664 814 else
6270516e 815 maybe_fpu=/nofpu
82d00cab 816 fi
6270516e
RM
817 # For each machine term, try it with and then without /multiarch.
818 for try_fpu in $maybe_fpu ''; do
819 for try_multi in $multi_arch_d ''; do
820 mach="$mach /$1$try_fpu$try_multi"
821 done
822 done
28f540f4
RM
823 tail="$2"
824done
825
826dnl We are done with glob and regexp uses of [ and ]; return to autoconf.
827changequote([,])dnl
828
829# Find what sysdep directories exist.
830sysnames=
4b69abad
RM
831for b in $base ''; do
832 for m0 in $mach ''; do
833 for v in /$vendor ''; do
834 test "$v" = / && continue
835 for o in /$ostry ''; do
836 test "$o" = / && continue
6270516e 837 for m in $mach ''; do
644d3857
JM
838 try_suffix="$m0$b$v$o$m"
839 if test -n "$try_suffix"; then
840 try_srcdir="${srcdir}/"
841 try="sysdeps$try_suffix"
842 test -n "$enable_debug_configure" &&
843 echo "$0 [DEBUG]: try $try" >&2
844 if test -d "$try_srcdir$try"; then
845 sysnames="$sysnames $try"
846 { test -n "$o" || test -n "$b"; } && os_used=t
847 { test -n "$m" || test -n "$m0"; } && machine_used=t
848 case x${m0:-$m} in
849 x*/$submachine) submachine_used=t ;;
850 esac
851 fi
852 fi
28f540f4
RM
853 done
854 done
855 done
856 done
4b69abad 857done
28f540f4 858
6f89d2f3
L
859# If the assembler supports gnu_indirect_function symbol type and the
860# architecture supports multi-arch, we enable multi-arch by default.
644d3857 861case $sysnames in
84b9230c
MF
862*"$multi_arch_d"*)
863 ;;
864*)
77e8bddf 865 test x"$multi_arch" = xdefault && multi_arch=no
84b9230c
MF
866 ;;
867esac
868if test x"$multi_arch" != xno; then
6f89d2f3
L
869 AC_DEFINE(USE_MULTIARCH)
870fi
871AC_SUBST(multi_arch)
872
28f540f4
RM
873if test -z "$os_used" && test "$os" != none; then
874 AC_MSG_ERROR(Operating system $os is not supported.)
875fi
876if test -z "$machine_used" && test "$machine" != none; then
877 AC_MSG_ERROR(The $machine is not supported.)
878fi
2ceaa76a
RM
879if test -z "$submachine_used" && test -n "$submachine"; then
880 AC_MSG_ERROR(The $submachine subspecies of $host_cpu is not supported.)
881fi
882AC_SUBST(submachine)
28f540f4
RM
883
884# We have now validated the configuration.
885
28f540f4
RM
886# Expand the list of system names into a full list of directories
887# from each element's parent name and Implies file (if present).
888set $sysnames
e50ec9f9 889names=
28f540f4
RM
890while test $# -gt 0; do
891 name=$1
892 shift
893
e50ec9f9 894 case " $names " in *" $name "*)
f332db02
RM
895 # Already in the list.
896 continue
e50ec9f9 897 esac
f332db02
RM
898
899 # Report each name as we discover it, so there is no long pause in output.
0b4ee387 900 echo $ECHO_N "$name $ECHO_C" >&AS_MESSAGE_FD
f332db02 901
57ba7bb4
UD
902 name_base=`echo $name | sed -e 's@\(.*sysdeps\)/.*@\1@'`
903
904 case $name in
905 /*) xsrcdir= ;;
906 *) xsrcdir=$srcdir/ ;;
907 esac
908 test -n "$enable_debug_configure" &&
909 echo "[DEBUG]: name/Implies $xsrcdir$name/Implies" >&2
910
ba75122d
RM
911 for implies_file in Implies Implies-before Implies-after; do
912 implies_type=`echo $implies_file | sed s/-/_/`
913 eval ${implies_type}=
914 if test -f $xsrcdir$name/$implies_file; then
915 # Collect more names from the `Implies' file (removing comments).
916 implied_candidate="`sed 's/#.*$//' < $xsrcdir$name/$implies_file`"
917 for x in $implied_candidate; do
918 found=no
919 if test -d $xsrcdir$name_base/$x; then
920 eval "${implies_type}=\"\$${implies_type} \$name_base/\$x\""
636ccfc8 921 found=yes
ba75122d 922 fi
644d3857
JM
923 try="sysdeps/$x"
924 try_srcdir=$srcdir/
925 test -n "$enable_debug_configure" &&
926 echo "[DEBUG]: $name $implies_file $x try() {$try_srcdir}$try" >&2
927 if test $try != $xsrcdir$name_base/$x && test -d $try_srcdir$try;
928 then
929 eval "${implies_type}=\"\$${implies_type} \$try\""
930 found=yes
931 fi
ba75122d
RM
932 if test $found = no; then
933 AC_MSG_WARN($name/$implies_file specifies nonexistent $x)
636ccfc8
UD
934 fi
935 done
ba75122d
RM
936 fi
937 done
28f540f4
RM
938
939 # Add NAME to the list of names.
940 names="$names $name"
941
942 # Find the parent of NAME, using the empty string if it has none.
943changequote(,)dnl
57ba7bb4 944 parent="`echo $name | sed -n -e 's=/[^/]*$==' -e '/sysdeps$/q' -e p`"
28f540f4
RM
945changequote([,])dnl
946
ba75122d
RM
947 test -n "$enable_debug_configure" &&
948 echo "[DEBUG]: $name Implies='$Implies' rest='$*' parent='$parent' \
57633811 949Implies_before='$Implies_before' Implies_after='$Implies_after'" >&2
ba75122d 950
28f540f4
RM
951 # Add the names implied by NAME, and NAME's parent (if it has one), to
952 # the list of names to be processed (the argument list). We prepend the
953 # implied names to the list and append the parent. We want implied
954 # directories to come before further directories inferred from the
955 # configuration components; this ensures that for sysv4, unix/common
956 # (implied by unix/sysv/sysv4) comes before unix/sysv (in ostry (here $*)
957 # after sysv4).
ba75122d 958 sysnames="`echo $Implies $* $Implies_before $parent $Implies_after`"
28f540f4
RM
959 test -n "$sysnames" && set $sysnames
960done
961
962# Add the default directories.
83ef87ba 963default_sysnames="sysdeps/generic"
ecdc196c 964sysnames="$names $default_sysnames"
f332db02
RM
965AC_SUBST(sysnames)
966# The other names were emitted during the scan.
ecdc196c 967AC_MSG_RESULT($default_sysnames)
28f540f4 968
f332db02
RM
969
970### Locate tools.
28f540f4 971
28f540f4 972AC_PROG_INSTALL
2b80a372 973if test "$INSTALL" = "${srcdir}/scripts/install-sh -c"; then
28f540f4 974 # The makefiles need to use a different form to find it in $srcdir.
2b80a372 975 INSTALL='\$(..)./scripts/install-sh -c'
28f540f4 976fi
0e3426bb 977AC_PROG_LN_S
ae828bc6 978
4baa087a 979LIBC_PROG_BINUTILS
4baa087a 980
b4396163 981# Accept binutils 2.25 or newer.
4baa087a
RM
982AC_CHECK_PROG_VER(AS, $AS, --version,
983 [GNU assembler.* \([0-9]*\.[0-9.]*\)],
b4396163 984 [2.1[0-9][0-9]*|2.2[5-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
bd805071 985 AS=: critic_missing="$critic_missing as")
f300dc73
L
986
987if test -n "`$LD --version | sed -n 's/^GNU \(gold\).*$/\1/p'`"; then
988 # Accept gold 1.14 or higher
989 AC_CHECK_PROG_VER(LD, $LD, --version,
990 [GNU gold.* \([0-9][0-9]*\.[0-9.]*\)],
991 [1.1[4-9]*|1.[2-9][0-9]*|1.1[0-9][0-9]*|[2-9].*|[1-9][0-9]*],
992 LD=: critic_missing="$critic_missing GNU gold")
993else
994 AC_CHECK_PROG_VER(LD, $LD, --version,
995 [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
073e8fa7 996 [2.1[0-9][0-9]*|2.2[5-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
f300dc73
L
997 LD=: critic_missing="$critic_missing GNU ld")
998fi
4baa087a 999
63bda0c1 1000# These programs are version sensitive.
3a12e572 1001AC_CHECK_TOOL_PREFIX
22e65f8f 1002AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version,
8fc1e2ca 1003 [GNU Make[^0-9]*\([0-9][0-9.]*\)],
f2873d2d 1004 [[4-9].* | [1-9][0-9]*], critic_missing="$critic_missing make")
63bda0c1 1005
22e65f8f 1006AC_CHECK_PROG_VER(MSGFMT, gnumsgfmt gmsgfmt msgfmt, --version,
bdd421cc 1007 [GNU gettext.* \([0-9]*\.[0-9.]*\)],
aefdff34
RM
1008 [0.10.3[6-9]* | 0.10.[4-9][0-9]* | 0.1[1-9]* | 0.[2-9][0-9]* | [1-9].*],
1009 MSGFMT=: aux_missing="$aux_missing msgfmt")
63bda0c1 1010AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
8b7fb588 1011 [GNU texinfo.* \([0-9][0-9.]*\)],
3a12c70f 1012 [4.[7-9]*|4.[1-9][0-9]*|[5-9].*],
aefdff34 1013 MAKEINFO=: aux_missing="$aux_missing makeinfo")
d6a97a28 1014AC_CHECK_PROG_VER(SED, sed, --version,
07e51550 1015 [GNU sed[^0-9]* \([0-9]*\.[0-9.]*\)],
aefdff34
RM
1016 [3.0[2-9]*|3.[1-9]*|[4-9]*],
1017 SED=: aux_missing="$aux_missing sed")
0786794f
AM
1018AC_CHECK_PROG_VER(AWK, gawk, --version,
1019 [GNU Awk[^0-9]*\([0-9][0-9.]*\)],
12086fb4 1020 [3.1.[2-9]*|3.[2-9]*|[4-9]*], critic_missing="$critic_missing gawk")
1faaf703
JB
1021AC_CHECK_PROG_VER(BISON, bison, --version,
1022 [bison (GNU Bison) \([0-9]*\.[0-9.]*\)],
1023 [2.7*|[3-9].*|[1-9][0-9]*], critic_missing="$critic_missing bison")
63bda0c1 1024
461a7b1e
RM
1025AC_CACHE_CHECK([if $CC is sufficient to build libc], libc_cv_compiler_ok, [
1026AC_TRY_COMPILE([], [
192963be 1027#if !defined __GNUC__ || __GNUC__ < 5
461a7b1e
RM
1028#error insufficient compiler
1029#endif],
1030 [libc_cv_compiler_ok=yes],
1031 [libc_cv_compiler_ok=no])])
1032AS_IF([test $libc_cv_compiler_ok != yes],
1033 [critic_missing="$critic_missing compiler"])
1034
30b99d79 1035AC_CHECK_TOOL(NM, nm, false)
d30cf5bb 1036
8894bad3
AM
1037if test "x$maintainer" = "xyes"; then
1038 AC_CHECK_PROGS(AUTOCONF, autoconf, no)
1039 case "x$AUTOCONF" in
1040 xno|x|x:) AUTOCONF=no ;;
1041 *)
1042 AC_CACHE_CHECK(dnl
1043 whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works, libc_cv_autoconf_works, [dnl
1044 if (cd $srcdir; $AUTOCONF $ACFLAGS configure.ac > /dev/null 2>&1); then
1045 libc_cv_autoconf_works=yes
1046 else
1047 libc_cv_autoconf_works=no
1048 fi])
1049 test $libc_cv_autoconf_works = yes || AUTOCONF=no
1050 ;;
1051 esac
1052 if test "x$AUTOCONF" = xno; then
1053 aux_missing="$aux_missing autoconf"
1054 fi
9e8ac24b
AM
1055else
1056 AUTOCONF=no
14519931 1057fi
1400de2e 1058
8ce8299f 1059# Check for python3 if available, or else python.
c6982f7e
JM
1060AC_CHECK_PROG_VER(PYTHON_PROG, python3 python, --version,
1061 [Python \([0-9][0-9.]*\)],
1062 [3.[4-9]*|3.[1-9][0-9]*|[4-9].*|[1-9][0-9]*],
1063 critic_missing="$critic_missing python")
1064PYTHON="$PYTHON_PROG -B"
1065AC_SUBST(PYTHON)
8ce8299f 1066
32a448ed
RM
1067test -n "$critic_missing" && AC_MSG_ERROR([
1068*** These critical programs are missing or too old:$critic_missing
1069*** Check the INSTALL file for required versions.])
1070
4bca4c17 1071test -n "$aux_missing" && AC_MSG_WARN([
9c6fffc0 1072*** These auxiliary programs are missing or incompatible versions:$aux_missing
8ce8299f 1073*** some features or tests will be disabled.
63bda0c1 1074*** Check the INSTALL file for required versions.])
28f540f4 1075
dbe7a0f5
UD
1076# if using special system headers, find out the compiler's sekrit
1077# header directory and add that to the list. NOTE: Only does the right
1078# thing on a system that doesn't need fixincludes. (Not presently a problem.)
1079if test -n "$sysheaders"; then
67fbfa5c
RM
1080 SYSINCLUDES=-nostdinc
1081 for d in include include-fixed; do
1082 i=`$CC -print-file-name="$d"` && test "x$i" != x && test "x$i" != "x$d" &&
1083 SYSINCLUDES="$SYSINCLUDES -isystem $i"
1084 done
1085 SYSINCLUDES="$SYSINCLUDES \
3d6ce23a 1086-isystem `echo $sysheaders | sed 's/:/ -isystem /g'`"
ef226fec 1087 if test -n "$CXX"; then
7872cfb0 1088 CXX_SYSINCLUDES=
67060746
AC
1089 for cxxheaders in `$CXX -v -S -x c++ /dev/null -o /dev/null 2>&1 \
1090 | sed -n -e '1,/#include/d' -e 's/^ \(\/.*\/[cg]++\)/\1/p'`; do
1091 test "x$cxxheaders" != x &&
1092 CXX_SYSINCLUDES="$CXX_SYSINCLUDES -isystem $cxxheaders"
1093 done
ef226fec 1094 fi
dbe7a0f5
UD
1095fi
1096AC_SUBST(SYSINCLUDES)
ef226fec 1097AC_SUBST(CXX_SYSINCLUDES)
dbe7a0f5 1098
fc3e1337
FW
1099# Obtain some C++ header file paths. This is used to make a local
1100# copy of those headers in Makerules.
1101if test -n "$CXX"; then
1102 find_cxx_header () {
c2528fef
FW
1103 echo "#include <$1>" | $CXX -M -MP -x c++ - 2>/dev/null \
1104 | sed -n "\,$1:,{s/:\$//;p}"
fc3e1337
FW
1105 }
1106 CXX_CSTDLIB_HEADER="$(find_cxx_header cstdlib)"
1107 CXX_CMATH_HEADER="$(find_cxx_header cmath)"
a65ea28d 1108 CXX_BITS_STD_ABS_H="$(find_cxx_header bits/std_abs.h)"
fc3e1337
FW
1109fi
1110AC_SUBST(CXX_CSTDLIB_HEADER)
1111AC_SUBST(CXX_CMATH_HEADER)
a65ea28d 1112AC_SUBST(CXX_BITS_STD_ABS_H)
fc3e1337 1113
3911660e
UD
1114# Test if LD_LIBRARY_PATH contains the notation for the current directory
1115# since this would lead to problems installing/building glibc.
1116# LD_LIBRARY_PATH contains the current directory if one of the following
1117# is true:
1118# - one of the terminals (":" and ";") is the first or last sign
1119# - two terminals occur directly after each other
1120# - the path contains an element with a dot in it
1121AC_MSG_CHECKING(LD_LIBRARY_PATH variable)
1122changequote(,)dnl
1123case ${LD_LIBRARY_PATH} in
1124 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
b3a86ae1 1125 ld_library_path_setting="contains current directory"
3911660e
UD
1126 ;;
1127 *)
1128 ld_library_path_setting="ok"
1129 ;;
1130esac
1131changequote([,])dnl
1132AC_MSG_RESULT($ld_library_path_setting)
1133if test "$ld_library_path_setting" != "ok"; then
63bda0c1
UD
1134AC_MSG_ERROR([
1135*** LD_LIBRARY_PATH shouldn't contain the current directory when
1136*** building glibc. Please change the environment variable
1137*** and run configure again.])
3911660e 1138fi
8e31cf7e 1139
26f56c1c 1140AC_PATH_PROG(BASH_SHELL, bash, no)
84384f5b 1141
c0016081 1142AC_PATH_PROG(PERL, perl, no)
2fd5d029
RM
1143if test "$PERL" != no &&
1144 (eval `$PERL -V:apiversion`; test `expr "$apiversion" \< 5` -ne 0); then
1145 PERL=no
ecb06196 1146fi
2f512715
AS
1147AC_PATH_PROG(INSTALL_INFO, install-info, no,
1148 $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
2de00372 1149
b8dc6a10 1150AC_CACHE_CHECK(for .set assembler directive, libc_cv_asm_set_directive, [dnl
9a70fcab 1151cat > conftest.s <<EOF
8c0c01db 1152.text
ae1025be 1153foo:
df2a0c93 1154.set glibc_conftest_frobozz,foo
7b8e0d49 1155.globl glibc_conftest_frobozz
e215c478 1156EOF
df2a0c93
RM
1157# The alpha-dec-osf1 assembler gives only a warning for `.set'
1158# (but it doesn't work), so we must do a linking check to be sure.
1159cat > conftest1.c <<\EOF
1160extern int glibc_conftest_frobozz;
640f0119 1161void _start() { glibc_conftest_frobozz = 1; }
df2a0c93
RM
1162EOF
1163if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
66a704c4 1164 -nostartfiles -nostdlib $no_ssp \
0b4ee387 1165 -o conftest conftest.s conftest1.c 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
e215c478
RM
1166 libc_cv_asm_set_directive=yes
1167else
1168 libc_cv_asm_set_directive=no
1169fi
65b3cbcb 1170rm -f conftest*])
e215c478
RM
1171if test $libc_cv_asm_set_directive = yes; then
1172 AC_DEFINE(HAVE_ASM_SET_DIRECTIVE)
1173fi
1174
2a723ff6
JM
1175AC_CACHE_CHECK(linker support for protected data symbol,
1176 libc_cv_protected_data,
1177 [cat > conftest.c <<EOF
1178 int bar __attribute__ ((visibility ("protected"))) = 1;
83569fb8 1179EOF
2a723ff6 1180 libc_cv_protected_data=no
66a704c4 1181 if AC_TRY_COMMAND(${CC-cc} -nostdlib -nostartfiles $no_ssp -fPIC -shared conftest.c -o conftest.so); then
2a723ff6
JM
1182 cat > conftest.c <<EOF
1183 extern int bar;
1184 int main (void) { return bar; }
83569fb8 1185EOF
66a704c4 1186 if AC_TRY_COMMAND(${CC-cc} -nostdlib -nostartfiles $no_ssp conftest.c -o conftest conftest.so); then
2a723ff6 1187 libc_cv_protected_data=yes
83569fb8 1188 fi
2a723ff6
JM
1189 fi
1190 rm -f conftest.*
1191 ])
83569fb8
L
1192AC_SUBST(libc_cv_protected_data)
1193
19f1a11e
L
1194AC_CACHE_CHECK(linker support for INSERT in linker script,
1195 libc_cv_insert,
1196 [cat > conftest.c <<EOF
1197 const int __attribute__ ((section(".bar"))) bar = 0x12345678;
1198 int test (void) { return bar; }
1199EOF
1200 cat > conftest.t <<EOF
1201 SECTIONS
1202 {
1203 .bar : { *(.bar) }
1204 }
1205 INSERT AFTER .rela.dyn;
1206EOF
1207 libc_cv_insert=no
1208 if AC_TRY_COMMAND([${CC-cc} -nostdlib -nostartfiles $no_ssp -fPIC -shared conftest.c -Wl,-T,conftest.t -o conftest.so]); then
1209 libc_cv_insert=yes
1210 fi
1211 rm -f conftest.*
1212 ])
1213AC_SUBST(libc_cv_insert)
1214
a0da5fe1
UD
1215AC_CACHE_CHECK(for broken __attribute__((alias())),
1216 libc_cv_broken_alias_attribute,
1217 [cat > conftest.c <<EOF
1218 extern int foo (int x) __asm ("xyzzy");
1219 int bar (int x) { return x; }
1220 extern __typeof (bar) foo __attribute ((weak, alias ("bar")));
1221 extern int dfoo;
1222 extern __typeof (dfoo) dfoo __asm ("abccb");
1223 int dfoo = 1;
37ba7d66 1224EOF
a0da5fe1
UD
1225 libc_cv_broken_alias_attribute=yes
1226 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
1227 if grep 'xyzzy' conftest.s >/dev/null &&
1228 grep 'abccb' conftest.s >/dev/null; then
1229 libc_cv_broken_alias_attribute=no
1230 fi
1231 fi
1232 rm -f conftest.c conftest.s
1233 ])
1234if test $libc_cv_broken_alias_attribute = yes; then
1235 AC_MSG_ERROR(working alias attribute support required)
1236fi
1237
2a723ff6
JM
1238AC_CACHE_CHECK(whether to put _rtld_local into .sdata section,
1239 libc_cv_have_sdata_section,
1240 [echo "int i;" > conftest.c
1241 libc_cv_have_sdata_section=no
1242 if ${CC-cc} $LDFLAGS -fPIC -shared -Wl,--verbose conftest.c -o conftest.so 2>&1 \
1243 | grep '\.sdata' >/dev/null; then
1244 libc_cv_have_sdata_section=yes
1245 fi
1246 rm -f conftest.c conftest.so
1247 ])
1248if test $libc_cv_have_sdata_section = yes; then
1249 AC_DEFINE(HAVE_SDATA_SECTION)
a0da5fe1 1250fi
0d01dace 1251
a0da5fe1
UD
1252AC_CACHE_CHECK(whether to use .ctors/.dtors header and trailer,
1253 libc_cv_ctors_header, [dnl
1254 libc_cv_ctors_header=yes
07037eeb
JM
1255 LIBC_TRY_LINK_STATIC([
1256__attribute__ ((constructor)) void ctor (void) { asm (""); }
1257__attribute__ ((destructor)) void dtor (void) { asm (""); }
113ddea4 1258],
a0da5fe1 1259 [dnl
113ddea4 1260 AS_IF([$READELF -WS conftest$ac_exeext | $AWK '
92963737 1261 { gsub(/\@<:@ */, "@<:@") }
113ddea4
RM
1262 $2 == ".ctors" || $2 == ".dtors" {
1263 size = strtonum("0x" $6)
1264 align = strtonum("0x" $NF)
1265 seen@<:@$2@:>@ = 1
1266 stub@<:@$2@:>@ = size == align * 2
92963737 1267 }
113ddea4
RM
1268 END {
1269 ctors_ok = !seen@<:@".ctors"@:>@ || stub@<:@".ctors"@:>@
1270 dtors_ok = !seen@<:@".dtors"@:>@ || stub@<:@".dtors"@:>@
1271 exit ((ctors_ok && dtors_ok) ? 0 : 1)
1272 }
1273 '], [libc_cv_ctors_header=no])
1274 ], [dnl
1275 AC_MSG_ERROR([missing __attribute__ ((constructor)) support??])
1276 ])
a0da5fe1
UD
1277])
1278if test $libc_cv_ctors_header = no; then
1279 AC_DEFINE(NO_CTORS_DTORS_SECTIONS)
1280fi
5241882c 1281
a0da5fe1
UD
1282AC_CACHE_CHECK(for libunwind-support in compiler,
1283 libc_cv_cc_with_libunwind, [
1284 cat > conftest.c <<EOF
cbdb12de
UD
1285int main (void) { return 0; }
1286EOF
a0da5fe1 1287 if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -static -o conftest \
8175a253 1288 conftest.c -v 2>&1 >/dev/null | grep ' -lunwind ' >/dev/null; then
a0da5fe1
UD
1289 libc_cv_cc_with_libunwind=yes
1290 else
1291 libc_cv_cc_with_libunwind=no
c776b3d7 1292 fi
a0da5fe1
UD
1293 rm -f conftest*])
1294AC_SUBST(libc_cv_cc_with_libunwind)
1295if test $libc_cv_cc_with_libunwind = yes; then
1296 AC_DEFINE(HAVE_CC_WITH_LIBUNWIND)
1297fi
c776b3d7 1298
a0da5fe1
UD
1299ASFLAGS_config=
1300AC_CACHE_CHECK(whether --noexecstack is desirable for .S files,
1301 libc_cv_as_noexecstack, [dnl
1302cat > conftest.c <<EOF
35915ec8
UD
1303void foo (void) { }
1304EOF
a0da5fe1
UD
1305if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS
1306 -S -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD]) \
8175a253 1307 && grep .note.GNU-stack conftest.s >/dev/null \
a0da5fe1
UD
1308 && AC_TRY_COMMAND([${CC-cc} $ASFLAGS -Wa,--noexecstack
1309 -c -o conftest.o conftest.s 1>&AS_MESSAGE_LOG_FD])
1310then
1311 libc_cv_as_noexecstack=yes
1312else
1313 libc_cv_as_noexecstack=no
1314fi
1315rm -f conftest*])
1316if test $libc_cv_as_noexecstack = yes; then
1317 ASFLAGS_config="$ASFLAGS_config -Wa,--noexecstack"
1318fi
1319AC_SUBST(ASFLAGS_config)
2abf9ff1 1320
a0da5fe1
UD
1321AC_CACHE_CHECK(for -z combreloc,
1322 libc_cv_z_combreloc, [dnl
1323cat > conftest.c <<EOF
d555194c
UD
1324extern int bar (int);
1325extern int mumble;
1326int foo (void) { return bar (mumble); }
a711b01d 1327EOF
a0da5fe1 1328if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
66a704c4 1329 -fPIC -shared $no_ssp -o conftest.so conftest.c
35cd3c97 1330 -nostdlib -nostartfiles
c2f55635 1331 -Wl,-z,combreloc 1>&AS_MESSAGE_LOG_FD])
a0da5fe1 1332then
a711b01d
UD
1333dnl The following test is a bit weak. We must use a tool which can test
1334dnl cross-platform since the gcc used can be a cross compiler. Without
1335dnl introducing new options this is not easily doable. Instead use a tool
1336dnl which always is cross-platform: readelf. To detect whether -z combreloc
e37fc4aa
AN
1337dnl look for a section named .rel.dyn or .rela.dyn.
1338 if $READELF -S conftest.so | grep -E '.rela?.dyn' > /dev/null; then
a0da5fe1 1339 libc_cv_z_combreloc=yes
fdde8349
UD
1340 else
1341 libc_cv_z_combreloc=no
a711b01d 1342 fi
a0da5fe1
UD
1343else
1344 libc_cv_z_combreloc=no
1345fi
1346rm -f conftest*])
1347if test "$libc_cv_z_combreloc" = yes; then
1348 AC_DEFINE(HAVE_Z_COMBRELOC)
1349fi
1350AC_SUBST(libc_cv_z_combreloc)
2abf9ff1 1351
6bfea974
L
1352LIBC_LINKER_FEATURE([-z execstack], [-Wl,-z,execstack],
1353 [libc_cv_z_execstack=yes], [libc_cv_z_execstack=no])
a0da5fe1 1354AC_SUBST(libc_cv_z_execstack)
c9c60884 1355
9d7a3741
L
1356LIBC_LINKER_FEATURE([--no-dynamic-linker],
1357 [-Wl,--no-dynamic-linker],
1358 [libc_cv_no_dynamic_linker=yes],
1359 [libc_cv_no_dynamic_linker=no])
1360LIBC_CONFIG_VAR([have-no-dynamic-linker], [$libc_cv_no_dynamic_linker])
1361
1362AC_CACHE_CHECK(for -static-pie, libc_cv_static_pie, [dnl
1363LIBC_TRY_CC_OPTION([-static-pie],
1364 [libc_cv_static_pie=yes],
1365 [libc_cv_static_pie=no])
1366])
1367LIBC_CONFIG_VAR([have-static-pie], [$libc_cv_static_pie])
1368
a0da5fe1 1369AC_CACHE_CHECK(for -fpie, libc_cv_fpie, [dnl
4da0431d
JM
1370LIBC_TRY_CC_OPTION([-fpie], [libc_cv_fpie=yes], [libc_cv_fpie=no])
1371])
c9c60884 1372
a0da5fe1 1373AC_SUBST(libc_cv_fpie)
871b9158 1374
a0da5fe1
UD
1375AC_CACHE_CHECK(for --hash-style option,
1376 libc_cv_hashstyle, [dnl
1377cat > conftest.c <<EOF
871b9158
UD
1378int _start (void) { return 42; }
1379EOF
66a704c4 1380if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS $no_ssp
a0da5fe1
UD
1381 -fPIC -shared -o conftest.so conftest.c
1382 -Wl,--hash-style=both -nostdlib 1>&AS_MESSAGE_LOG_FD])
1383then
1384 libc_cv_hashstyle=yes
1385else
1386 libc_cv_hashstyle=no
1387fi
1388rm -f conftest*])
1389AC_SUBST(libc_cv_hashstyle)
1390
1391# The linker's default -shared behavior is good enough if it
1392# does these things that our custom linker scripts ensure that
1393# all allocated NOTE sections come first.
1394if test "$use_default_link" = default; then
1395 AC_CACHE_CHECK([for sufficient default -shared layout],
1396 libc_cv_use_default_link, [dnl
1397 libc_cv_use_default_link=no
1398 cat > conftest.s <<\EOF
fd5e21c7
RM
1399 .section .note.a,"a",%note
1400 .balign 4
1401 .long 4,4,9
1402 .string "GNU"
1403 .string "foo"
1404 .section .note.b,"a",%note
1405 .balign 4
1406 .long 4,4,9
1407 .string "GNU"
1408 .string "bar"
1409EOF
a0da5fe1 1410 if AC_TRY_COMMAND([dnl
fd5e21c7
RM
1411 ${CC-cc} $ASFLAGS -shared -o conftest.so conftest.s 1>&AS_MESSAGE_LOG_FD]) &&
1412 ac_try=`$READELF -S conftest.so | sed -n \
1413 ['${x;p;}
1414 s/^ *\[ *[1-9][0-9]*\] *\([^ ][^ ]*\) *\([^ ][^ ]*\) .*$/\2 \1/
1415 t a
1416 b
1417 : a
1418 H']`
a0da5fe1
UD
1419 then
1420 libc_seen_a=no libc_seen_b=no
1421 set -- $ac_try
1422 while test $# -ge 2 -a "$1" = NOTE; do
1423 case "$2" in
1424 .note.a) libc_seen_a=yes ;;
1425 .note.b) libc_seen_b=yes ;;
1426 esac
1427 shift 2
1428 done
1429 case "$libc_seen_a$libc_seen_b" in
1430 yesyes)
1431 libc_cv_use_default_link=yes
1432 ;;
1433 *)
1434 echo >&AS_MESSAGE_LOG_FD "\
fd5e21c7
RM
1435$libc_seen_a$libc_seen_b from:
1436$ac_try"
a0da5fe1
UD
1437 ;;
1438 esac
fd5e21c7 1439 fi
a0da5fe1
UD
1440 rm -f conftest*])
1441 use_default_link=$libc_cv_use_default_link
fd26970f 1442fi
49803108 1443
89569c8b
L
1444AC_CACHE_CHECK(for GLOB_DAT reloc,
1445 libc_cv_has_glob_dat, [dnl
1446cat > conftest.c <<EOF
1447extern int mumble;
1448int foo (void) { return mumble; }
1449EOF
1450if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1451 -fPIC -shared -o conftest.so conftest.c
66a704c4 1452 -nostdlib -nostartfiles $no_ssp
89569c8b
L
1453 1>&AS_MESSAGE_LOG_FD])
1454then
1455dnl look for GLOB_DAT relocation.
1456 if $READELF -rW conftest.so | grep '_GLOB_DAT' > /dev/null; then
1457 libc_cv_has_glob_dat=yes
1458 else
1459 libc_cv_has_glob_dat=no
1460 fi
1461else
1462 libc_cv_has_glob_dat=no
1463fi
1464rm -f conftest*])
1465AC_SUBST(libc_cv_has_glob_dat)
1466
5c550700
RM
1467AC_CACHE_CHECK(linker output format, libc_cv_output_format, [dnl
1468if libc_cv_output_format=`
66a704c4 1469${CC-cc} -nostartfiles -nostdlib $no_ssp -Wl,--print-output-format 2>&AS_MESSAGE_LOG_FD`
5c550700
RM
1470then
1471 :
1472else
1473 libc_cv_output_format=
1474fi
1475test -n "$libc_cv_output_format" || libc_cv_output_format=unknown])
1476AC_SUBST(libc_cv_output_format)
1477
22dca1ea 1478AC_CACHE_CHECK(for -fno-toplevel-reorder -fno-section-anchors, libc_cv_fno_toplevel_reorder, [dnl
49803108
AJ
1479cat > conftest.c <<EOF
1480int foo;
1481EOF
22dca1ea 1482if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -fno-toplevel-reorder -fno-section-anchors
49803108
AJ
1483 conftest.c 1>&AS_MESSAGE_LOG_FD])
1484then
18e2ac6d 1485 libc_cv_fno_toplevel_reorder=yes
49803108 1486else
18e2ac6d 1487 libc_cv_fno_toplevel_reorder=no
49803108
AJ
1488fi
1489rm -f conftest*])
18e2ac6d 1490if test $libc_cv_fno_toplevel_reorder = yes; then
22dca1ea 1491 fno_unit_at_a_time="-fno-toplevel-reorder -fno-section-anchors"
18e2ac6d 1492else
49803108
AJ
1493 fno_unit_at_a_time=-fno-unit-at-a-time
1494fi
1495AC_SUBST(fno_unit_at_a_time)
fd26970f 1496
61655555
L
1497AC_CACHE_CHECK([for -mtls-dialect=gnu2], libc_cv_mtls_dialect_gnu2,
1498[dnl
1499cat > conftest.c <<EOF
1500__thread int i;
1501void foo (void)
1502{
1503 i = 10;
1504}
1505EOF
1506if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -fPIC -mtls-dialect=gnu2
1507 conftest.c 1>&AS_MESSAGE_LOG_FD])
1508then
1509 libc_cv_mtls_dialect_gnu2=yes
1510else
1511 libc_cv_mtls_dialect_gnu2=no
1512fi
1513rm -f conftest*])
1514AC_SUBST(libc_cv_mtls_dialect_gnu2)
1515LIBC_CONFIG_VAR([have-mtls-dialect-gnu2], [$libc_cv_mtls_dialect_gnu2])
1516
a0da5fe1
UD
1517AC_CACHE_CHECK(whether cc puts quotes around section names,
1518 libc_cv_have_section_quotes,
1519 [cat > conftest.c <<EOF
1520 static const int foo
1521 __attribute__ ((section ("bar"))) = 1;
e26dd47f 1522EOF
a0da5fe1
UD
1523 if ${CC-cc} -S conftest.c -o conftest.s; then
1524 if grep '\.section.*"bar"' conftest.s >/dev/null; then
1525 libc_cv_have_section_quotes=yes
e26dd47f 1526 else
a0da5fe1 1527 libc_cv_have_section_quotes=no
e26dd47f 1528 fi
a0da5fe1
UD
1529 else
1530 libc_cv_have_section_quotes=unknown
1531 fi
1532 rm -f conftest.{c,s}
1533 ])
1534if test $libc_cv_have_section_quotes = yes; then
1535 AC_DEFINE(HAVE_SECTION_QUOTES)
9a97d1f7
UD
1536fi
1537
d555194c
UD
1538AC_CACHE_CHECK(for __builtin_memset, libc_cv_gcc_builtin_memset, [dnl
1539cat > conftest.c <<\EOF
1540void zero (void *x)
1541{
a52d1562 1542 __builtin_memset (x, 0, 1000);
d555194c
UD
1543}
1544EOF
1545dnl
e37fc4aa 1546if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | grep -F "memset" > /dev/null]);
d555194c
UD
1547then
1548 libc_cv_gcc_builtin_memset=no
1549else
1550 libc_cv_gcc_builtin_memset=yes
1551fi
1552rm -f conftest* ])
1553if test "$libc_cv_gcc_builtin_memset" = yes ; then
1554 AC_DEFINE(HAVE_BUILTIN_MEMSET)
1555fi
1556
85dd1003
UD
1557AC_CACHE_CHECK(for redirection of built-in functions, libc_cv_gcc_builtin_redirection, [dnl
1558cat > conftest.c <<\EOF
1559extern char *strstr (const char *, const char *) __asm ("my_strstr");
1560char *foo (const char *a, const char *b)
1561{
1562 return __builtin_strstr (a, b);
1563}
1564EOF
1565dnl
e37fc4aa 1566if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | grep -F "my_strstr" > /dev/null]);
85dd1003
UD
1567then
1568 libc_cv_gcc_builtin_redirection=yes
1569else
1570 libc_cv_gcc_builtin_redirection=no
1571fi
1572rm -f conftest* ])
3ce1f295
UD
1573if test "$libc_cv_gcc_builtin_redirection" = no; then
1574 AC_MSG_ERROR([support for the symbol redirection needed])
85dd1003
UD
1575fi
1576
7998fa78
AS
1577dnl Determine how to disable generation of FMA instructions.
1578AC_CACHE_CHECK([for compiler option to disable generation of FMA instructions],
1579 libc_cv_cc_nofma, [dnl
1580libc_cv_cc_nofma=
1581for opt in -ffp-contract=off -mno-fused-madd; do
1582 LIBC_TRY_CC_OPTION([$opt], [libc_cv_cc_nofma=$opt; break])
1583done])
bef0b507 1584AC_SUBST(libc_cv_cc_nofma)
7998fa78 1585
2cf9ad57
RM
1586if test -n "$submachine"; then
1587 AC_CACHE_CHECK([for compiler option for CPU variant],
f7d82dc9 1588 libc_cv_cc_submachine, [dnl
2cf9ad57
RM
1589 libc_cv_cc_submachine=no
1590 for opt in "-march=$submachine" "-mcpu=$submachine"; do
40b601fb 1591 LIBC_TRY_CC_OPTION([$opt], [
2cf9ad57 1592 libc_cv_cc_submachine="$opt"
40b601fb 1593 break], [])
2cf9ad57
RM
1594 done])
1595 if test "x$libc_cv_cc_submachine" = xno; then
1596 AC_MSG_ERROR([${CC-cc} does not support $submachine])
1597 fi
1598fi
1599AC_SUBST(libc_cv_cc_submachine)
1600
85c2e611
AZ
1601AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \
1602__attribute__ ((__optimize__)), libc_cv_cc_loop_to_function, [dnl
1603cat > conftest.c <<EOF
1604void
1605__attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
1606foo (void) {}
1607EOF
1608libc_cv_cc_loop_to_function=no
1609if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c])
1610then
1611 libc_cv_cc_loop_to_function=yes
1612fi
1613rm -f conftest*])
1614if test $libc_cv_cc_loop_to_function = yes; then
1615 AC_DEFINE(HAVE_CC_INHIBIT_LOOP_TO_LIBCALL)
1616fi
1617AC_SUBST(libc_cv_cc_loop_to_function)
1618
c8f3e6db
UD
1619dnl Check whether we have the gd library available.
1620AC_MSG_CHECKING(for libgd)
6dab8688
UD
1621if test "$with_gd" != "no"; then
1622 old_CFLAGS="$CFLAGS"
1623 CFLAGS="$CFLAGS $libgd_include"
1624 old_LDFLAGS="$LDFLAGS"
1625 LDFLAGS="$LDFLAGS $libgd_ldflags"
1626 old_LIBS="$LIBS"
1627 LIBS="$LIBS -lgd -lpng -lz -lm"
1628 AC_TRY_LINK([#include <gd.h>], [gdImagePng (0, 0)], LIBGD=yes, LIBGD=no)
1629 CFLAGS="$old_CFLAGS"
1630 LDFLAGS="$old_LDFLAGS"
1631 LIBS="$old_LIBS"
1632else
1633 LIBGD=no
1634fi
c8f3e6db
UD
1635AC_MSG_RESULT($LIBGD)
1636AC_SUBST(LIBGD)
3d558f4e 1637
2fff3d93
UD
1638# SELinux detection
1639if test x$with_selinux = xno ; then
1640 have_selinux=no;
1641else
1642 # See if we have the SELinux library
1643 AC_CHECK_LIB(selinux, is_selinux_enabled,
1644 have_selinux=yes, have_selinux=no)
49155d51 1645 if test x$with_selinux = xyes ; then
2fff3d93 1646 if test x$have_selinux = xno ; then
0699f766 1647 AC_MSG_ERROR([SELinux explicitly required, but SELinux library not found])
2fff3d93
UD
1648 fi
1649 fi
1650fi
1651# Check if we're building with SELinux support.
1652if test "x$have_selinux" = xyes; then
943db9eb 1653 AC_DEFINE(HAVE_SELINUX, 1, [SELinux support])
ec23b9be
UD
1654
1655 # See if we have the libaudit library
943db9eb 1656 AC_CHECK_LIB(audit, audit_log_user_avc_message,
77e8bddf 1657 have_libaudit=yes, have_libaudit=no)
ec23b9be 1658 if test "x$have_libaudit" = xyes; then
943db9eb 1659 AC_DEFINE(HAVE_LIBAUDIT, 1, [SELinux libaudit support])
ec23b9be
UD
1660 fi
1661 AC_SUBST(have_libaudit)
1f063dca
UD
1662
1663 # See if we have the libcap library
1664 AC_CHECK_LIB(cap, cap_init, have_libcap=yes, have_libcap=no)
1665 if test "x$have_libcap" = xyes; then
1666 AC_DEFINE(HAVE_LIBCAP, 1, [SELinux libcap support])
1667 fi
1668 AC_SUBST(have_libcap)
2fff3d93
UD
1669fi
1670AC_SUBST(have_selinux)
1671
61653dfb
RM
1672CPPUNDEFS=
1673dnl Check for silly hacked compilers predefining _FORTIFY_SOURCE.
1674dnl Since we are building the implementations of the fortified functions here,
1675dnl having the macro defined interacts very badly.
1676AC_CACHE_CHECK([for _FORTIFY_SOURCE predefine], libc_cv_predef_fortify_source,
1677[AC_TRY_COMPILE([], [
1678#ifdef _FORTIFY_SOURCE
1679# error bogon
1680#endif],
1681 [libc_cv_predef_fortify_source=no],
1682 [libc_cv_predef_fortify_source=yes])])
1683if test $libc_cv_predef_fortify_source = yes; then
1684 CPPUNDEFS="${CPPUNDEFS:+$CPPUNDEFS }-U_FORTIFY_SOURCE"
1685fi
1686AC_SUBST(CPPUNDEFS)
1687
61b1ef6e
MF
1688# Some linkers on some architectures support __ehdr_start but with
1689# bugs. Make sure usage of it does not create relocations in the
1690# output (as the linker should resolve them all for us).
1691AC_CACHE_CHECK([whether the linker provides working __ehdr_start],
44c4e5d5
RM
1692 libc_cv_ehdr_start, [
1693old_CFLAGS="$CFLAGS"
1694old_LDFLAGS="$LDFLAGS"
1695old_LIBS="$LIBS"
1696CFLAGS="$CFLAGS -fPIC"
66a704c4 1697LDFLAGS="$LDFLAGS -nostdlib -nostartfiles -shared $no_ssp"
44c4e5d5
RM
1698LIBS=
1699AC_LINK_IFELSE([AC_LANG_SOURCE([
61b1ef6e
MF
1700typedef struct {
1701 char foo;
1702 long val;
1703} Ehdr;
1704extern const Ehdr __ehdr_start __attribute__ ((visibility ("hidden")));
1705long ehdr (void) { return __ehdr_start.val; }
44c4e5d5 1706])],
e37fc4aa 1707 [if $READELF -r conftest | grep -F __ehdr_start >/dev/null; then
61b1ef6e
MF
1708 libc_cv_ehdr_start=broken
1709 else
1710 libc_cv_ehdr_start=yes
1711 fi], [libc_cv_ehdr_start=no])
44c4e5d5
RM
1712CFLAGS="$old_CFLAGS"
1713LDFLAGS="$old_LDFLAGS"
1714LIBS="$old_LIBS"
1715])
61b1ef6e 1716if test "$libc_cv_ehdr_start" = yes; then
44c4e5d5 1717 AC_DEFINE([HAVE_EHDR_START])
61b1ef6e
MF
1718elif test "$libc_cv_ehdr_start" = broken; then
1719 AC_MSG_WARN([linker is broken -- you should upgrade])
9fe7e787
RM
1720fi
1721
1722AC_CACHE_CHECK(for __builtin_trap with no external dependencies,
1723 libc_cv_builtin_trap, [dnl
1724libc_cv_builtin_trap=no
1725AC_TRY_COMPILE([], [__builtin_trap ()], [
1726libc_undefs=`$NM -u conftest.o |
1727 LC_ALL=C $AWK '$1 == "U" { print $2 | "sort -u"; next } { exit(1) }' \
1728 2>&AS_MESSAGE_LOG_FD` || {
1729 AC_MSG_ERROR([confusing output from $NM -u])
1730}
1731echo >&AS_MESSAGE_LOG_FD "libc_undefs='$libc_undefs'"
1732if test -z "$libc_undefs"; then
1733 libc_cv_builtin_trap=yes
1734fi])])
1735if test $libc_cv_builtin_trap = yes; then
1736 AC_DEFINE([HAVE_BUILTIN_TRAP])
44c4e5d5
RM
1737fi
1738
99e1dc0a
FW
1739dnl C++ feature tests.
1740AC_LANG_PUSH([C++])
1741
1742AC_CACHE_CHECK([whether the C++ compiler supports thread_local],
1743 libc_cv_cxx_thread_local, [
1744old_CXXFLAGS="$CXXFLAGS"
1745CXXFLAGS="$CXXFLAGS -std=gnu++11"
1746AC_COMPILE_IFELSE([AC_LANG_SOURCE([
1747#include <thread>
1748
1749// Compiler support.
1750struct S
1751{
1752 S ();
1753 ~S ();
1754};
1755thread_local S s;
1756S * get () { return &s; }
1757
1758// libstdc++ support.
1759#ifndef _GLIBCXX_HAVE___CXA_THREAD_ATEXIT_IMPL
1760#error __cxa_thread_atexit_impl not supported
1761#endif
1762])],
1763 [libc_cv_cxx_thread_local=yes],
1764 [libc_cv_cxx_thread_local=no])
1765CXXFLAGS="$old_CXXFLAGS"
1766])
1767AC_SUBST(libc_cv_cxx_thread_local)
1768
1769AC_LANG_POP([C++])
1770dnl End of C++ feature tests.
1771
c224a18a
RM
1772### End of automated tests.
1773### Now run sysdeps configure fragments.
1774
cb343854 1775# They also can set these variables.
591e1ffb 1776use_ldconfig=no
cb343854 1777ldd_rewrite_script=no
77259608 1778libc_cv_sysconfdir=$sysconfdir
4248b1b1 1779libc_cv_localstatedir=$localstatedir
74bd2300 1780libc_cv_gcc_unwind_find_fde=no
e2fd3cbe 1781libc_cv_idn=no
cb343854 1782
28f540f4 1783# Iterate over all the sysdep directories we will use, running their
09055553 1784# configure fragments.
28f540f4 1785for dir in $sysnames; do
57ba7bb4
UD
1786 case $dir in
1787 /*) dest=$dir ;;
1788 *) dest=$srcdir/$dir ;;
1789 esac
1790 if test -r $dest/configure; then
d1149385 1791 AC_MSG_RESULT(running configure fragment for $dir)
57ba7bb4 1792 . $dest/configure
28f540f4 1793 fi
28f540f4
RM
1794done
1795
5695d46f
AS
1796if test x"$build_mathvec" = xnotset; then
1797 build_mathvec=no
1798fi
1799LIBC_CONFIG_VAR([build-mathvec], [$build_mathvec])
1800
7ffa9423
AZ
1801AC_SUBST(libc_extra_cflags)
1802AC_SUBST(libc_extra_cppflags)
1803
74bd2300
UD
1804if test x$libc_cv_gcc_unwind_find_fde = xyes; then
1805 AC_DEFINE(EXPORT_UNWIND_FIND_FDE)
1806fi
1807AC_SUBST(libc_cv_gcc_unwind_find_fde)
1808
6e6249d0
RM
1809# A sysdeps configure fragment can reset this if IFUNC is not actually
1810# usable even though the assembler knows how to generate the symbol type.
1811if test x"$libc_cv_ld_gnu_indirect_function" = xyes; then
1812 AC_DEFINE(HAVE_IFUNC)
1813fi
1814
022dfdce
SL
1815if test x"$libc_cv_gcc_indirect_function" = xyes; then
1816 AC_DEFINE(HAVE_GCC_IFUNC)
1817fi
1818
3cc3ef96
RM
1819# This is far from the AC_ARG_ENABLE that sets it so that a sysdeps
1820# configure fragment can override the value to prevent this AC_DEFINE.
1821AC_SUBST(use_nscd)
1822if test "x$use_nscd" != xno; then
1823 AC_DEFINE([USE_NSCD])
1824fi
c53d909c
RM
1825if test "x$build_nscd" = xdefault; then
1826 build_nscd=$use_nscd
1827fi
3cc3ef96 1828
84384f5b 1829AC_SUBST(libc_cv_slibdir)
aaa8cb4b 1830AC_SUBST(libc_cv_rtlddir)
90fe682d 1831AC_SUBST(libc_cv_complocaledir)
77259608 1832AC_SUBST(libc_cv_sysconfdir)
4248b1b1 1833AC_SUBST(libc_cv_localstatedir)
1ef32c3d
UD
1834AC_SUBST(libc_cv_rootsbindir)
1835
f57f8055
RM
1836if test x$use_ldconfig = xyes; then
1837 AC_DEFINE(USE_LDCONFIG)
1838fi
591e1ffb 1839AC_SUBST(use_ldconfig)
cb343854 1840AC_SUBST(ldd_rewrite_script)
84384f5b 1841
650425ce 1842AC_SUBST(static)
ff3d7ed3 1843AC_SUBST(shared)
a334319f 1844
ff886b82
UD
1845AC_CACHE_CHECK([whether -fPIC is default], libc_cv_pic_default,
1846[libc_cv_pic_default=yes
cc3fa755 1847cat > conftest.c <<EOF
9756dfe1 1848#if defined __PIC__ || defined __pic__ || defined PIC || defined pic
cc3fa755
UD
1849# error PIC is default.
1850#endif
1851EOF
0b4ee387 1852if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
ff886b82 1853 libc_cv_pic_default=no
cc3fa755
UD
1854fi
1855rm -f conftest.*])
ff886b82 1856AC_SUBST(libc_cv_pic_default)
cc3fa755 1857
00c714df
L
1858AC_CACHE_CHECK([whether -fPIE is default], libc_cv_cc_pie_default,
1859[libc_cv_cc_pie_default=yes
cc08749b
L
1860cat > conftest.c <<EOF
1861#if defined __PIE__ || defined __pie__ || defined PIE || defined pie
1862# error PIE is default.
1863#endif
1864EOF
1865if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
00c714df 1866 libc_cv_cc_pie_default=no
cc08749b
L
1867fi
1868rm -f conftest.*])
00c714df
L
1869libc_cv_pie_default=$libc_cv_cc_pie_default
1870AC_SUBST(libc_cv_cc_pie_default)
cc08749b
L
1871AC_SUBST(libc_cv_pie_default)
1872
abcb584d
L
1873# Set the `multidir' variable by grabbing the variable from the compiler.
1874# We do it once and save the result in a generated makefile.
1875libc_cv_multidir=`${CC-cc} $CFLAGS $CPPFLAGS -print-multi-directory`
1876AC_SUBST(libc_cv_multidir)
1877
9d7a3741
L
1878if test "$static_pie" = yes; then
1879 # The linker must support --no-dynamic-linker.
1880 if test "$libc_cv_no_dynamic_linker" != yes; then
1881 AC_MSG_ERROR([linker support for --no-dynamic-linker needed])
1882 fi
1883 # Default to PIE.
1884 libc_cv_pie_default=yes
1885 AC_DEFINE(ENABLE_STATIC_PIE)
1886fi
1887LIBC_CONFIG_VAR([enable-static-pie], [$static_pie])
1888
ff3d7ed3 1889AC_SUBST(profile)
5107cf1d 1890AC_SUBST(static_nss)
ff3d7ed3 1891
edf5b2d7
UD
1892AC_SUBST(DEFINES)
1893
cb8a6dbd 1894dnl See sysdeps/mach/configure.ac for this variable.
61c83c3f
RM
1895AC_SUBST(mach_interface_list)
1896
ee74a442
UD
1897VERSION=`sed -n -e 's/^#define VERSION "\([^"]*\)"/\1/p' < $srcdir/version.h`
1898RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h`
df4ef2ab 1899AC_SUBST(VERSION)
ee74a442 1900AC_SUBST(RELEASE)
df4ef2ab 1901
728e272a 1902AC_CONFIG_FILES([config.make Makefile])
c118d634 1903AC_CONFIG_COMMANDS([default],[[
737547be
UD
1904case $CONFIG_FILES in *config.make*)
1905echo "$config_vars" >> config.make;;
1906esac
c118d634
RM
1907test -d bits || mkdir bits]],[[config_vars='$config_vars']])
1908AC_OUTPUT