1 dnl Process this file with autoconf to produce a configure script.
2 dnl Note we do not use AC_PREREQ here! See aclocal.m4 for what we use instead.
3 AC_INIT([GNU C Library], [(see version.h)], [http://sourceware.org/bugzilla/], [glibc])
4 AC_CONFIG_SRCDIR([include/features.h])
5 AC_CONFIG_HEADERS([config.h])
6 AC_CONFIG_AUX_DIR([scripts])
8 ACX_PKGVERSION([GNU libc])
9 ACX_BUGURL([http://www.gnu.org/software/libc/bugs.html])
10 AC_DEFINE_UNQUOTED([PKGVERSION], ["$PKGVERSION"],
11 [Package description])
12 AC_DEFINE_UNQUOTED([REPORT_BUGS_TO], ["$REPORT_BUGS_TO"],
13 [Bug reporting address])
15 # Glibc should not depend on any header files
16 AC_DEFUN([_AC_INCLUDES_DEFAULT_REQUIREMENTS],
17 [m4_divert_text([DEFAULTS],
18 [ac_includes_default='/* none */'])])
20 # We require GCC, and by default use its preprocessor. Override AC_PROG_CPP
21 # here to work around the Autoconf issue discussed in
22 # <http://sourceware.org/ml/libc-alpha/2013-01/msg00721.html>.
23 AC_DEFUN([AC_PROG_CPP],
24 [AC_REQUIRE([AC_PROG_CC])dnl
25 AC_ARG_VAR([CPP], [C preprocessor])dnl
26 _AC_ARG_VAR_CPPFLAGS()dnl
27 # On Suns, sometimes $CPP names a directory.
28 if test -n "$CPP" && test -d "$CPP"; then
31 if test -z "$CPP"; then
37 # We require GCC. Override _AC_PROG_CC_C89 here to work around the Autoconf
39 # <http://sourceware.org/ml/libc-alpha/2013-01/msg00757.html>.
40 AC_DEFUN([_AC_PROG_CC_C89], [[$1]])
42 dnl This is here so we can set $subdirs directly based on configure fragments.
48 if test $host != $build; then
49 AC_CHECK_PROGS(BUILD_CC, gcc cc)
51 AC_SUBST(cross_compiling)
53 AC_CHECK_TOOL(READELF, readelf, false)
55 # We need the C++ compiler only for testing.
57 # It's useless to us if it can't link programs (e.g. missing -lstdc++).
58 AC_CACHE_CHECK([whether $CXX can link programs], libc_cv_cxx_link_ok, [dnl
60 AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
61 [libc_cv_cxx_link_ok=yes],
62 [libc_cv_cxx_link_ok=no])
64 AS_IF([test $libc_cv_cxx_link_ok != yes], [CXX=])
66 if test "`cd $srcdir; /bin/pwd`" = "`/bin/pwd`"; then
67 AC_MSG_ERROR([you must configure in a separate build directory])
70 # This will get text that should go into config.make.
73 # Check for a --with-gd argument and set libgd-LDFLAGS in config.make.
75 AC_HELP_STRING([--with-gd=DIR],
76 [find libgd include dir and library with prefix DIR]),
80 *) libgd_include="-I$withval/include"
81 libgd_ldflags="-L$withval/lib" ;;
84 AC_ARG_WITH([gd-include],
85 AC_HELP_STRING([--with-gd-include=DIR],
86 [find libgd include files in DIR]),
88 case "$with_gd_include" in
90 *) libgd_include="-I$withval" ;;
94 AC_HELP_STRING([--with-gd-lib=DIR],
95 [find libgd library files in DIR]),
97 case "$with_gd_lib" in
99 *) libgd_ldflags="-L$withval" ;;
103 if test -n "$libgd_include"; then
104 config_vars="$config_vars
105 CFLAGS-memusagestat.c = $libgd_include"
107 if test -n "$libgd_ldflags"; then
108 config_vars="$config_vars
109 libgd-LDFLAGS = $libgd_ldflags"
112 dnl Arguments to specify presence of other packages/features.
114 AC_HELP_STRING([--with-fp],
115 [if using floating-point hardware @<:@default=yes@:>@]),
119 AC_ARG_WITH([binutils],
120 AC_HELP_STRING([--with-binutils=PATH],
121 [specify location of binutils (as and ld)]),
122 [path_binutils=$withval],
124 AC_ARG_WITH([selinux],
125 AC_HELP_STRING([--with-selinux],
126 [if building with SELinux support]),
127 [with_selinux=$withval],
130 AC_ARG_WITH([headers],
131 AC_HELP_STRING([--with-headers=PATH],
132 [location of system headers to use
133 (for example /usr/src/linux/include)
134 @<:@default=compiler default@:>@]),
135 [sysheaders=$withval],
139 AC_SUBST(use_default_link)
140 AC_ARG_WITH([default-link],
141 AC_HELP_STRING([--with-default-link],
142 [do not use explicit linker scripts]),
143 [use_default_link=$withval],
144 [use_default_link=default])
146 AC_ARG_ENABLE([sanity-checks],
147 AC_HELP_STRING([--disable-sanity-checks],
148 [really do not use threads (should not be used except in special situations) @<:@default=yes@:>@]),
149 [enable_sanity=$enableval],
152 AC_ARG_ENABLE([shared],
153 AC_HELP_STRING([--enable-shared],
154 [build shared library @<:@default=yes if GNU ld@:>@]),
157 AC_ARG_ENABLE([profile],
158 AC_HELP_STRING([--enable-profile],
159 [build profiled library @<:@default=no@:>@]),
160 [profile=$enableval],
163 AC_ARG_ENABLE([hardcoded-path-in-tests],
164 AC_HELP_STRING([--enable-hardcoded-path-in-tests],
165 [hardcode newly built glibc path in tests @<:@default=no@:>@]),
166 [hardcoded_path_in_tests=$enableval],
167 [hardcoded_path_in_tests=no])
168 AC_SUBST(hardcoded_path_in_tests)
170 AC_ARG_ENABLE([stackguard-randomization],
171 AC_HELP_STRING([--enable-stackguard-randomization],
172 [initialize __stack_chk_guard canary with a random number at program start]),
173 [enable_stackguard_randomize=$enableval],
174 [enable_stackguard_randomize=no])
175 if test "$enable_stackguard_randomize" = yes; then
176 AC_DEFINE(ENABLE_STACKGUARD_RANDOMIZE)
179 AC_ARG_ENABLE([lock-elision],
180 AC_HELP_STRING([--enable-lock-elision[=yes/no]],
181 [Enable lock elision for pthread mutexes by default]),
182 [enable_lock_elision=$enableval],
183 [enable_lock_elision=no])
184 AC_SUBST(enable_lock_elision)
185 if test "$enable_lock_elision" = yes ; then
186 AC_DEFINE(ENABLE_LOCK_ELISION)
189 dnl Generic infrastructure for drop-in additions to libc.
190 AC_ARG_ENABLE([add-ons],
191 AC_HELP_STRING([--enable-add-ons@<:@=DIRS...@:>@],
192 [configure and build add-ons in DIR1,DIR2,...
193 search for add-ons if no parameter given]),
194 , [enable_add_ons=yes])
196 AC_ARG_ENABLE([hidden-plt],
197 AC_HELP_STRING([--disable-hidden-plt],
198 [do not hide internal function calls to avoid PLT]),
201 if test "x$hidden" = xno; then
205 AC_ARG_ENABLE([bind-now],
206 AC_HELP_STRING([--enable-bind-now],
207 [disable lazy relocations in DSOs]),
208 [bindnow=$enableval],
212 dnl On some platforms we cannot use dynamic loading. We must provide
213 dnl static NSS modules.
214 AC_ARG_ENABLE([static-nss],
215 AC_HELP_STRING([--enable-static-nss],
216 [build static NSS modules @<:@default=no@:>@]),
217 [static_nss=$enableval],
219 dnl Enable static NSS also if we build no shared objects.
220 if test x"$static_nss" = xyes || test x"$shared" = xno; then
222 AC_DEFINE(DO_STATIC_NSS)
225 AC_ARG_ENABLE([force-install],
226 AC_HELP_STRING([--disable-force-install],
227 [don't force installation of files from this package, even if they are older than the installed files]),
228 [force_install=$enableval],
230 AC_SUBST(force_install)
232 AC_ARG_ENABLE([maintainer-mode],
233 AC_HELP_STRING([--enable-maintainer-mode],
234 [enable make rules and dependencies not useful (and sometimes confusing) to the casual installer]),
235 [maintainer=$enableval],
238 dnl On some platforms we allow dropping compatibility with all kernel
240 AC_ARG_ENABLE([kernel],
241 AC_HELP_STRING([--enable-kernel=VERSION],
242 [compile for compatibility with kernel not older than VERSION]),
243 [minimum_kernel=$enableval],
245 dnl Prevent unreasonable values.
246 if test "$minimum_kernel" = yes || test "$minimum_kernel" = no; then
247 # Better nothing than this.
250 if test "$minimum_kernel" = current; then
251 minimum_kernel=`uname -r 2>/dev/null` || minimum_kernel=
255 dnl For the development we sometimes want gcc to issue even more warnings.
256 dnl This is not the default since many of the extra warnings are not
258 AC_ARG_ENABLE([all-warnings],
259 AC_HELP_STRING([--enable-all-warnings],
260 [enable all useful warnings gcc can issue]),
261 [all_warnings=$enableval],
263 AC_SUBST(all_warnings)
265 AC_ARG_ENABLE([werror],
266 AC_HELP_STRING([--disable-werror],
267 [do not build with -Werror]),
268 [enable_werror=$enableval],
270 AC_SUBST(enable_werror)
272 AC_ARG_ENABLE([multi-arch],
273 AC_HELP_STRING([--enable-multi-arch],
274 [enable single DSO with optimizations for multiple architectures]),
275 [multi_arch=$enableval],
276 [multi_arch=default])
278 AC_ARG_ENABLE([nss-crypt],
279 AC_HELP_STRING([--enable-nss-crypt],
280 [enable libcrypt to use nss]),
281 [nss_crypt=$enableval],
283 if test x$nss_crypt = xyes; then
284 nss_includes=-I$(nss-config --includedir 2>/dev/null)
285 if test $? -ne 0; then
286 AC_MSG_ERROR([cannot find include directory with nss-config])
289 CFLAGS="$CFLAGS $nss_includes"
290 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
292 #include <nsslowhash.h>
293 void f (void) { NSSLOW_Init (); }])],
294 libc_cv_nss_crypt=yes,
296 cannot find NSS headers with lowlevel hash function interfaces]))
298 LIBS="$LIBS -lfreebl3"
299 AC_LINK_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
301 #include <nsslowhash.h>],
303 libc_cv_nss_crypt=yes,
305 cannot link program using lowlevel NSS hash functions]))
311 AC_SUBST(libc_cv_nss_crypt)
314 AC_ARG_ENABLE([obsolete-rpc],
315 AC_HELP_STRING([--enable-obsolete-rpc],
316 [build and install the obsolete RPC code for link-time usage]),
317 [link_obsolete_rpc=$enableval],
318 [link_obsolete_rpc=no])
319 AC_SUBST(link_obsolete_rpc)
321 if test "$link_obsolete_rpc" = yes; then
322 AC_DEFINE(LINK_OBSOLETE_RPC)
325 AC_ARG_ENABLE([systemtap],
326 [AS_HELP_STRING([--enable-systemtap],
327 [enable systemtap static probe points @<:@default=no@:>@])],
328 [systemtap=$enableval],
330 if test "x$systemtap" != xno; then
331 AC_CACHE_CHECK([for systemtap static probe support], libc_cv_sdt, [dnl
333 CFLAGS="-std=gnu99 $CFLAGS"
334 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <sys/sdt.h>
335 void foo (int i, void *p)
337 asm ("" STAP_PROBE_ASM (foo, bar, STAP_PROBE_ASM_TEMPLATE (2)) ""
338 :: STAP_PROBE_ASM_OPERANDS (2, i, p));
339 }]])], [libc_cv_sdt=yes], [libc_cv_sdt=no])
340 CFLAGS="$old_CFLAGS"])
341 if test $libc_cv_sdt = yes; then
342 AC_DEFINE([USE_STAP_PROBE])
343 elif test "x$systemtap" != xauto; then
344 AC_MSG_FAILURE([systemtap support needs sys/sdt.h with asm support])
348 AC_ARG_ENABLE([build-nscd],
349 [AS_HELP_STRING([--disable-build-nscd],
350 [disable building and installing the nscd daemon])],
351 [build_nscd=$enableval],
352 [build_nscd=default])
355 # Note the use of $use_nscd is near the bottom of the file.
356 AC_ARG_ENABLE([nscd],
357 [AS_HELP_STRING([--disable-nscd],
358 [library functions will not contact the nscd daemon])],
359 [use_nscd=$enableval],
362 AC_ARG_ENABLE([pt_chown],
363 [AS_HELP_STRING([--enable-pt_chown],
364 [Enable building and installing pt_chown])],
365 [build_pt_chown=$enableval],
367 AC_SUBST(build_pt_chown)
368 if test "$build_pt_chown" = yes; then
369 AC_DEFINE(HAVE_PT_CHOWN)
372 # The abi-tags file uses a fairly simplistic model for name recognition that
373 # can't distinguish i486-pc-linux-gnu fully from i486-pc-gnu. So we mutate a
374 # $host_os of `gnu*' here to be `gnu-gnu*' just so that it can tell.
375 # This doesn't get used much beyond that, so it's fairly safe.
380 host_os=`echo $host_os | sed -e 's/gnu/gnu-gnu/'`
384 AC_ARG_ENABLE([mathvec],
385 [AS_HELP_STRING([--enable-mathvec],
386 [Enable building and installing mathvec @<:@default depends on architecture@:>@])],
387 [build_mathvec=$enableval],
388 [build_mathvec=notset])
390 # We keep the original values in `$config_*' and never modify them, so we
391 # can write them unchanged into config.make. Everything else uses
392 # $machine, $vendor, and $os, and changes them whenever convenient.
393 config_machine=$host_cpu config_vendor=$host_vendor config_os=$host_os
395 # Don't allow vendor == "unknown"
396 test "$config_vendor" = unknown && config_vendor=
397 config_os="`echo $config_os | sed 's/^unknown-//'`"
399 # Some configurations imply other options.
402 # The configure fragment of an add-on port can modify these to supplement
403 # or override the table in the case statement below. No fragment should
404 # ever change the config_* variables, however.
405 machine=$config_machine
406 vendor=$config_vendor
412 AS_HELP_STRING([--with-cpu=CPU], [select code for CPU variant]),
415 yes|'') AC_MSG_ERROR([--with-cpu requires an argument]) ;;
417 *) submachine="$withval" ;;
421 # An preconfigure script can set this when it wants to disable the sanity
425 dnl Let sysdeps/*/preconfigure act here, like they can in add-ons.
426 LIBC_PRECONFIGURE([$srcdir], [for sysdeps])
428 dnl Having this here, though empty, makes sure that if add-ons' fragments
429 dnl do AC_CONFIG_SUBDIRS([some-dir]), which just sets $subdirs, then
430 dnl our AC_OUTPUT will actually use it.
433 case "$enable_add_ons" in
436 add_ons=`cd $srcdir && ls -d 2> /dev/null */configure */sysdeps |
437 sed 's@/[[^/]]*$@@' | sort | uniq`
438 add_ons_automatic=yes
440 *) add_ons=`echo "$enable_add_ons" | sed 's/,/ /g'`
441 add_ons_automatic=no ;;
447 if test x"$add_ons" != x; then
448 for f in $add_ons; do
453 *** It seems that you're using an old \`crypt' add-on. crypt is now
454 *** part of glibc and using the old add-on will not work with this
455 *** release. Start again with fresh sources and without the old
456 *** \`crypt' add-on.])
460 *** It seems that you're using an old \`localedata' add-on. localedata
461 *** is now part of glibc and using the old add-on will not work with
462 *** this release. Start again with fresh sources and without the old
463 *** \`localedata' add-on.])
468 # Now source each add-on's configure fragment.
469 # The fragments can use $srcdir/$libc_add_on to find themselves,
470 # and test $add_ons_automatic to see if they were explicitly requested.
471 # A fragment can clear (or even change) $libc_add_on to affect
472 # whether it goes into the list to be actually used in the build.
474 for libc_add_on in $add_ons; do
475 # Test whether such a directory really exists.
476 # It can be absolute, or relative to $srcdir, or relative to the build dir.
477 case "$libc_add_on" in
479 libc_add_on_srcdir=$libc_add_on
482 test -d "$srcdir/$libc_add_on" || {
483 if test -d "$libc_add_on"; then
484 libc_add_on="`pwd`/$libc_add_on"
486 AC_MSG_ERROR(add-on directory \"$libc_add_on\" does not exist)
489 libc_add_on_srcdir=$srcdir/$libc_add_on
493 libc_add_on_frag=$libc_add_on_srcdir/configure
494 libc_add_on_canonical=
495 libc_add_on_config_subdirs=
496 if test -r "$libc_add_on_frag"; then
497 AC_MSG_NOTICE(running configure fragment for add-on $libc_add_on)
498 libc_add_on_canonical=unknown
500 . "$libc_add_on_frag"
501 test -z "$libc_add_on" || {
502 configured_add_ons="$configured_add_ons $libc_add_on"
503 if test "x$libc_add_on_canonical" = xunknown; then
504 AC_MSG_ERROR(fragment must set \$libc_add_on_canonical)
506 for d in $libc_add_on_subdirs; do
507 case "$libc_add_on" in
508 /*) subdir_srcdir="$libc_add_on" ;;
509 *) subdir_srcdir="\$(..)$libc_add_on" ;;
513 d="${libc_add_on_canonical:-$libc_add_on}"
519 subdir_srcdir="$subdir_srcdir/$d"
522 d=`echo "$d" | sed 's@/*$@@;s@^.*/@@'`
523 add_on_subdirs="$add_on_subdirs $d"
524 test "$subdir_srcdir" = "\$(..)$d" || config_vars="$config_vars
525 $d-srcdir = $subdir_srcdir"
527 for d in $libc_add_on_config_subdirs; do
530 fragment uses absolute path in \$libc_add_on_config_subdirs) ;;
532 if test ! -d "$libc_add_on_srcdir/$d"; then
533 AC_MSG_ERROR(fragment wants to configure missing directory $d)
535 case "$libc_add_on" in
537 relative path required for add-on using \$libc_add_on_config_subdirs) ;;
539 subdirs="$subdirs $libc_add_on/$d"
543 if test -n "$libc_add_on"; then
544 LIBC_PRECONFIGURE([$libc_add_on_srcdir], [add-on $libc_add_on for])
545 use_add_ons="$use_add_ons $libc_add_on"
546 add_ons_pfx="$add_ons_pfx $libc_add_on/"
547 test -z "$libc_add_on_canonical" ||
548 add_ons_sfx="$add_ons_sfx /$libc_add_on_canonical"
551 # Use echo to strip excess whitespace.
552 add_ons="`echo $use_add_ons`"
555 AC_SUBST(add_on_subdirs)
559 ### I put this here to prevent those annoying emails from people who cannot
560 ### read and try to compile glibc on unsupported platforms. --drepper
562 ### By using the undocumented --enable-hacker-mode option for configure
563 ### one can skip this test to make the configuration not fail for unsupported
566 if test -z "$enable_hacker_mode" && test x"$libc_config_ok" != xyes; then
567 case "$machine-$host_os" in
571 echo "*** The GNU C library is currently not available for this platform."
572 echo "*** So far nobody cared to port it and if there is no volunteer it"
573 echo "*** might never happen. So, if you have interest to see glibc on"
574 echo "*** this platform visit"
575 echo "*** http://www.gnu.org/software/libc/porting.html"
576 echo "*** and join the group of porters"
582 # Set base_machine if not set by a preconfigure fragment.
583 test -n "$base_machine" || base_machine=$machine
584 AC_SUBST(base_machine)
586 # For the multi-arch option we need support in the assembler & linker.
587 AC_CACHE_CHECK([for assembler and linker STT_GNU_IFUNC support],
588 libc_cv_ld_gnu_indirect_function, [dnl
589 cat > conftest.S <<EOF
590 .type foo,%gnu_indirect_function
603 libc_cv_ld_gnu_indirect_function=no
604 if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
605 -nostartfiles -nostdlib \
606 -o conftest conftest.S 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
607 # Do a link to see if the backend supports IFUNC relocs.
608 $READELF -r conftest 1>&AS_MESSAGE_LOG_FD
609 LC_ALL=C $READELF -r conftest | grep 'no relocations' >/dev/null || {
610 libc_cv_ld_gnu_indirect_function=yes
615 AC_MSG_CHECKING(whether .text pseudo-op must be used)
616 AC_CACHE_VAL(libc_cv_dot_text, [dnl
617 cat > conftest.s <<EOF
621 if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
622 libc_cv_dot_text=.text
625 if test -z "$libc_cv_dot_text"; then
631 if test x"$libc_cv_ld_gnu_indirect_function" != xyes; then
632 if test x"$multi_arch" = xyes; then
633 AC_MSG_ERROR([--enable-multi-arch support requires assembler and linker support])
639 if test x"$multi_arch" != xno; then
640 multi_arch_d=/multiarch
643 # Compute the list of sysdep directories for this configuration.
644 # This can take a while to compute.
645 sysdep_dir=$srcdir/sysdeps
646 AC_MSG_CHECKING(sysdep dirs)
647 dnl We need to use [ and ] for other purposes for a while now.
649 # Make sco3.2v4 become sco3.2.4 and sunos4.1.1_U1 become sunos4.1.1.U1.
650 os="`echo $os | sed 's/\([0-9A-Z]\)[v_]\([0-9A-Z]\)/\1.\2/g'`"
652 test "x$base_os" != x || case "$os" in
659 # For sunos4.1.1, try sunos4.1.1, then sunos4.1, then sunos4, then sunos.
662 while o=`echo $tail | sed 's/\.[^.]*$//'`; test $o != $tail; do
666 o=`echo $tail | sed 's/[0-9]*$//'`
667 if test $o != $tail; then
670 # For linux-gnu, try linux-gnu, then linux.
671 o=`echo $tail | sed 's/-.*$//'`
672 if test $o != $tail; then
676 # For unix/sysv/sysv4, try unix/sysv/sysv4, then unix/sysv, then unix.
679 while b=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$b"; do
685 # For sparc/sparc32, try sparc/sparc32 and then sparc.
687 tail=$machine${submachine:+/$submachine}
688 while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
690 # Prepend the machine's FPU directory unless --without-fp.
691 if test "$with_fp" = yes; then
696 # For each machine term, try it with and then without /multiarch.
697 for try_fpu in $maybe_fpu ''; do
698 for try_multi in $multi_arch_d ''; do
699 mach="$mach /$1$try_fpu$try_multi"
705 dnl We are done with glob and regexp uses of [ and ]; return to autoconf.
708 # Find what sysdep directories exist.
711 for b in $base ''; do
712 for m0 in $mach ''; do
713 for v in /$vendor ''; do
714 test "$v" = / && continue
715 for o in /$ostry ''; do
716 test "$o" = / && continue
717 for m in $mach ''; do
718 for d in $add_ons_pfx ''; do
719 for a in $add_ons_sfx ''; do
720 try_suffix="$m0$b$v$o$m"
721 if test -n "$try_suffix"; then
722 try_srcdir="${srcdir}/"
726 try="${d}sysdeps$try_suffix$a"
727 test -n "$enable_debug_configure" &&
728 echo "$0 [DEBUG]: try $try" >&2
729 if test -d "$try_srcdir$try"; then
730 sysnames="$sysnames $try"
731 { test -n "$o" || test -n "$b"; } && os_used=t
732 { test -n "$m" || test -n "$m0"; } && machine_used=t
734 x*/$submachine) submachine_used=t ;;
736 if test -n "$d"; then
737 case "$sysnames_add_ons" in
739 *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
752 # If the assembler supports gnu_indirect_function symbol type and the
753 # architecture supports multi-arch, we enable multi-arch by default.
754 case $sysnames_add_ons$sysnames in
758 test x"$multi_arch" = xdefault && multi_arch=no
761 if test x"$multi_arch" != xno; then
762 AC_DEFINE(USE_MULTIARCH)
766 if test -z "$os_used" && test "$os" != none; then
767 AC_MSG_ERROR(Operating system $os is not supported.)
769 if test -z "$machine_used" && test "$machine" != none; then
770 AC_MSG_ERROR(The $machine is not supported.)
772 if test -z "$submachine_used" && test -n "$submachine"; then
773 AC_MSG_ERROR(The $submachine subspecies of $host_cpu is not supported.)
777 # We have now validated the configuration.
779 # Expand the list of system names into a full list of directories
780 # from each element's parent name and Implies file (if present).
783 while test $# -gt 0; do
787 case " $names " in *" $name "*)
788 # Already in the list.
792 # Report each name as we discover it, so there is no long pause in output.
793 echo $ECHO_N "$name $ECHO_C" >&AS_MESSAGE_FD
795 name_base=`echo $name | sed -e 's@\(.*sysdeps\)/.*@\1@'`
799 *) xsrcdir=$srcdir/ ;;
801 test -n "$enable_debug_configure" &&
802 echo "[DEBUG]: name/Implies $xsrcdir$name/Implies" >&2
804 for implies_file in Implies Implies-before Implies-after; do
805 implies_type=`echo $implies_file | sed s/-/_/`
806 eval ${implies_type}=
807 if test -f $xsrcdir$name/$implies_file; then
808 # Collect more names from the `Implies' file (removing comments).
809 implied_candidate="`sed 's/#.*$//' < $xsrcdir$name/$implies_file`"
810 for x in $implied_candidate; do
812 if test -d $xsrcdir$name_base/$x; then
813 eval "${implies_type}=\"\$${implies_type} \$name_base/\$x\""
816 for d in $add_ons_pfx ''; do
820 *) try_srcdir=$srcdir/ ;;
822 test -n "$enable_debug_configure" &&
823 echo "[DEBUG]: $name $implies_file $x try($d) {$try_srcdir}$try" >&2
824 if test $try != $xsrcdir$name_base/$x && test -d $try_srcdir$try;
826 eval "${implies_type}=\"\$${implies_type} \$try\""
828 case "$sysnames_add_ons" in
830 *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
834 if test $found = no; then
835 AC_MSG_WARN($name/$implies_file specifies nonexistent $x)
841 # Add NAME to the list of names.
844 # Find the parent of NAME, using the empty string if it has none.
846 parent="`echo $name | sed -n -e 's=/[^/]*$==' -e '/sysdeps$/q' -e p`"
849 test -n "$enable_debug_configure" &&
850 echo "[DEBUG]: $name Implies='$Implies' rest='$*' parent='$parent' \
851 Implies_before='$Implies_before' Implies_after='$Implies_after'" >&2
853 # Add the names implied by NAME, and NAME's parent (if it has one), to
854 # the list of names to be processed (the argument list). We prepend the
855 # implied names to the list and append the parent. We want implied
856 # directories to come before further directories inferred from the
857 # configuration components; this ensures that for sysv4, unix/common
858 # (implied by unix/sysv/sysv4) comes before unix/sysv (in ostry (here $*)
860 sysnames="`echo $Implies $* $Implies_before $parent $Implies_after`"
861 test -n "$sysnames" && set $sysnames
864 # Add the default directories.
865 default_sysnames="sysdeps/generic"
866 sysnames="$names $default_sysnames"
868 # The other names were emitted during the scan.
869 AC_MSG_RESULT($default_sysnames)
871 # Collect the list of add-ons that supply partial sysdeps trees.
873 for add_on in $add_ons; do
876 *) xsrcdir="$srcdir/" ;;
879 test -d "$xsrcdir$add_on/sysdeps" || {
880 case "$configured_add_ons " in
883 AC_MSG_ERROR(add-on $add_on has no configure fragment or sysdeps tree)
889 sysdeps_add_ons="$sysdeps_add_ons $add_on"
890 case "$sysnames_add_ons" in
893 AC_MSG_WARN(add-on $add_on contributed no sysdeps directories)
898 for d in $sysnames; do
900 $add_on/sysdeps/*) ;;
903 (cd "$xsrcdir$d" && for f in *[[!~]]; do
907 test -d "$ff" || { test -e "$ff" && exit 88; }
911 test -d "$f" || { test -e "$f" && exit 88; }
915 if test $? -eq 88; then
920 if test $found = no; then
921 AC_MSG_WARN(add-on $add_on contributed no useful sysdeps directories)
924 AC_SUBST(sysdeps_add_ons)
930 if test "$INSTALL" = "${srcdir}/scripts/install-sh -c"; then
931 # The makefiles need to use a different form to find it in $srcdir.
932 INSTALL='\$(..)./scripts/install-sh -c'
938 # Accept binutils 2.22 or newer.
939 AC_CHECK_PROG_VER(AS, $AS, --version,
940 [GNU assembler.* \([0-9]*\.[0-9.]*\)],
941 [2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
942 AS=: critic_missing="$critic_missing as")
943 AC_CHECK_PROG_VER(LD, $LD, --version,
944 [GNU ld.* \([0-9][0-9]*\.[0-9.]*\)],
945 [2.1[0-9][0-9]*|2.2[2-9]*|2.[3-9][0-9]*|[3-9].*|[1-9][0-9]*],
946 LD=: critic_missing="$critic_missing ld")
948 # These programs are version sensitive.
950 AC_CHECK_PROG_VER(MAKE, gnumake gmake make, --version,
951 [GNU Make[^0-9]*\([0-9][0-9.]*\)],
952 [3.79* | 3.[89]* | [4-9].* | [1-9][0-9]*], critic_missing="$critic_missing make")
954 AC_CHECK_PROG_VER(MSGFMT, gnumsgfmt gmsgfmt msgfmt, --version,
955 [GNU gettext.* \([0-9]*\.[0-9.]*\)],
956 [0.10.3[6-9]* | 0.10.[4-9][0-9]* | 0.1[1-9]* | 0.[2-9][0-9]* | [1-9].*],
957 MSGFMT=: aux_missing="$aux_missing msgfmt")
958 AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
959 [GNU texinfo.* \([0-9][0-9.]*\)],
960 [4.[7-9]*|4.[1-9][0-9]*|[5-9].*],
961 MAKEINFO=: aux_missing="$aux_missing makeinfo")
962 AC_CHECK_PROG_VER(SED, sed, --version,
963 [GNU sed[^0-9]* \([0-9]*\.[0-9.]*\)],
964 [3.0[2-9]*|3.[1-9]*|[4-9]*],
965 SED=: aux_missing="$aux_missing sed")
966 AC_CHECK_PROG_VER(AWK, gawk, --version,
967 [GNU Awk[^0-9]*\([0-9][0-9.]*\)],
968 [3.1.[2-9]*|3.[2-9]*|[4-9]*], critic_missing="$critic_missing gawk")
970 AC_CACHE_CHECK([if $CC is sufficient to build libc], libc_cv_compiler_ok, [
972 #if !defined __GNUC__ || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)
973 #error insufficient compiler
975 [libc_cv_compiler_ok=yes],
976 [libc_cv_compiler_ok=no])])
977 AS_IF([test $libc_cv_compiler_ok != yes],
978 [critic_missing="$critic_missing compiler"])
980 AC_CHECK_TOOL(NM, nm, false)
982 if test "x$maintainer" = "xyes"; then
983 AC_CHECK_PROGS(AUTOCONF, autoconf, no)
985 xno|x|x:) AUTOCONF=no ;;
988 whether $AUTOCONF${ACFLAGS:+ }$ACFLAGS works, libc_cv_autoconf_works, [dnl
989 if (cd $srcdir; $AUTOCONF $ACFLAGS configure.ac > /dev/null 2>&1); then
990 libc_cv_autoconf_works=yes
992 libc_cv_autoconf_works=no
994 test $libc_cv_autoconf_works = yes || AUTOCONF=no
997 if test "x$AUTOCONF" = xno; then
998 aux_missing="$aux_missing autoconf"
1004 test -n "$critic_missing" && AC_MSG_ERROR([
1005 *** These critical programs are missing or too old:$critic_missing
1006 *** Check the INSTALL file for required versions.])
1008 test -n "$aux_missing" && AC_MSG_WARN([
1009 *** These auxiliary programs are missing or incompatible versions:$aux_missing
1010 *** some features will be disabled.
1011 *** Check the INSTALL file for required versions.])
1013 # if using special system headers, find out the compiler's sekrit
1014 # header directory and add that to the list. NOTE: Only does the right
1015 # thing on a system that doesn't need fixincludes. (Not presently a problem.)
1016 if test -n "$sysheaders"; then
1017 SYSINCLUDES=-nostdinc
1018 for d in include include-fixed; do
1019 i=`$CC -print-file-name="$d"` && test "x$i" != x && test "x$i" != "x$d" &&
1020 SYSINCLUDES="$SYSINCLUDES -isystem $i"
1022 SYSINCLUDES="$SYSINCLUDES \
1023 -isystem `echo $sysheaders | sed 's/:/ -isystem /g'`"
1024 if test -n "$CXX"; then
1026 for cxxheaders in `$CXX -v -S -x c++ /dev/null -o /dev/null 2>&1 \
1027 | sed -n -e '1,/#include/d' -e 's/^ \(\/.*\/[cg]++\)/\1/p'`; do
1028 test "x$cxxheaders" != x &&
1029 CXX_SYSINCLUDES="$CXX_SYSINCLUDES -isystem $cxxheaders"
1033 AC_SUBST(SYSINCLUDES)
1034 AC_SUBST(CXX_SYSINCLUDES)
1036 # Test if LD_LIBRARY_PATH contains the notation for the current directory
1037 # since this would lead to problems installing/building glibc.
1038 # LD_LIBRARY_PATH contains the current directory if one of the following
1040 # - one of the terminals (":" and ";") is the first or last sign
1041 # - two terminals occur directly after each other
1042 # - the path contains an element with a dot in it
1043 AC_MSG_CHECKING(LD_LIBRARY_PATH variable)
1045 case ${LD_LIBRARY_PATH} in
1046 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
1047 ld_library_path_setting="contains current directory"
1050 ld_library_path_setting="ok"
1054 AC_MSG_RESULT($ld_library_path_setting)
1055 if test "$ld_library_path_setting" != "ok"; then
1057 *** LD_LIBRARY_PATH shouldn't contain the current directory when
1058 *** building glibc. Please change the environment variable
1059 *** and run configure again.])
1062 AC_CACHE_CHECK(whether GCC supports -static-libgcc, libc_cv_gcc_static_libgcc, [dnl
1063 if $CC -v -static-libgcc 2>&1 | grep 'unrecognized option.*static-libgcc' >/dev/null; then
1064 libc_cv_gcc_static_libgcc=
1066 libc_cv_gcc_static_libgcc=-static-libgcc
1068 AC_SUBST(libc_cv_gcc_static_libgcc)
1070 AC_PATH_PROG(BASH_SHELL, bash, no)
1072 AC_PATH_PROG(PERL, perl, no)
1073 if test "$PERL" != no &&
1074 (eval `$PERL -V:apiversion`; test `expr "$apiversion" \< 5` -ne 0); then
1077 AC_PATH_PROG(INSTALL_INFO, install-info, no,
1078 $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
1079 AC_CHECK_PROG_VER(BISON, bison, --version,
1080 [bison (GNU Bison) \([0-9]*\.[0-9.]*\)],
1081 [2.7*|[3-9].*|[1-9][0-9]*],
1084 AC_CACHE_CHECK(for libc-friendly stddef.h, libc_cv_friendly_stddef, [dnl
1086 [#define __need_size_t
1087 #define __need_wchar_t
1090 #include <stddef.h>], [size_t size; wchar_t wchar;
1092 #error stddef.h ignored __need_*
1094 if (&size == NULL || &wchar == NULL) abort ();],
1095 libc_cv_friendly_stddef=yes,
1096 libc_cv_friendly_stddef=no)])
1097 if test $libc_cv_friendly_stddef = yes; then
1098 config_vars="$config_vars
1099 override stddef.h = # The installed <stddef.h> seems to be libc-friendly."
1102 AC_CACHE_CHECK(whether we need to use -P to assemble .S files,
1103 libc_cv_need_minus_P, [dnl
1104 cat > conftest.S <<EOF
1105 #include "confdefs.h"
1106 /* Nothing whatsoever. */
1108 if AC_TRY_COMMAND(${CC-cc} $CPPFLAGS $ASFLAGS -c conftest.S 1>&AS_MESSAGE_LOG_FD); then
1109 libc_cv_need_minus_P=no
1111 libc_cv_need_minus_P=yes
1114 if test $libc_cv_need_minus_P = yes; then
1115 config_vars="$config_vars
1116 asm-CPPFLAGS = -P # The assembler can't grok cpp's # line directives."
1119 AC_CACHE_CHECK(for .set assembler directive, libc_cv_asm_set_directive, [dnl
1120 cat > conftest.s <<EOF
1123 .set glibc_conftest_frobozz,foo
1124 .globl glibc_conftest_frobozz
1126 # The alpha-dec-osf1 assembler gives only a warning for `.set'
1127 # (but it doesn't work), so we must do a linking check to be sure.
1128 cat > conftest1.c <<\EOF
1129 extern int glibc_conftest_frobozz;
1130 void _start() { glibc_conftest_frobozz = 1; }
1132 if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
1133 -nostartfiles -nostdlib \
1134 -o conftest conftest.s conftest1.c 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
1135 libc_cv_asm_set_directive=yes
1137 libc_cv_asm_set_directive=no
1140 if test $libc_cv_asm_set_directive = yes; then
1141 AC_DEFINE(HAVE_ASM_SET_DIRECTIVE)
1144 AC_CACHE_CHECK(for assembler gnu_unique_object symbol type,
1145 libc_cv_asm_unique_object, [dnl
1146 cat > conftest.s <<EOF
1149 .type _sym, %gnu_unique_object
1151 if ${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
1152 libc_cv_asm_unique_object=yes
1154 libc_cv_asm_unique_object=no
1157 if test $libc_cv_asm_unique_object = yes; then
1158 AC_DEFINE(HAVE_ASM_UNIQUE_OBJECT)
1161 AC_CACHE_CHECK(for .previous assembler directive,
1162 libc_cv_asm_previous_directive, [dnl
1163 cat > conftest.s <<EOF
1164 .section foo_section
1167 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1168 libc_cv_asm_previous_directive=yes
1170 libc_cv_asm_previous_directive=no
1173 if test $libc_cv_asm_previous_directive = yes; then
1174 AC_DEFINE(HAVE_ASM_PREVIOUS_DIRECTIVE)
1176 AC_CACHE_CHECK(for .popsection assembler directive,
1177 libc_cv_asm_popsection_directive, [dnl
1178 cat > conftest.s <<EOF
1179 .pushsection foo_section
1182 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1183 libc_cv_asm_popsection_directive=yes
1185 libc_cv_asm_popsection_directive=no
1188 if test $libc_cv_asm_popsection_directive = yes; then
1189 AC_DEFINE(HAVE_ASM_POPSECTION_DIRECTIVE)
1192 AC_CACHE_CHECK(for .protected and .hidden assembler directive,
1193 libc_cv_asm_protected_directive, [dnl
1194 cat > conftest.s <<EOF
1200 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1201 libc_cv_asm_protected_directive=yes
1203 AC_MSG_ERROR(assembler support for symbol visibility is required)
1207 if test $libc_cv_asm_protected_directive = yes; then
1208 AC_CACHE_CHECK(whether __attribute__((visibility())) is supported,
1209 libc_cv_visibility_attribute,
1210 [cat > conftest.c <<EOF
1211 int foo __attribute__ ((visibility ("hidden"))) = 1;
1212 int bar __attribute__ ((visibility ("protected"))) = 1;
1214 libc_cv_visibility_attribute=no
1215 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
1216 if grep '\.hidden.*foo' conftest.s >/dev/null; then
1217 if grep '\.protected.*bar' conftest.s >/dev/null; then
1218 libc_cv_visibility_attribute=yes
1222 rm -f conftest.{c,s}
1224 if test $libc_cv_visibility_attribute != yes; then
1225 AC_MSG_ERROR(compiler support for visibility attribute is required)
1229 if test $libc_cv_visibility_attribute = yes; then
1230 AC_CACHE_CHECK(linker support for protected data symbol,
1231 libc_cv_protected_data,
1232 [cat > conftest.c <<EOF
1233 int bar __attribute__ ((visibility ("protected"))) = 1;
1235 libc_cv_protected_data=no
1236 if AC_TRY_COMMAND(${CC-cc} -nostdlib -nostartfiles -fPIC -shared conftest.c -o conftest.so); then
1237 cat > conftest.c <<EOF
1239 int main (void) { return bar; }
1241 if AC_TRY_COMMAND(${CC-cc} -nostdlib -nostartfiles conftest.c -o conftest conftest.so); then
1242 libc_cv_protected_data=yes
1248 libc_cv_protected_data=no
1250 AC_SUBST(libc_cv_protected_data)
1252 if test $libc_cv_visibility_attribute = yes; then
1253 AC_CACHE_CHECK(for broken __attribute__((visibility())),
1254 libc_cv_broken_visibility_attribute,
1255 [cat > conftest.c <<EOF
1257 int bar (int x) __asm__ ("foo") __attribute__ ((visibility ("hidden")));
1258 int bar (int x) { return x; }
1260 libc_cv_broken_visibility_attribute=yes
1261 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
1263 if grep '\.hidden[ _]foo' conftest.s >/dev/null; then
1265 libc_cv_broken_visibility_attribute=no
1268 rm -f conftest.c conftest.s
1270 if test $libc_cv_broken_visibility_attribute = yes; then
1271 AC_MSG_ERROR(working compiler support for visibility attribute is required)
1275 AC_CACHE_CHECK(for broken __attribute__((alias())),
1276 libc_cv_broken_alias_attribute,
1277 [cat > conftest.c <<EOF
1278 extern int foo (int x) __asm ("xyzzy");
1279 int bar (int x) { return x; }
1280 extern __typeof (bar) foo __attribute ((weak, alias ("bar")));
1282 extern __typeof (dfoo) dfoo __asm ("abccb");
1285 libc_cv_broken_alias_attribute=yes
1286 if AC_TRY_COMMAND(${CC-cc} -Werror -S conftest.c -o conftest.s 1>&AS_MESSAGE_LOG_FD); then
1287 if grep 'xyzzy' conftest.s >/dev/null &&
1288 grep 'abccb' conftest.s >/dev/null; then
1289 libc_cv_broken_alias_attribute=no
1292 rm -f conftest.c conftest.s
1294 if test $libc_cv_broken_alias_attribute = yes; then
1295 AC_MSG_ERROR(working alias attribute support required)
1298 if test $libc_cv_visibility_attribute = yes; then
1299 AC_CACHE_CHECK(whether to put _rtld_local into .sdata section,
1300 libc_cv_have_sdata_section,
1301 [echo "int i;" > conftest.c
1302 libc_cv_have_sdata_section=no
1303 if ${CC-cc} $LDFLAGS -fPIC -shared -Wl,--verbose conftest.c -o conftest.so 2>&1 \
1304 | grep '\.sdata' >/dev/null; then
1305 libc_cv_have_sdata_section=yes
1307 rm -f conftest.c conftest.so
1309 if test $libc_cv_have_sdata_section = yes; then
1310 AC_DEFINE(HAVE_SDATA_SECTION)
1314 AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
1315 libc_cv_initfini_array, [dnl
1316 LIBC_TRY_LINK_STATIC([
1317 int foo (void) { return 1; }
1318 int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;
1320 [if $READELF -S conftest | fgrep INIT_ARRAY > /dev/null; then
1321 libc_cv_initfini_array=yes
1323 libc_cv_initfini_array=no
1325 [libc_cv_initfini_array=no])
1327 if test $libc_cv_initfini_array != yes; then
1328 AC_MSG_ERROR([Need linker with .init_array/.fini_array support.])
1331 AC_CACHE_CHECK(whether to use .ctors/.dtors header and trailer,
1332 libc_cv_ctors_header, [dnl
1333 libc_cv_ctors_header=yes
1334 LIBC_TRY_LINK_STATIC([
1335 __attribute__ ((constructor)) void ctor (void) { asm (""); }
1336 __attribute__ ((destructor)) void dtor (void) { asm (""); }
1339 AS_IF([$READELF -WS conftest$ac_exeext | $AWK '
1340 { gsub(/\@<:@ */, "@<:@") }
1341 $2 == ".ctors" || $2 == ".dtors" {
1342 size = strtonum("0x" $6)
1343 align = strtonum("0x" $NF)
1345 stub@<:@$2@:>@ = size == align * 2
1348 ctors_ok = !seen@<:@".ctors"@:>@ || stub@<:@".ctors"@:>@
1349 dtors_ok = !seen@<:@".dtors"@:>@ || stub@<:@".dtors"@:>@
1350 exit ((ctors_ok && dtors_ok) ? 0 : 1)
1352 '], [libc_cv_ctors_header=no])
1354 AC_MSG_ERROR([missing __attribute__ ((constructor)) support??])
1357 if test $libc_cv_ctors_header = no; then
1358 AC_DEFINE(NO_CTORS_DTORS_SECTIONS)
1361 AC_CACHE_CHECK(for libunwind-support in compiler,
1362 libc_cv_cc_with_libunwind, [
1363 cat > conftest.c <<EOF
1364 int main (void) { return 0; }
1366 if ${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS -static -o conftest \
1367 conftest.c -v 2>&1 >/dev/null | grep ' -lunwind ' >/dev/null; then
1368 libc_cv_cc_with_libunwind=yes
1370 libc_cv_cc_with_libunwind=no
1373 AC_SUBST(libc_cv_cc_with_libunwind)
1374 if test $libc_cv_cc_with_libunwind = yes; then
1375 AC_DEFINE(HAVE_CC_WITH_LIBUNWIND)
1378 LIBC_LINKER_FEATURE([-z nodelete], [-Wl,--enable-new-dtags,-z,nodelete],
1379 [libc_cv_z_nodelete=yes],
1380 [AC_MSG_ERROR(linker with -z nodelete support required)])
1382 LIBC_LINKER_FEATURE([-z nodlopen], [-Wl,--enable-new-dtags,-z,nodlopen],
1383 [libc_cv_z_nodlopen=yes],
1384 [AC_MSG_ERROR(linker with -z nodlopen support required)])
1386 LIBC_LINKER_FEATURE([-z initfirst], [-Wl,--enable-new-dtags,-z,initfirst],
1387 [libc_cv_z_initfirst=yes],
1388 [AC_MSG_ERROR(linker with -z initfirst support required)])
1390 AC_CACHE_CHECK(for -Bgroup option,
1391 libc_cv_Bgroup, [dnl
1392 cat > conftest.c <<EOF
1393 int _start (void) { return 42; }
1395 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1396 -fPIC -shared -o conftest.so conftest.c
1397 -Wl,-Bgroup -nostdlib 1>&AS_MESSAGE_LOG_FD])
1404 AC_SUBST(libc_cv_Bgroup)
1407 AC_CACHE_CHECK(whether --noexecstack is desirable for .S files,
1408 libc_cv_as_noexecstack, [dnl
1409 cat > conftest.c <<EOF
1412 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS
1413 -S -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD]) \
1414 && grep .note.GNU-stack conftest.s >/dev/null \
1415 && AC_TRY_COMMAND([${CC-cc} $ASFLAGS -Wa,--noexecstack
1416 -c -o conftest.o conftest.s 1>&AS_MESSAGE_LOG_FD])
1418 libc_cv_as_noexecstack=yes
1420 libc_cv_as_noexecstack=no
1423 if test $libc_cv_as_noexecstack = yes; then
1424 ASFLAGS_config="$ASFLAGS_config -Wa,--noexecstack"
1426 AC_SUBST(ASFLAGS_config)
1428 AC_CACHE_CHECK(for -z combreloc,
1429 libc_cv_z_combreloc, [dnl
1430 cat > conftest.c <<EOF
1431 extern int bar (int);
1433 int foo (void) { return bar (mumble); }
1435 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1436 -fPIC -shared -o conftest.so conftest.c
1437 -nostdlib -nostartfiles
1438 -Wl,-z,combreloc 1>&AS_MESSAGE_LOG_FD])
1440 dnl The following test is a bit weak. We must use a tool which can test
1441 dnl cross-platform since the gcc used can be a cross compiler. Without
1442 dnl introducing new options this is not easily doable. Instead use a tool
1443 dnl which always is cross-platform: readelf. To detect whether -z combreloc
1444 dnl look for a section named .rel.dyn.
1445 if $READELF -S conftest.so | grep '\.rel\(a\|\)\.dyn' > /dev/null; then
1446 libc_cv_z_combreloc=yes
1448 libc_cv_z_combreloc=no
1451 libc_cv_z_combreloc=no
1454 if test "$libc_cv_z_combreloc" = yes; then
1455 AC_DEFINE(HAVE_Z_COMBRELOC)
1457 AC_SUBST(libc_cv_z_combreloc)
1459 LIBC_LINKER_FEATURE([-z execstack], [-Wl,-z,execstack],
1460 [libc_cv_z_execstack=yes], [libc_cv_z_execstack=no])
1461 AC_SUBST(libc_cv_z_execstack)
1463 AC_CACHE_CHECK(for -fpie, libc_cv_fpie, [dnl
1464 LIBC_TRY_CC_OPTION([-fpie], [libc_cv_fpie=yes], [libc_cv_fpie=no])
1467 AC_SUBST(libc_cv_fpie)
1469 AC_CACHE_CHECK(for --hash-style option,
1470 libc_cv_hashstyle, [dnl
1471 cat > conftest.c <<EOF
1472 int _start (void) { return 42; }
1474 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1475 -fPIC -shared -o conftest.so conftest.c
1476 -Wl,--hash-style=both -nostdlib 1>&AS_MESSAGE_LOG_FD])
1478 libc_cv_hashstyle=yes
1480 libc_cv_hashstyle=no
1483 AC_SUBST(libc_cv_hashstyle)
1485 # The linker's default -shared behavior is good enough if it
1486 # does these things that our custom linker scripts ensure that
1487 # all allocated NOTE sections come first.
1488 if test "$use_default_link" = default; then
1489 AC_CACHE_CHECK([for sufficient default -shared layout],
1490 libc_cv_use_default_link, [dnl
1491 libc_cv_use_default_link=no
1492 cat > conftest.s <<\EOF
1493 .section .note.a,"a",%note
1498 .section .note.b,"a",%note
1504 if AC_TRY_COMMAND([dnl
1505 ${CC-cc} $ASFLAGS -shared -o conftest.so conftest.s 1>&AS_MESSAGE_LOG_FD]) &&
1506 ac_try=`$READELF -S conftest.so | sed -n \
1508 s/^ *\[ *[1-9][0-9]*\] *\([^ ][^ ]*\) *\([^ ][^ ]*\) .*$/\2 \1/
1514 libc_seen_a=no libc_seen_b=no
1516 while test $# -ge 2 -a "$1" = NOTE; do
1518 .note.a) libc_seen_a=yes ;;
1519 .note.b) libc_seen_b=yes ;;
1523 case "$libc_seen_a$libc_seen_b" in
1525 libc_cv_use_default_link=yes
1528 echo >&AS_MESSAGE_LOG_FD "\
1529 $libc_seen_a$libc_seen_b from:
1535 use_default_link=$libc_cv_use_default_link
1538 AC_CACHE_CHECK(linker output format, libc_cv_output_format, [dnl
1539 if libc_cv_output_format=`
1540 ${CC-cc} -nostartfiles -nostdlib -Wl,--print-output-format 2>&AS_MESSAGE_LOG_FD`
1544 libc_cv_output_format=
1546 test -n "$libc_cv_output_format" || libc_cv_output_format=unknown])
1547 AC_SUBST(libc_cv_output_format)
1549 AC_CACHE_CHECK(for -fno-toplevel-reorder -fno-section-anchors, libc_cv_fno_toplevel_reorder, [dnl
1550 cat > conftest.c <<EOF
1553 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -fno-toplevel-reorder -fno-section-anchors
1554 conftest.c 1>&AS_MESSAGE_LOG_FD])
1556 libc_cv_fno_toplevel_reorder=yes
1558 libc_cv_fno_toplevel_reorder=no
1561 if test $libc_cv_fno_toplevel_reorder = yes; then
1562 fno_unit_at_a_time="-fno-toplevel-reorder -fno-section-anchors"
1564 fno_unit_at_a_time=-fno-unit-at-a-time
1566 AC_SUBST(fno_unit_at_a_time)
1568 AC_CACHE_CHECK(for -fstack-protector, libc_cv_ssp, [dnl
1569 LIBC_TRY_CC_OPTION([$CFLAGS $CPPFLAGS -Werror -fstack-protector],
1573 AC_SUBST(libc_cv_ssp)
1575 AC_CACHE_CHECK(for -fgnu89-inline, libc_cv_gnu89_inline, [dnl
1576 cat > conftest.c <<EOF
1578 #ifdef __GNUC_GNU_INLINE__
1579 main () { return 0;}
1584 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -std=gnu99 -fgnu89-inline
1585 -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD])
1587 libc_cv_gnu89_inline=yes
1589 libc_cv_gnu89_inline=no
1592 if test $libc_cv_gnu89_inline = yes; then
1593 gnu89_inline=-fgnu89-inline
1597 AC_SUBST(gnu89_inline)
1599 AC_CACHE_CHECK(whether cc puts quotes around section names,
1600 libc_cv_have_section_quotes,
1601 [cat > conftest.c <<EOF
1602 static const int foo
1603 __attribute__ ((section ("bar"))) = 1;
1605 if ${CC-cc} -S conftest.c -o conftest.s; then
1606 if grep '\.section.*"bar"' conftest.s >/dev/null; then
1607 libc_cv_have_section_quotes=yes
1609 libc_cv_have_section_quotes=no
1612 libc_cv_have_section_quotes=unknown
1614 rm -f conftest.{c,s}
1616 if test $libc_cv_have_section_quotes = yes; then
1617 AC_DEFINE(HAVE_SECTION_QUOTES)
1620 AC_CACHE_CHECK(for assembler .weak directive, libc_cv_asm_weak_directive,
1622 cat > conftest.s <<EOF
1627 .weak bar; bar = foo
1629 if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
1630 libc_cv_asm_weak_directive=yes
1632 libc_cv_asm_weak_directive=no
1636 if test $libc_cv_asm_weak_directive = no; then
1637 AC_CACHE_CHECK(for assembler .weakext directive,
1638 libc_cv_asm_weakext_directive,
1640 cat > conftest.s <<EOF
1649 if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
1650 libc_cv_asm_weakext_directive=yes
1652 libc_cv_asm_weakext_directive=no
1658 if test $libc_cv_asm_weak_directive = yes; then
1659 AC_DEFINE(HAVE_ASM_WEAK_DIRECTIVE)
1660 elif test $libc_cv_asm_weakext_directive = yes; then
1661 AC_DEFINE(HAVE_ASM_WEAKEXT_DIRECTIVE)
1664 AC_CACHE_CHECK(for ld --no-whole-archive, libc_cv_ld_no_whole_archive, [dnl
1665 cat > conftest.c <<\EOF
1670 dnl No \ in command here because it ends up inside ''.
1671 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1672 -nostdlib -nostartfiles -Wl,--no-whole-archive
1673 -o conftest conftest.c 1>&AS_MESSAGE_LOG_FD]); then
1674 libc_cv_ld_no_whole_archive=yes
1676 libc_cv_ld_no_whole_archive=no
1679 if test $libc_cv_ld_no_whole_archive = no; then
1680 AC_MSG_ERROR([support for --no-whole-archive is needed])
1683 AC_CACHE_CHECK(for gcc -fexceptions, libc_cv_gcc_exceptions, [dnl
1684 cat > conftest.c <<\EOF
1689 dnl No \ in command here because it ends up inside ''.
1690 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS
1691 -nostdlib -nostartfiles -fexceptions
1692 -o conftest conftest.c 1>&AS_MESSAGE_LOG_FD]); then
1693 libc_cv_gcc_exceptions=yes
1695 libc_cv_gcc_exceptions=no
1698 if test $libc_cv_gcc_exceptions = yes; then
1699 exceptions=-fexceptions
1701 AC_SUBST(exceptions)dnl
1703 AC_CACHE_CHECK(for __builtin_memset, libc_cv_gcc_builtin_memset, [dnl
1704 cat > conftest.c <<\EOF
1707 __builtin_memset (x, 0, 1000);
1711 if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | fgrep "memset" > /dev/null]);
1713 libc_cv_gcc_builtin_memset=no
1715 libc_cv_gcc_builtin_memset=yes
1718 if test "$libc_cv_gcc_builtin_memset" = yes ; then
1719 AC_DEFINE(HAVE_BUILTIN_MEMSET)
1722 AC_CACHE_CHECK(for redirection of built-in functions, libc_cv_gcc_builtin_redirection, [dnl
1723 cat > conftest.c <<\EOF
1724 extern char *strstr (const char *, const char *) __asm ("my_strstr");
1725 char *foo (const char *a, const char *b)
1727 return __builtin_strstr (a, b);
1731 if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | fgrep "my_strstr" > /dev/null]);
1733 libc_cv_gcc_builtin_redirection=yes
1735 libc_cv_gcc_builtin_redirection=no
1738 if test "$libc_cv_gcc_builtin_redirection" = no; then
1739 AC_MSG_ERROR([support for the symbol redirection needed])
1742 dnl Check whether the compiler supports the __thread keyword.
1743 AC_CACHE_CHECK([for __thread], libc_cv_gcc___thread,
1744 [cat > conftest.c <<\EOF
1745 __thread int a = 42;
1747 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c >&AS_MESSAGE_LOG_FD]); then
1748 libc_cv_gcc___thread=yes
1750 libc_cv_gcc___thread=no
1753 if test "$libc_cv_gcc___thread" = no; then
1754 AC_MSG_ERROR([support for the __thread keyword is required])
1757 dnl Check whether the compiler supports the tls_model attribute.
1758 AC_CACHE_CHECK([for tls_model attribute], libc_cv_gcc_tls_model_attr, [dnl
1759 cat > conftest.c <<\EOF
1760 extern __thread int a __attribute__((tls_model ("initial-exec")));
1762 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -Werror conftest.c >&AS_MESSAGE_LOG_FD]); then
1763 libc_cv_gcc_tls_model_attr=yes
1765 libc_cv_gcc_tls_model_attr=no
1768 if test "$libc_cv_gcc_tls_model_attr" = no; then
1769 AC_MSG_ERROR([support for the tls_model attribute is required])
1772 dnl Determine how to disable generation of FMA instructions.
1773 AC_CACHE_CHECK([for compiler option to disable generation of FMA instructions],
1774 libc_cv_cc_nofma, [dnl
1776 for opt in -ffp-contract=off -mno-fused-madd; do
1777 LIBC_TRY_CC_OPTION([$opt], [libc_cv_cc_nofma=$opt; break])
1779 AC_SUBST(libc_cv_cc_nofma)
1781 if test -n "$submachine"; then
1782 AC_CACHE_CHECK([for compiler option for CPU variant],
1783 libc_cv_cc_submachine, [dnl
1784 libc_cv_cc_submachine=no
1785 for opt in "-march=$submachine" "-mcpu=$submachine"; do
1786 LIBC_TRY_CC_OPTION([$opt], [
1787 libc_cv_cc_submachine="$opt"
1790 if test "x$libc_cv_cc_submachine" = xno; then
1791 AC_MSG_ERROR([${CC-cc} does not support $submachine])
1794 AC_SUBST(libc_cv_cc_submachine)
1796 AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \
1797 __attribute__ ((__optimize__)), libc_cv_cc_loop_to_function, [dnl
1798 cat > conftest.c <<EOF
1800 __attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
1803 libc_cv_cc_loop_to_function=no
1804 if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c])
1806 libc_cv_cc_loop_to_function=yes
1809 if test $libc_cv_cc_loop_to_function = yes; then
1810 AC_DEFINE(HAVE_CC_INHIBIT_LOOP_TO_LIBCALL)
1812 AC_SUBST(libc_cv_cc_loop_to_function)
1814 dnl Check whether we have the gd library available.
1815 AC_MSG_CHECKING(for libgd)
1816 if test "$with_gd" != "no"; then
1817 old_CFLAGS="$CFLAGS"
1818 CFLAGS="$CFLAGS $libgd_include"
1819 old_LDFLAGS="$LDFLAGS"
1820 LDFLAGS="$LDFLAGS $libgd_ldflags"
1822 LIBS="$LIBS -lgd -lpng -lz -lm"
1823 AC_TRY_LINK([#include <gd.h>], [gdImagePng (0, 0)], LIBGD=yes, LIBGD=no)
1824 CFLAGS="$old_CFLAGS"
1825 LDFLAGS="$old_LDFLAGS"
1830 AC_MSG_RESULT($LIBGD)
1834 if test x$with_selinux = xno ; then
1837 # See if we have the SELinux library
1838 AC_CHECK_LIB(selinux, is_selinux_enabled,
1839 have_selinux=yes, have_selinux=no)
1840 if test x$with_selinux = xyes ; then
1841 if test x$have_selinux = xno ; then
1842 AC_MSG_ERROR([SELinux explicitly required, but SELinux library not found])
1846 # Check if we're building with SELinux support.
1847 if test "x$have_selinux" = xyes; then
1848 AC_DEFINE(HAVE_SELINUX, 1, [SELinux support])
1850 # See if we have the libaudit library
1851 AC_CHECK_LIB(audit, audit_log_user_avc_message,
1852 have_libaudit=yes, have_libaudit=no)
1853 if test "x$have_libaudit" = xyes; then
1854 AC_DEFINE(HAVE_LIBAUDIT, 1, [SELinux libaudit support])
1856 AC_SUBST(have_libaudit)
1858 # See if we have the libcap library
1859 AC_CHECK_LIB(cap, cap_init, have_libcap=yes, have_libcap=no)
1860 if test "x$have_libcap" = xyes; then
1861 AC_DEFINE(HAVE_LIBCAP, 1, [SELinux libcap support])
1863 AC_SUBST(have_libcap)
1865 AC_SUBST(have_selinux)
1867 dnl check for the size of 'long double'.
1868 AC_CHECK_SIZEOF(long double, 0)
1869 sizeof_long_double=$ac_cv_sizeof_long_double
1870 AC_SUBST(sizeof_long_double)
1873 dnl Check for silly hacked compilers predefining _FORTIFY_SOURCE.
1874 dnl Since we are building the implementations of the fortified functions here,
1875 dnl having the macro defined interacts very badly.
1876 AC_CACHE_CHECK([for _FORTIFY_SOURCE predefine], libc_cv_predef_fortify_source,
1877 [AC_TRY_COMPILE([], [
1878 #ifdef _FORTIFY_SOURCE
1881 [libc_cv_predef_fortify_source=no],
1882 [libc_cv_predef_fortify_source=yes])])
1883 if test $libc_cv_predef_fortify_source = yes; then
1884 CPPUNDEFS="${CPPUNDEFS:+$CPPUNDEFS }-U_FORTIFY_SOURCE"
1888 dnl Check for silly hacked compilers inserting -fstack-protector.
1889 dnl This breaks badly for the early startup code we compile, since
1890 dnl the compiled code can refer to a magic machine-dependent location
1891 dnl for the canary value before we have sufficient setup for that to
1892 dnl work. It's also questionable to build all of libc with this flag
1893 dnl even when you're doing that for most applications you build, since
1894 dnl libc's code is so heavily-used and performance-sensitive. If we
1895 dnl ever really want to make that work, it should be enabled explicitly
1896 dnl in the libc build, not inherited from implicit compiler settings.
1897 AC_CACHE_CHECK([whether $CC implicitly enables -fstack-protector],
1898 libc_cv_predef_stack_protector, [
1899 AC_TRY_COMPILE([extern void foobar (char *);],
1900 [char large_array[2048]; foobar (large_array);], [
1901 libc_undefs=`$NM -u conftest.o |
1902 LC_ALL=C $AWK '$1 == "U" { print $2 | "sort -u"; next } { exit(1) }' \
1903 2>&AS_MESSAGE_LOG_FD` || {
1904 AC_MSG_ERROR([confusing output from $NM -u])
1906 echo >&AS_MESSAGE_LOG_FD "libc_undefs='$libc_undefs'"
1907 # On some architectures, there are architecture-specific undefined
1908 # symbols (resolved by the linker), so filter out unknown symbols.
1909 # This will fail to produce the correct result if the compiler
1910 # defaults to -fstack-protector but this produces an undefined symbol
1911 # other than __stack_chk_fail. However, compilers like that have not
1912 # been encountered in practice.
1913 libc_undefs=`echo "$libc_undefs" | egrep '^(foobar|__stack_chk_fail)$'`
1914 case "$libc_undefs" in
1915 foobar) libc_cv_predef_stack_protector=no ;;
1917 foobar') libc_cv_predef_stack_protector=yes ;;
1918 *) AC_MSG_ERROR([unexpected symbols in test: $libc_undefs]) ;;
1920 [AC_MSG_ERROR([test compilation failed])])
1923 if test $libc_cv_predef_stack_protector = yes; then
1924 libc_extra_cflags="$libc_extra_cflags -fno-stack-protector"
1926 libc_extra_cppflags=
1928 # Some linkers on some architectures support __ehdr_start but with
1929 # bugs. Make sure usage of it does not create relocations in the
1930 # output (as the linker should resolve them all for us).
1931 AC_CACHE_CHECK([whether the linker provides working __ehdr_start],
1932 libc_cv_ehdr_start, [
1933 old_CFLAGS="$CFLAGS"
1934 old_LDFLAGS="$LDFLAGS"
1936 CFLAGS="$CFLAGS -fPIC"
1937 LDFLAGS="$LDFLAGS -nostdlib -nostartfiles -shared"
1939 AC_LINK_IFELSE([AC_LANG_SOURCE([
1944 extern const Ehdr __ehdr_start __attribute__ ((visibility ("hidden")));
1945 long ehdr (void) { return __ehdr_start.val; }
1947 [if $READELF -r conftest | fgrep __ehdr_start >/dev/null; then
1948 libc_cv_ehdr_start=broken
1950 libc_cv_ehdr_start=yes
1951 fi], [libc_cv_ehdr_start=no])
1952 CFLAGS="$old_CFLAGS"
1953 LDFLAGS="$old_LDFLAGS"
1956 if test "$libc_cv_ehdr_start" = yes; then
1957 AC_DEFINE([HAVE_EHDR_START])
1958 elif test "$libc_cv_ehdr_start" = broken; then
1959 AC_MSG_WARN([linker is broken -- you should upgrade])
1962 AC_CACHE_CHECK(for __builtin_trap with no external dependencies,
1963 libc_cv_builtin_trap, [dnl
1964 libc_cv_builtin_trap=no
1965 AC_TRY_COMPILE([], [__builtin_trap ()], [
1966 libc_undefs=`$NM -u conftest.o |
1967 LC_ALL=C $AWK '$1 == "U" { print $2 | "sort -u"; next } { exit(1) }' \
1968 2>&AS_MESSAGE_LOG_FD` || {
1969 AC_MSG_ERROR([confusing output from $NM -u])
1971 echo >&AS_MESSAGE_LOG_FD "libc_undefs='$libc_undefs'"
1972 if test -z "$libc_undefs"; then
1973 libc_cv_builtin_trap=yes
1975 if test $libc_cv_builtin_trap = yes; then
1976 AC_DEFINE([HAVE_BUILTIN_TRAP])
1979 ### End of automated tests.
1980 ### Now run sysdeps configure fragments.
1982 # They also can set these variables.
1984 ldd_rewrite_script=no
1985 libc_cv_sysconfdir=$sysconfdir
1986 libc_cv_localstatedir=$localstatedir
1987 libc_cv_gcc_unwind_find_fde=no
1990 # Iterate over all the sysdep directories we will use, running their
1991 # configure fragments.
1992 for dir in $sysnames; do
1995 *) dest=$srcdir/$dir ;;
1997 if test -r $dest/configure; then
1998 AC_MSG_RESULT(running configure fragment for $dir)
2003 if test x"$build_mathvec" = xnotset; then
2006 LIBC_CONFIG_VAR([build-mathvec], [$build_mathvec])
2008 AC_SUBST(libc_extra_cflags)
2009 AC_SUBST(libc_extra_cppflags)
2011 if test x$libc_cv_gcc_unwind_find_fde = xyes; then
2012 AC_DEFINE(EXPORT_UNWIND_FIND_FDE)
2014 AC_SUBST(libc_cv_gcc_unwind_find_fde)
2016 # A sysdeps configure fragment can reset this if IFUNC is not actually
2017 # usable even though the assembler knows how to generate the symbol type.
2018 if test x"$libc_cv_ld_gnu_indirect_function" = xyes; then
2019 AC_DEFINE(HAVE_IFUNC)
2022 # This is far from the AC_ARG_ENABLE that sets it so that a sysdeps
2023 # configure fragment can override the value to prevent this AC_DEFINE.
2025 if test "x$use_nscd" != xno; then
2026 AC_DEFINE([USE_NSCD])
2028 if test "x$build_nscd" = xdefault; then
2029 build_nscd=$use_nscd
2032 # Test for old glibc 2.0.x headers so that they can be removed properly
2033 # Search only in includedir.
2034 AC_MSG_CHECKING(for old glibc 2.0.x headers)
2035 if eval test -f "${includedir}/elfclass.h" -a -f "${includedir}/fcntlbits.h"
2037 old_glibc_headers=yes
2039 old_glibc_headers=no
2041 AC_MSG_RESULT($old_glibc_headers)
2042 if test ${old_glibc_headers} = yes; then
2043 AC_MSG_WARN(*** During \"make install\" old headers from glibc 2.0.x will)
2044 AC_MSG_WARN(*** be removed.)
2046 AC_SUBST(old_glibc_headers)
2048 AC_SUBST(libc_cv_slibdir)
2049 AC_SUBST(libc_cv_rtlddir)
2050 AC_SUBST(libc_cv_localedir)
2051 AC_SUBST(libc_cv_sysconfdir)
2052 AC_SUBST(libc_cv_localstatedir)
2053 AC_SUBST(libc_cv_rootsbindir)
2054 AC_SUBST(libc_cv_forced_unwind)
2056 if test x$use_ldconfig = xyes; then
2057 AC_DEFINE(USE_LDCONFIG)
2059 AC_SUBST(use_ldconfig)
2060 AC_SUBST(ldd_rewrite_script)
2065 AC_CACHE_CHECK([whether -fPIC is default], libc_cv_pic_default,
2066 [libc_cv_pic_default=yes
2067 cat > conftest.c <<EOF
2068 #if defined __PIC__ || defined __pic__ || defined PIC || defined pic
2069 # error PIC is default.
2072 if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
2073 libc_cv_pic_default=no
2076 AC_SUBST(libc_cv_pic_default)
2078 AC_CACHE_CHECK([whether -fPIE is default], libc_cv_pie_default,
2079 [libc_cv_pie_default=yes
2080 cat > conftest.c <<EOF
2081 #if defined __PIE__ || defined __pie__ || defined PIE || defined pie
2082 # error PIE is default.
2085 if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
2086 libc_cv_pie_default=no
2089 AC_SUBST(libc_cv_pie_default)
2092 AC_SUBST(static_nss)
2096 dnl See sysdeps/mach/configure.ac for this variable.
2097 AC_SUBST(mach_interface_list)
2099 VERSION=`sed -n -e 's/^#define VERSION "\([^"]*\)"/\1/p' < $srcdir/version.h`
2100 RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h`
2104 AC_CONFIG_FILES([config.make Makefile])
2105 AC_CONFIG_COMMANDS([default],[[
2106 case $CONFIG_FILES in *config.make*)
2107 echo "$config_vars" >> config.make;;
2109 test -d bits || mkdir bits]],[[config_vars='$config_vars']])