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