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