blob: 7e9383a7f0b036ff7f558b1d436906245aa1941d [file] [log] [blame]
lh9ed821d2023-04-07 01:36:19 -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++])
60AC_LINK_IFELSE([AC_LANG_PROGRAM([], [])],
61 [libc_cv_cxx_link_ok=yes],
62 [libc_cv_cxx_link_ok=no])
63AC_LANG_POP([C++])])
64AS_IF([test $libc_cv_cxx_link_ok != yes], [CXX=])
65
66if test "`cd $srcdir; /bin/pwd`" = "`/bin/pwd`"; then
67 AC_MSG_ERROR([you must configure in a separate build directory])
68fi
69
70# This will get text that should go into config.make.
71config_vars=
72
73# Check for a --with-gd argument and set libgd-LDFLAGS in config.make.
74AC_ARG_WITH([gd],
75 AC_HELP_STRING([--with-gd=DIR],
76 [find libgd include dir and library with prefix DIR]),
77 [dnl
78case "$with_gd" in
79yes|''|no) ;;
80*) libgd_include="-I$withval/include"
81 libgd_ldflags="-L$withval/lib" ;;
82esac
83])
84AC_ARG_WITH([gd-include],
85 AC_HELP_STRING([--with-gd-include=DIR],
86 [find libgd include files in DIR]),
87 [dnl
88case "$with_gd_include" in
89''|no) ;;
90*) libgd_include="-I$withval" ;;
91esac
92])
93AC_ARG_WITH([gd-lib],
94 AC_HELP_STRING([--with-gd-lib=DIR],
95 [find libgd library files in DIR]),
96 [dnl
97case "$with_gd_lib" in
98''|no) ;;
99*) libgd_ldflags="-L$withval" ;;
100esac
101])
102
103if test -n "$libgd_include"; then
104 config_vars="$config_vars
105CFLAGS-memusagestat.c = $libgd_include"
106fi
107if test -n "$libgd_ldflags"; then
108 config_vars="$config_vars
109libgd-LDFLAGS = $libgd_ldflags"
110fi
111
112dnl Arguments to specify presence of other packages/features.
113AC_ARG_WITH([fp],
114 AC_HELP_STRING([--with-fp],
115 [if using floating-point hardware @<:@default=yes@:>@]),
116 [with_fp=$withval],
117 [with_fp=yes])
118AC_SUBST(with_fp)
119AC_ARG_WITH([binutils],
120 AC_HELP_STRING([--with-binutils=PATH],
121 [specify location of binutils (as and ld)]),
122 [path_binutils=$withval],
123 [path_binutils=''])
124AC_ARG_WITH([selinux],
125 AC_HELP_STRING([--with-selinux],
126 [if building with SELinux support]),
127 [with_selinux=$withval],
128 [with_selinux=auto])
129
130AC_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],
136 [sysheaders=''])
137AC_SUBST(sysheaders)
138
139AC_SUBST(use_default_link)
140AC_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])
145
146AC_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],
150 [enable_sanity=yes])
151
152AC_ARG_ENABLE([shared],
153 AC_HELP_STRING([--enable-shared],
154 [build shared library @<:@default=yes if GNU ld@:>@]),
155 [shared=$enableval],
156 [shared=yes])
157AC_ARG_ENABLE([profile],
158 AC_HELP_STRING([--enable-profile],
159 [build profiled library @<:@default=no@:>@]),
160 [profile=$enableval],
161 [profile=no])
162
163AC_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])
168AC_SUBST(hardcoded_path_in_tests)
169
170AC_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])
175if test "$enable_stackguard_randomize" = yes; then
176 AC_DEFINE(ENABLE_STACKGUARD_RANDOMIZE)
177fi
178
179AC_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])
184AC_SUBST(enable_lock_elision)
185if test "$enable_lock_elision" = yes ; then
186 AC_DEFINE(ENABLE_LOCK_ELISION)
187fi
188
189dnl Generic infrastructure for drop-in additions to libc.
190AC_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])
195
196AC_ARG_ENABLE([hidden-plt],
197 AC_HELP_STRING([--disable-hidden-plt],
198 [do not hide internal function calls to avoid PLT]),
199 [hidden=$enableval],
200 [hidden=yes])
201if test "x$hidden" = xno; then
202 AC_DEFINE(NO_HIDDEN)
203fi
204
205AC_ARG_ENABLE([bind-now],
206 AC_HELP_STRING([--enable-bind-now],
207 [disable lazy relocations in DSOs]),
208 [bindnow=$enableval],
209 [bindnow=no])
210AC_SUBST(bindnow)
211
212dnl On some platforms we cannot use dynamic loading. We must provide
213dnl static NSS modules.
214AC_ARG_ENABLE([static-nss],
215 AC_HELP_STRING([--enable-static-nss],
216 [build static NSS modules @<:@default=no@:>@]),
217 [static_nss=$enableval],
218 [static_nss=no])
219dnl Enable static NSS also if we build no shared objects.
220if test x"$static_nss" = xyes || test x"$shared" = xno; then
221 static_nss=yes
222 AC_DEFINE(DO_STATIC_NSS)
223fi
224
225AC_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],
229 [force_install=yes])
230AC_SUBST(force_install)
231
232AC_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],
236 [maintainer=no])
237
238dnl On some platforms we allow dropping compatibility with all kernel
239dnl versions.
240AC_ARG_ENABLE([kernel],
241 AC_HELP_STRING([--enable-kernel=VERSION],
242 [compile for compatibility with kernel not older than VERSION]),
243 [minimum_kernel=$enableval],
244 [])
245dnl Prevent unreasonable values.
246if test "$minimum_kernel" = yes || test "$minimum_kernel" = no; then
247 # Better nothing than this.
248 minimum_kernel=""
249else
250 if test "$minimum_kernel" = current; then
251 minimum_kernel=`uname -r 2>/dev/null` || minimum_kernel=
252 fi
253fi
254
255dnl For the development we sometimes want gcc to issue even more warnings.
256dnl This is not the default since many of the extra warnings are not
257dnl appropriate.
258AC_ARG_ENABLE([all-warnings],
259 AC_HELP_STRING([--enable-all-warnings],
260 [enable all useful warnings gcc can issue]),
261 [all_warnings=$enableval],
262 [])
263AC_SUBST(all_warnings)
264
265AC_ARG_ENABLE([werror],
266 AC_HELP_STRING([--disable-werror],
267 [do not build with -Werror]),
268 [enable_werror=$enableval],
269 [enable_werror=yes])
270AC_SUBST(enable_werror)
271
272AC_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])
277
278AC_ARG_ENABLE([nss-crypt],
279 AC_HELP_STRING([--enable-nss-crypt],
280 [enable libcrypt to use nss]),
281 [nss_crypt=$enableval],
282 [nss_crypt=no])
283if 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])
287 fi
288 old_CFLAGS="$CFLAGS"
289 CFLAGS="$CFLAGS $nss_includes"
290 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
291#include <hasht.h>
292#include <nsslowhash.h>
293void f (void) { NSSLOW_Init (); }])],
294 libc_cv_nss_crypt=yes,
295 AC_MSG_ERROR([
296cannot find NSS headers with lowlevel hash function interfaces]))
297 old_LIBS="$LIBS"
298 LIBS="$LIBS -lfreebl3"
299 AC_LINK_IFELSE([AC_LANG_PROGRAM([typedef int PRBool;
300#include <hasht.h>
301#include <nsslowhash.h>],
302 [NSSLOW_Init();])],
303 libc_cv_nss_crypt=yes,
304 AC_MSG_ERROR([
305cannot link program using lowlevel NSS hash functions]))
306 CFLAGS="$old_CFLAGS"
307 LIBS="$old_LIBS"
308else
309 libc_cv_nss_crypt=no
310fi
311AC_SUBST(libc_cv_nss_crypt)
312
313
314AC_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])
319AC_SUBST(link_obsolete_rpc)
320
321if test "$link_obsolete_rpc" = yes; then
322 AC_DEFINE(LINK_OBSOLETE_RPC)
323fi
324
325AC_ARG_ENABLE([systemtap],
326 [AS_HELP_STRING([--enable-systemtap],
327 [enable systemtap static probe points @<:@default=no@:>@])],
328 [systemtap=$enableval],
329 [systemtap=no])
330if test "x$systemtap" != xno; then
331 AC_CACHE_CHECK([for systemtap static probe support], libc_cv_sdt, [dnl
332 old_CFLAGS="$CFLAGS"
333 CFLAGS="-std=gnu99 $CFLAGS"
334 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include <sys/sdt.h>
335void foo (int i, void *p)
336{
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])
345 fi
346fi
347
348AC_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])
353AC_SUBST(build_nscd)
354
355# Note the use of $use_nscd is near the bottom of the file.
356AC_ARG_ENABLE([nscd],
357 [AS_HELP_STRING([--disable-nscd],
358 [library functions will not contact the nscd daemon])],
359 [use_nscd=$enableval],
360 [use_nscd=yes])
361
362AC_ARG_ENABLE([pt_chown],
363 [AS_HELP_STRING([--enable-pt_chown],
364 [Enable building and installing pt_chown])],
365 [build_pt_chown=$enableval],
366 [build_pt_chown=no])
367AC_SUBST(build_pt_chown)
368if test "$build_pt_chown" = yes; then
369 AC_DEFINE(HAVE_PT_CHOWN)
370fi
371
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.
376case "$host_os" in
377linux*)
378 ;;
379gnu*)
380 host_os=`echo $host_os | sed -e 's/gnu/gnu-gnu/'`
381 ;;
382esac
383
384AC_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])
389
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.
393config_machine=$host_cpu config_vendor=$host_vendor config_os=$host_os
394
395# Don't allow vendor == "unknown"
396test "$config_vendor" = unknown && config_vendor=
397config_os="`echo $config_os | sed 's/^unknown-//'`"
398
399# Some configurations imply other options.
400elf=yes
401
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.
405machine=$config_machine
406vendor=$config_vendor
407os=$config_os
408base_os=''
409
410submachine=
411AC_ARG_WITH([cpu],
412 AS_HELP_STRING([--with-cpu=CPU], [select code for CPU variant]),
413 [dnl
414 case "$withval" in
415 yes|'') AC_MSG_ERROR([--with-cpu requires an argument]) ;;
416 no) ;;
417 *) submachine="$withval" ;;
418 esac
419])
420
421# An preconfigure script can set this when it wants to disable the sanity
422# check below.
423libc_config_ok=no
424
425dnl Let sysdeps/*/preconfigure act here, like they can in add-ons.
426LIBC_PRECONFIGURE([$srcdir], [for sysdeps])
427
428dnl Having this here, though empty, makes sure that if add-ons' fragments
429dnl do AC_CONFIG_SUBDIRS([some-dir]), which just sets $subdirs, then
430dnl our AC_OUTPUT will actually use it.
431AC_CONFIG_SUBDIRS()
432
433case "$enable_add_ons" in
434''|no) add_ons= ;;
435yes|'*')
436 add_ons=`cd $srcdir && ls -d 2> /dev/null */configure */sysdeps |
437 sed 's@/[[^/]]*$@@' | sort | uniq`
438 add_ons_automatic=yes
439 ;;
440*) add_ons=`echo "$enable_add_ons" | sed 's/,/ /g'`
441 add_ons_automatic=no ;;
442esac
443
444configured_add_ons=
445add_ons_sfx=
446add_ons_pfx=
447if test x"$add_ons" != x; then
448 for f in $add_ons; do
449 # Some sanity checks
450 case "$f" in
451 crypt)
452 AC_MSG_ERROR([
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.])
457 ;;
458 localedata)
459 AC_MSG_ERROR([
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.])
464 ;;
465 esac
466 done
467
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.
473 use_add_ons=
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
478 /*)
479 libc_add_on_srcdir=$libc_add_on
480 ;;
481 *)
482 test -d "$srcdir/$libc_add_on" || {
483 if test -d "$libc_add_on"; then
484 libc_add_on="`pwd`/$libc_add_on"
485 else
486 AC_MSG_ERROR(add-on directory \"$libc_add_on\" does not exist)
487 fi
488 }
489 libc_add_on_srcdir=$srcdir/$libc_add_on
490 ;;
491 esac
492
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
499 libc_add_on_subdirs=
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)
505 fi
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" ;;
510 esac
511 case "$d" in
512 .)
513 d="${libc_add_on_canonical:-$libc_add_on}"
514 ;;
515 /*)
516 subdir_srcdir="$d"
517 ;;
518 *)
519 subdir_srcdir="$subdir_srcdir/$d"
520 ;;
521 esac
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"
526 done
527 for d in $libc_add_on_config_subdirs; do
528 case "$d" in
529 /*) AC_MSG_ERROR(dnl
530fragment uses absolute path in \$libc_add_on_config_subdirs) ;;
531 esac
532 if test ! -d "$libc_add_on_srcdir/$d"; then
533 AC_MSG_ERROR(fragment wants to configure missing directory $d)
534 fi
535 case "$libc_add_on" in
536 /*) AC_MSG_ERROR(dnl
537relative path required for add-on using \$libc_add_on_config_subdirs) ;;
538 esac
539 subdirs="$subdirs $libc_add_on/$d"
540 done
541 }
542 fi
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"
549 fi
550 done
551 # Use echo to strip excess whitespace.
552 add_ons="`echo $use_add_ons`"
553fi
554AC_SUBST(add_ons)
555AC_SUBST(add_on_subdirs)
556
557
558###
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
561###
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
564### platforms.
565###
566if test -z "$enable_hacker_mode" && test x"$libc_config_ok" != xyes; then
567 case "$machine-$host_os" in
568 *-linux* | *-gnu*)
569 ;;
570 *)
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"
577 exit 1
578 ;;
579 esac
580fi
581
582# Set base_machine if not set by a preconfigure fragment.
583test -n "$base_machine" || base_machine=$machine
584AC_SUBST(base_machine)
585
586# For the multi-arch option we need support in the assembler & linker.
587AC_CACHE_CHECK([for assembler and linker STT_GNU_IFUNC support],
588 libc_cv_ld_gnu_indirect_function, [dnl
589cat > conftest.S <<EOF
590.type foo,%gnu_indirect_function
591foo:
592.globl _start
593_start:
594.globl __start
595__start:
596.data
597#ifdef _LP64
598.quad foo
599#else
600.long foo
601#endif
602EOF
603libc_cv_ld_gnu_indirect_function=no
604if ${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
611 }
612fi
613rm -f conftest*])
614
615AC_MSG_CHECKING(whether .text pseudo-op must be used)
616AC_CACHE_VAL(libc_cv_dot_text, [dnl
617cat > conftest.s <<EOF
618.text
619EOF
620libc_cv_dot_text=
621if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
622 libc_cv_dot_text=.text
623fi
624rm -f conftest*])
625if test -z "$libc_cv_dot_text"; then
626 AC_MSG_RESULT(no)
627else
628 AC_MSG_RESULT(yes)
629fi
630
631if 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])
634 else
635 multi_arch=no
636 fi
637fi
638multi_arch_d=
639if test x"$multi_arch" != xno; then
640 multi_arch_d=/multiarch
641fi
642
643# Compute the list of sysdep directories for this configuration.
644# This can take a while to compute.
645sysdep_dir=$srcdir/sysdeps
646AC_MSG_CHECKING(sysdep dirs)
647dnl We need to use [ and ] for other purposes for a while now.
648changequote(,)dnl
649# Make sco3.2v4 become sco3.2.4 and sunos4.1.1_U1 become sunos4.1.1.U1.
650os="`echo $os | sed 's/\([0-9A-Z]\)[v_]\([0-9A-Z]\)/\1.\2/g'`"
651
652test "x$base_os" != x || case "$os" in
653gnu*)
654 base_os=mach/hurd ;;
655linux*)
656 base_os=unix/sysv ;;
657esac
658
659# For sunos4.1.1, try sunos4.1.1, then sunos4.1, then sunos4, then sunos.
660tail=$os
661ostry=$os
662while o=`echo $tail | sed 's/\.[^.]*$//'`; test $o != $tail; do
663 ostry="$ostry /$o"
664 tail=$o
665done
666o=`echo $tail | sed 's/[0-9]*$//'`
667if test $o != $tail; then
668 ostry="$ostry /$o"
669fi
670# For linux-gnu, try linux-gnu, then linux.
671o=`echo $tail | sed 's/-.*$//'`
672if test $o != $tail; then
673 ostry="$ostry /$o"
674fi
675
676# For unix/sysv/sysv4, try unix/sysv/sysv4, then unix/sysv, then unix.
677base=
678tail=$base_os
679while b=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$b"; do
680 set $b
681 base="$base /$1"
682 tail="$2"
683done
684
685# For sparc/sparc32, try sparc/sparc32 and then sparc.
686mach=
687tail=$machine${submachine:+/$submachine}
688while m=`echo $tail | sed 's@^\(.*\)/\([^/]*\)$@& \1@'`; test -n "$m"; do
689 set $m
690 # Prepend the machine's FPU directory unless --without-fp.
691 if test "$with_fp" = yes; then
692 maybe_fpu=/fpu
693 else
694 maybe_fpu=/nofpu
695 fi
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"
700 done
701 done
702 tail="$2"
703done
704
705dnl We are done with glob and regexp uses of [ and ]; return to autoconf.
706changequote([,])dnl
707
708# Find what sysdep directories exist.
709sysnames_add_ons=
710sysnames=
711for 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}/"
723 case "$d" in
724 /*) try_srcdir= ;;
725 esac
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
733 case x${m0:-$m} in
734 x*/$submachine) submachine_used=t ;;
735 esac
736 if test -n "$d"; then
737 case "$sysnames_add_ons" in
738 *" $d "*) ;;
739 *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
740 esac
741 fi
742 fi
743 fi
744 done
745 done
746 done
747 done
748 done
749 done
750done
751
752# If the assembler supports gnu_indirect_function symbol type and the
753# architecture supports multi-arch, we enable multi-arch by default.
754case $sysnames_add_ons$sysnames in
755*"$multi_arch_d"*)
756 ;;
757*)
758 test x"$multi_arch" = xdefault && multi_arch=no
759 ;;
760esac
761if test x"$multi_arch" != xno; then
762 AC_DEFINE(USE_MULTIARCH)
763fi
764AC_SUBST(multi_arch)
765
766if test -z "$os_used" && test "$os" != none; then
767 AC_MSG_ERROR(Operating system $os is not supported.)
768fi
769if test -z "$machine_used" && test "$machine" != none; then
770 AC_MSG_ERROR(The $machine is not supported.)
771fi
772if test -z "$submachine_used" && test -n "$submachine"; then
773 AC_MSG_ERROR(The $submachine subspecies of $host_cpu is not supported.)
774fi
775AC_SUBST(submachine)
776
777# We have now validated the configuration.
778
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).
781set $sysnames
782names=
783while test $# -gt 0; do
784 name=$1
785 shift
786
787 case " $names " in *" $name "*)
788 # Already in the list.
789 continue
790 esac
791
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
794
795 name_base=`echo $name | sed -e 's@\(.*sysdeps\)/.*@\1@'`
796
797 case $name in
798 /*) xsrcdir= ;;
799 *) xsrcdir=$srcdir/ ;;
800 esac
801 test -n "$enable_debug_configure" &&
802 echo "[DEBUG]: name/Implies $xsrcdir$name/Implies" >&2
803
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
811 found=no
812 if test -d $xsrcdir$name_base/$x; then
813 eval "${implies_type}=\"\$${implies_type} \$name_base/\$x\""
814 found=yes
815 fi
816 for d in $add_ons_pfx ''; do
817 try="${d}sysdeps/$x"
818 case $d in
819 /*) try_srcdir= ;;
820 *) try_srcdir=$srcdir/ ;;
821 esac
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;
825 then
826 eval "${implies_type}=\"\$${implies_type} \$try\""
827 found=yes
828 case "$sysnames_add_ons" in
829 *" $d "*) ;;
830 *|'') sysnames_add_ons="$sysnames_add_ons $d" ;;
831 esac
832 fi
833 done
834 if test $found = no; then
835 AC_MSG_WARN($name/$implies_file specifies nonexistent $x)
836 fi
837 done
838 fi
839 done
840
841 # Add NAME to the list of names.
842 names="$names $name"
843
844 # Find the parent of NAME, using the empty string if it has none.
845changequote(,)dnl
846 parent="`echo $name | sed -n -e 's=/[^/]*$==' -e '/sysdeps$/q' -e p`"
847changequote([,])dnl
848
849 test -n "$enable_debug_configure" &&
850 echo "[DEBUG]: $name Implies='$Implies' rest='$*' parent='$parent' \
851Implies_before='$Implies_before' Implies_after='$Implies_after'" >&2
852
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 $*)
859 # after sysv4).
860 sysnames="`echo $Implies $* $Implies_before $parent $Implies_after`"
861 test -n "$sysnames" && set $sysnames
862done
863
864# Add the default directories.
865default_sysnames="sysdeps/generic"
866sysnames="$names $default_sysnames"
867AC_SUBST(sysnames)
868# The other names were emitted during the scan.
869AC_MSG_RESULT($default_sysnames)
870
871# Collect the list of add-ons that supply partial sysdeps trees.
872sysdeps_add_ons=
873for add_on in $add_ons; do
874 case "$add_on" in
875 /*) xsrcdir= ;;
876 *) xsrcdir="$srcdir/" ;;
877 esac
878
879 test -d "$xsrcdir$add_on/sysdeps" || {
880 case "$configured_add_ons " in
881 *" $add_on "*) ;;
882 *|'')
883 AC_MSG_ERROR(add-on $add_on has no configure fragment or sysdeps tree)
884 ;;
885 esac
886 continue
887 }
888
889 sysdeps_add_ons="$sysdeps_add_ons $add_on"
890 case "$sysnames_add_ons" in
891 *" $add_on/ "*) ;;
892 *|'')
893 AC_MSG_WARN(add-on $add_on contributed no sysdeps directories)
894 continue ;;
895 esac
896
897 found=no
898 for d in $sysnames; do
899 case "$d" in
900 $add_on/sysdeps/*) ;;
901 *) continue ;;
902 esac
903 (cd "$xsrcdir$d" && for f in *[[!~]]; do
904 case "$f" in
905 sys|bits)
906 for ff in $f/*.h; do
907 test -d "$ff" || { test -e "$ff" && exit 88; }
908 done
909 ;;
910 *)
911 test -d "$f" || { test -e "$f" && exit 88; }
912 ;;
913 esac
914 done)
915 if test $? -eq 88; then
916 found=yes
917 break
918 fi
919 done
920 if test $found = no; then
921 AC_MSG_WARN(add-on $add_on contributed no useful sysdeps directories)
922 fi
923done
924AC_SUBST(sysdeps_add_ons)
925
926
927### Locate tools.
928
929AC_PROG_INSTALL
930if 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'
933fi
934AC_PROG_LN_S
935
936LIBC_PROG_BINUTILS
937
938# Accept binutils 2.22 or newer.
939AC_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")
943AC_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")
947
948# These programs are version sensitive.
949AC_CHECK_TOOL_PREFIX
950AC_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")
953
954AC_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")
958AC_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")
962AC_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")
966AC_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")
969
970AC_CACHE_CHECK([if $CC is sufficient to build libc], libc_cv_compiler_ok, [
971AC_TRY_COMPILE([], [
972#if !defined __GNUC__ || __GNUC__ < 4 || (__GNUC__ == 4 && __GNUC_MINOR__ < 6)
973#error insufficient compiler
974#endif],
975 [libc_cv_compiler_ok=yes],
976 [libc_cv_compiler_ok=no])])
977AS_IF([test $libc_cv_compiler_ok != yes],
978 [critic_missing="$critic_missing compiler"])
979
980AC_CHECK_TOOL(NM, nm, false)
981
982if test "x$maintainer" = "xyes"; then
983 AC_CHECK_PROGS(AUTOCONF, autoconf, no)
984 case "x$AUTOCONF" in
985 xno|x|x:) AUTOCONF=no ;;
986 *)
987 AC_CACHE_CHECK(dnl
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
991 else
992 libc_cv_autoconf_works=no
993 fi])
994 test $libc_cv_autoconf_works = yes || AUTOCONF=no
995 ;;
996 esac
997 if test "x$AUTOCONF" = xno; then
998 aux_missing="$aux_missing autoconf"
999 fi
1000else
1001 AUTOCONF=no
1002fi
1003
1004test -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.])
1007
1008test -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.])
1012
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.)
1016if 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"
1021 done
1022 SYSINCLUDES="$SYSINCLUDES \
1023-isystem `echo $sysheaders | sed 's/:/ -isystem /g'`"
1024 if test -n "$CXX"; then
1025 CXX_SYSINCLUDES=
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"
1030 done
1031 fi
1032fi
1033AC_SUBST(SYSINCLUDES)
1034AC_SUBST(CXX_SYSINCLUDES)
1035
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
1039# is true:
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
1043AC_MSG_CHECKING(LD_LIBRARY_PATH variable)
1044changequote(,)dnl
1045case ${LD_LIBRARY_PATH} in
1046 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
1047 ld_library_path_setting="contains current directory"
1048 ;;
1049 *)
1050 ld_library_path_setting="ok"
1051 ;;
1052esac
1053changequote([,])dnl
1054AC_MSG_RESULT($ld_library_path_setting)
1055if test "$ld_library_path_setting" != "ok"; then
1056AC_MSG_ERROR([
1057*** LD_LIBRARY_PATH shouldn't contain the current directory when
1058*** building glibc. Please change the environment variable
1059*** and run configure again.])
1060fi
1061
1062AC_CACHE_CHECK(whether GCC supports -static-libgcc, libc_cv_gcc_static_libgcc, [dnl
1063if $CC -v -static-libgcc 2>&1 | grep 'unrecognized option.*static-libgcc' >/dev/null; then
1064 libc_cv_gcc_static_libgcc=
1065else
1066 libc_cv_gcc_static_libgcc=-static-libgcc
1067fi])
1068AC_SUBST(libc_cv_gcc_static_libgcc)
1069
1070AC_PATH_PROG(BASH_SHELL, bash, no)
1071
1072AC_PATH_PROG(PERL, perl, no)
1073if test "$PERL" != no &&
1074 (eval `$PERL -V:apiversion`; test `expr "$apiversion" \< 5` -ne 0); then
1075 PERL=no
1076fi
1077AC_PATH_PROG(INSTALL_INFO, install-info, no,
1078 $PATH:/usr/local/bin:/usr/local/sbin:/usr/bin:/usr/sbin:/bin:/sbin)
1079AC_CHECK_PROG_VER(BISON, bison, --version,
1080 [bison (GNU Bison) \([0-9]*\.[0-9.]*\)],
1081 [2.7*|[3-9].*|[1-9][0-9]*],
1082 BISON=no)
1083
1084AC_CACHE_CHECK(for libc-friendly stddef.h, libc_cv_friendly_stddef, [dnl
1085AC_TRY_COMPILE(dnl
1086[#define __need_size_t
1087#define __need_wchar_t
1088#include <stddef.h>
1089#define __need_NULL
1090#include <stddef.h>], [size_t size; wchar_t wchar;
1091#ifdef offsetof
1092#error stddef.h ignored __need_*
1093#endif
1094if (&size == NULL || &wchar == NULL) abort ();],
1095 libc_cv_friendly_stddef=yes,
1096 libc_cv_friendly_stddef=no)])
1097if test $libc_cv_friendly_stddef = yes; then
1098 config_vars="$config_vars
1099override stddef.h = # The installed <stddef.h> seems to be libc-friendly."
1100fi
1101
1102AC_CACHE_CHECK(whether we need to use -P to assemble .S files,
1103 libc_cv_need_minus_P, [dnl
1104cat > conftest.S <<EOF
1105#include "confdefs.h"
1106/* Nothing whatsoever. */
1107EOF
1108if AC_TRY_COMMAND(${CC-cc} $CPPFLAGS $ASFLAGS -c conftest.S 1>&AS_MESSAGE_LOG_FD); then
1109 libc_cv_need_minus_P=no
1110else
1111 libc_cv_need_minus_P=yes
1112fi
1113rm -f conftest*])
1114if test $libc_cv_need_minus_P = yes; then
1115 config_vars="$config_vars
1116asm-CPPFLAGS = -P # The assembler can't grok cpp's # line directives."
1117fi
1118
1119AC_CACHE_CHECK(for .set assembler directive, libc_cv_asm_set_directive, [dnl
1120cat > conftest.s <<EOF
1121${libc_cv_dot_text}
1122foo:
1123.set glibc_conftest_frobozz,foo
1124.globl glibc_conftest_frobozz
1125EOF
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.
1128cat > conftest1.c <<\EOF
1129extern int glibc_conftest_frobozz;
1130void _start() { glibc_conftest_frobozz = 1; }
1131EOF
1132if ${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
1136else
1137 libc_cv_asm_set_directive=no
1138fi
1139rm -f conftest*])
1140if test $libc_cv_asm_set_directive = yes; then
1141 AC_DEFINE(HAVE_ASM_SET_DIRECTIVE)
1142fi
1143
1144AC_CACHE_CHECK(for assembler gnu_unique_object symbol type,
1145 libc_cv_asm_unique_object, [dnl
1146cat > conftest.s <<EOF
1147${libc_cv_dot_text}
1148_sym:
1149.type _sym, %gnu_unique_object
1150EOF
1151if ${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD 2>&AS_MESSAGE_LOG_FD; then
1152 libc_cv_asm_unique_object=yes
1153else
1154 libc_cv_asm_unique_object=no
1155fi
1156rm -f conftest*])
1157if test $libc_cv_asm_unique_object = yes; then
1158 AC_DEFINE(HAVE_ASM_UNIQUE_OBJECT)
1159fi
1160
1161AC_CACHE_CHECK(for .previous assembler directive,
1162 libc_cv_asm_previous_directive, [dnl
1163cat > conftest.s <<EOF
1164.section foo_section
1165.previous
1166EOF
1167if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1168 libc_cv_asm_previous_directive=yes
1169else
1170 libc_cv_asm_previous_directive=no
1171fi
1172rm -f conftest*])
1173if test $libc_cv_asm_previous_directive = yes; then
1174 AC_DEFINE(HAVE_ASM_PREVIOUS_DIRECTIVE)
1175else
1176 AC_CACHE_CHECK(for .popsection assembler directive,
1177 libc_cv_asm_popsection_directive, [dnl
1178 cat > conftest.s <<EOF
1179.pushsection foo_section
1180.popsection
1181EOF
1182 if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1183 libc_cv_asm_popsection_directive=yes
1184 else
1185 libc_cv_asm_popsection_directive=no
1186 fi
1187 rm -f conftest*])
1188 if test $libc_cv_asm_popsection_directive = yes; then
1189 AC_DEFINE(HAVE_ASM_POPSECTION_DIRECTIVE)
1190 fi
1191fi
1192AC_CACHE_CHECK(for .protected and .hidden assembler directive,
1193 libc_cv_asm_protected_directive, [dnl
1194cat > conftest.s <<EOF
1195.protected foo
1196foo:
1197.hidden bar
1198bar:
1199EOF
1200if AC_TRY_COMMAND(${CC-cc} -c $ASFLAGS conftest.s 1>&AS_MESSAGE_LOG_FD); then
1201 libc_cv_asm_protected_directive=yes
1202else
1203 AC_MSG_ERROR(assembler support for symbol visibility is required)
1204fi
1205rm -f conftest*])
1206
1207if 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;
1213EOF
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
1219 fi
1220 fi
1221 fi
1222 rm -f conftest.{c,s}
1223 ])
1224 if test $libc_cv_visibility_attribute != yes; then
1225 AC_MSG_ERROR(compiler support for visibility attribute is required)
1226 fi
1227fi
1228
1229if 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;
1234EOF
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
1238 extern int bar;
1239 int main (void) { return bar; }
1240EOF
1241 if AC_TRY_COMMAND(${CC-cc} -nostdlib -nostartfiles conftest.c -o conftest conftest.so); then
1242 libc_cv_protected_data=yes
1243 fi
1244 fi
1245 rm -f conftest.*
1246 ])
1247else
1248 libc_cv_protected_data=no
1249fi
1250AC_SUBST(libc_cv_protected_data)
1251
1252if 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
1256 int foo (int x);
1257 int bar (int x) __asm__ ("foo") __attribute__ ((visibility ("hidden")));
1258 int bar (int x) { return x; }
1259EOF
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
1262changequote(,)dnl
1263 if grep '\.hidden[ _]foo' conftest.s >/dev/null; then
1264changequote([,])dnl
1265 libc_cv_broken_visibility_attribute=no
1266 fi
1267 fi
1268 rm -f conftest.c conftest.s
1269 ])
1270 if test $libc_cv_broken_visibility_attribute = yes; then
1271 AC_MSG_ERROR(working compiler support for visibility attribute is required)
1272 fi
1273fi
1274
1275AC_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")));
1281 extern int dfoo;
1282 extern __typeof (dfoo) dfoo __asm ("abccb");
1283 int dfoo = 1;
1284EOF
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
1290 fi
1291 fi
1292 rm -f conftest.c conftest.s
1293 ])
1294if test $libc_cv_broken_alias_attribute = yes; then
1295 AC_MSG_ERROR(working alias attribute support required)
1296fi
1297
1298if 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
1306 fi
1307 rm -f conftest.c conftest.so
1308 ])
1309 if test $libc_cv_have_sdata_section = yes; then
1310 AC_DEFINE(HAVE_SDATA_SECTION)
1311 fi
1312fi
1313
1314AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
1315 libc_cv_initfini_array, [dnl
1316LIBC_TRY_LINK_STATIC([
1317int foo (void) { return 1; }
1318int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;
1319],
1320 [if $READELF -S conftest | fgrep INIT_ARRAY > /dev/null; then
1321 libc_cv_initfini_array=yes
1322 else
1323 libc_cv_initfini_array=no
1324 fi],
1325 [libc_cv_initfini_array=no])
1326])
1327if test $libc_cv_initfini_array != yes; then
1328 AC_MSG_ERROR([Need linker with .init_array/.fini_array support.])
1329fi
1330
1331AC_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 (""); }
1337],
1338 [dnl
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)
1344 seen@<:@$2@:>@ = 1
1345 stub@<:@$2@:>@ = size == align * 2
1346 }
1347 END {
1348 ctors_ok = !seen@<:@".ctors"@:>@ || stub@<:@".ctors"@:>@
1349 dtors_ok = !seen@<:@".dtors"@:>@ || stub@<:@".dtors"@:>@
1350 exit ((ctors_ok && dtors_ok) ? 0 : 1)
1351 }
1352 '], [libc_cv_ctors_header=no])
1353 ], [dnl
1354 AC_MSG_ERROR([missing __attribute__ ((constructor)) support??])
1355 ])
1356])
1357if test $libc_cv_ctors_header = no; then
1358 AC_DEFINE(NO_CTORS_DTORS_SECTIONS)
1359fi
1360
1361AC_CACHE_CHECK(for libunwind-support in compiler,
1362 libc_cv_cc_with_libunwind, [
1363 cat > conftest.c <<EOF
1364int main (void) { return 0; }
1365EOF
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
1369 else
1370 libc_cv_cc_with_libunwind=no
1371 fi
1372 rm -f conftest*])
1373AC_SUBST(libc_cv_cc_with_libunwind)
1374if test $libc_cv_cc_with_libunwind = yes; then
1375 AC_DEFINE(HAVE_CC_WITH_LIBUNWIND)
1376fi
1377
1378LIBC_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)])
1381
1382LIBC_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)])
1385
1386LIBC_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)])
1389
1390AC_CACHE_CHECK(for -Bgroup option,
1391 libc_cv_Bgroup, [dnl
1392cat > conftest.c <<EOF
1393int _start (void) { return 42; }
1394EOF
1395if 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])
1398then
1399 libc_cv_Bgroup=yes
1400else
1401 libc_cv_Bgroup=no
1402fi
1403rm -f conftest*])
1404AC_SUBST(libc_cv_Bgroup)
1405
1406ASFLAGS_config=
1407AC_CACHE_CHECK(whether --noexecstack is desirable for .S files,
1408 libc_cv_as_noexecstack, [dnl
1409cat > conftest.c <<EOF
1410void foo (void) { }
1411EOF
1412if 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])
1417then
1418 libc_cv_as_noexecstack=yes
1419else
1420 libc_cv_as_noexecstack=no
1421fi
1422rm -f conftest*])
1423if test $libc_cv_as_noexecstack = yes; then
1424 ASFLAGS_config="$ASFLAGS_config -Wa,--noexecstack"
1425fi
1426AC_SUBST(ASFLAGS_config)
1427
1428AC_CACHE_CHECK(for -z combreloc,
1429 libc_cv_z_combreloc, [dnl
1430cat > conftest.c <<EOF
1431extern int bar (int);
1432extern int mumble;
1433int foo (void) { return bar (mumble); }
1434EOF
1435if 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])
1439then
1440dnl The following test is a bit weak. We must use a tool which can test
1441dnl cross-platform since the gcc used can be a cross compiler. Without
1442dnl introducing new options this is not easily doable. Instead use a tool
1443dnl which always is cross-platform: readelf. To detect whether -z combreloc
1444dnl 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
1447 else
1448 libc_cv_z_combreloc=no
1449 fi
1450else
1451 libc_cv_z_combreloc=no
1452fi
1453rm -f conftest*])
1454if test "$libc_cv_z_combreloc" = yes; then
1455 AC_DEFINE(HAVE_Z_COMBRELOC)
1456fi
1457AC_SUBST(libc_cv_z_combreloc)
1458
1459LIBC_LINKER_FEATURE([-z execstack], [-Wl,-z,execstack],
1460 [libc_cv_z_execstack=yes], [libc_cv_z_execstack=no])
1461AC_SUBST(libc_cv_z_execstack)
1462
1463AC_CACHE_CHECK(for -fpie, libc_cv_fpie, [dnl
1464LIBC_TRY_CC_OPTION([-fpie], [libc_cv_fpie=yes], [libc_cv_fpie=no])
1465])
1466
1467AC_SUBST(libc_cv_fpie)
1468
1469AC_CACHE_CHECK(for --hash-style option,
1470 libc_cv_hashstyle, [dnl
1471cat > conftest.c <<EOF
1472int _start (void) { return 42; }
1473EOF
1474if 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])
1477then
1478 libc_cv_hashstyle=yes
1479else
1480 libc_cv_hashstyle=no
1481fi
1482rm -f conftest*])
1483AC_SUBST(libc_cv_hashstyle)
1484
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.
1488if 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
1494 .balign 4
1495 .long 4,4,9
1496 .string "GNU"
1497 .string "foo"
1498 .section .note.b,"a",%note
1499 .balign 4
1500 .long 4,4,9
1501 .string "GNU"
1502 .string "bar"
1503EOF
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 \
1507 ['${x;p;}
1508 s/^ *\[ *[1-9][0-9]*\] *\([^ ][^ ]*\) *\([^ ][^ ]*\) .*$/\2 \1/
1509 t a
1510 b
1511 : a
1512 H']`
1513 then
1514 libc_seen_a=no libc_seen_b=no
1515 set -- $ac_try
1516 while test $# -ge 2 -a "$1" = NOTE; do
1517 case "$2" in
1518 .note.a) libc_seen_a=yes ;;
1519 .note.b) libc_seen_b=yes ;;
1520 esac
1521 shift 2
1522 done
1523 case "$libc_seen_a$libc_seen_b" in
1524 yesyes)
1525 libc_cv_use_default_link=yes
1526 ;;
1527 *)
1528 echo >&AS_MESSAGE_LOG_FD "\
1529$libc_seen_a$libc_seen_b from:
1530$ac_try"
1531 ;;
1532 esac
1533 fi
1534 rm -f conftest*])
1535 use_default_link=$libc_cv_use_default_link
1536fi
1537
1538AC_CACHE_CHECK(linker output format, libc_cv_output_format, [dnl
1539if libc_cv_output_format=`
1540${CC-cc} -nostartfiles -nostdlib -Wl,--print-output-format 2>&AS_MESSAGE_LOG_FD`
1541then
1542 :
1543else
1544 libc_cv_output_format=
1545fi
1546test -n "$libc_cv_output_format" || libc_cv_output_format=unknown])
1547AC_SUBST(libc_cv_output_format)
1548
1549AC_CACHE_CHECK(for -fno-toplevel-reorder -fno-section-anchors, libc_cv_fno_toplevel_reorder, [dnl
1550cat > conftest.c <<EOF
1551int foo;
1552EOF
1553if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -fno-toplevel-reorder -fno-section-anchors
1554 conftest.c 1>&AS_MESSAGE_LOG_FD])
1555then
1556 libc_cv_fno_toplevel_reorder=yes
1557else
1558 libc_cv_fno_toplevel_reorder=no
1559fi
1560rm -f conftest*])
1561if test $libc_cv_fno_toplevel_reorder = yes; then
1562 fno_unit_at_a_time="-fno-toplevel-reorder -fno-section-anchors"
1563else
1564 fno_unit_at_a_time=-fno-unit-at-a-time
1565fi
1566AC_SUBST(fno_unit_at_a_time)
1567
1568AC_CACHE_CHECK(for -fstack-protector, libc_cv_ssp, [dnl
1569LIBC_TRY_CC_OPTION([$CFLAGS $CPPFLAGS -Werror -fstack-protector],
1570 [libc_cv_ssp=yes],
1571 [libc_cv_ssp=no])
1572])
1573AC_SUBST(libc_cv_ssp)
1574
1575AC_CACHE_CHECK(for -fgnu89-inline, libc_cv_gnu89_inline, [dnl
1576cat > conftest.c <<EOF
1577int foo;
1578#ifdef __GNUC_GNU_INLINE__
1579main () { return 0;}
1580#else
1581#error
1582#endif
1583EOF
1584if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -std=gnu99 -fgnu89-inline
1585 -o conftest.s conftest.c 1>&AS_MESSAGE_LOG_FD])
1586then
1587 libc_cv_gnu89_inline=yes
1588else
1589 libc_cv_gnu89_inline=no
1590fi
1591rm -f conftest*])
1592if test $libc_cv_gnu89_inline = yes; then
1593 gnu89_inline=-fgnu89-inline
1594else
1595 gnu89_inline=
1596fi
1597AC_SUBST(gnu89_inline)
1598
1599AC_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;
1604EOF
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
1608 else
1609 libc_cv_have_section_quotes=no
1610 fi
1611 else
1612 libc_cv_have_section_quotes=unknown
1613 fi
1614 rm -f conftest.{c,s}
1615 ])
1616if test $libc_cv_have_section_quotes = yes; then
1617 AC_DEFINE(HAVE_SECTION_QUOTES)
1618fi
1619
1620AC_CACHE_CHECK(for assembler .weak directive, libc_cv_asm_weak_directive,
1621 [dnl
1622cat > conftest.s <<EOF
1623${libc_cv_dot_text}
1624.globl foo
1625foo:
1626.weak foo
1627.weak bar; bar = foo
1628EOF
1629if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
1630 libc_cv_asm_weak_directive=yes
1631else
1632 libc_cv_asm_weak_directive=no
1633fi
1634rm -f conftest*])
1635
1636if test $libc_cv_asm_weak_directive = no; then
1637 AC_CACHE_CHECK(for assembler .weakext directive,
1638 libc_cv_asm_weakext_directive,
1639 [dnl
1640cat > conftest.s <<EOF
1641${libc_cv_dot_text}
1642.globl foo
1643foo:
1644.weakext bar foo
1645.weakext baz
1646.globl baz
1647baz:
1648EOF
1649 if AC_TRY_COMMAND(${CC-cc} $ASFLAGS -c conftest.s 1>&AS_MESSAGE_LOG_FD); then
1650 libc_cv_asm_weakext_directive=yes
1651 else
1652 libc_cv_asm_weakext_directive=no
1653 fi
1654 rm -f conftest*])
1655
1656fi # no .weak
1657
1658if test $libc_cv_asm_weak_directive = yes; then
1659 AC_DEFINE(HAVE_ASM_WEAK_DIRECTIVE)
1660elif test $libc_cv_asm_weakext_directive = yes; then
1661 AC_DEFINE(HAVE_ASM_WEAKEXT_DIRECTIVE)
1662fi
1663
1664AC_CACHE_CHECK(for ld --no-whole-archive, libc_cv_ld_no_whole_archive, [dnl
1665cat > conftest.c <<\EOF
1666_start () {}
1667int __eh_pc;
1668__throw () {}
1669EOF
1670dnl No \ in command here because it ends up inside ''.
1671if 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
1675else
1676 libc_cv_ld_no_whole_archive=no
1677fi
1678rm -f conftest*])
1679if test $libc_cv_ld_no_whole_archive = no; then
1680 AC_MSG_ERROR([support for --no-whole-archive is needed])
1681fi
1682
1683AC_CACHE_CHECK(for gcc -fexceptions, libc_cv_gcc_exceptions, [dnl
1684cat > conftest.c <<\EOF
1685_start () {}
1686int __eh_pc;
1687__throw () {}
1688EOF
1689dnl No \ in command here because it ends up inside ''.
1690if 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
1694else
1695 libc_cv_gcc_exceptions=no
1696fi
1697rm -f conftest*])
1698if test $libc_cv_gcc_exceptions = yes; then
1699 exceptions=-fexceptions
1700fi
1701AC_SUBST(exceptions)dnl
1702
1703AC_CACHE_CHECK(for __builtin_memset, libc_cv_gcc_builtin_memset, [dnl
1704cat > conftest.c <<\EOF
1705void zero (void *x)
1706{
1707 __builtin_memset (x, 0, 1000);
1708}
1709EOF
1710dnl
1711if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | fgrep "memset" > /dev/null]);
1712then
1713 libc_cv_gcc_builtin_memset=no
1714else
1715 libc_cv_gcc_builtin_memset=yes
1716fi
1717rm -f conftest* ])
1718if test "$libc_cv_gcc_builtin_memset" = yes ; then
1719 AC_DEFINE(HAVE_BUILTIN_MEMSET)
1720fi
1721
1722AC_CACHE_CHECK(for redirection of built-in functions, libc_cv_gcc_builtin_redirection, [dnl
1723cat > conftest.c <<\EOF
1724extern char *strstr (const char *, const char *) __asm ("my_strstr");
1725char *foo (const char *a, const char *b)
1726{
1727 return __builtin_strstr (a, b);
1728}
1729EOF
1730dnl
1731if AC_TRY_COMMAND([${CC-cc} -O3 -S conftest.c -o - | fgrep "my_strstr" > /dev/null]);
1732then
1733 libc_cv_gcc_builtin_redirection=yes
1734else
1735 libc_cv_gcc_builtin_redirection=no
1736fi
1737rm -f conftest* ])
1738if test "$libc_cv_gcc_builtin_redirection" = no; then
1739 AC_MSG_ERROR([support for the symbol redirection needed])
1740fi
1741
1742dnl Check whether the compiler supports the __thread keyword.
1743AC_CACHE_CHECK([for __thread], libc_cv_gcc___thread,
1744[cat > conftest.c <<\EOF
1745__thread int a = 42;
1746EOF
1747if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c >&AS_MESSAGE_LOG_FD]); then
1748 libc_cv_gcc___thread=yes
1749else
1750 libc_cv_gcc___thread=no
1751fi
1752rm -f conftest*])
1753if test "$libc_cv_gcc___thread" = no; then
1754 AC_MSG_ERROR([support for the __thread keyword is required])
1755fi
1756
1757dnl Check whether the compiler supports the tls_model attribute.
1758AC_CACHE_CHECK([for tls_model attribute], libc_cv_gcc_tls_model_attr, [dnl
1759cat > conftest.c <<\EOF
1760extern __thread int a __attribute__((tls_model ("initial-exec")));
1761EOF
1762if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -S -Werror conftest.c >&AS_MESSAGE_LOG_FD]); then
1763 libc_cv_gcc_tls_model_attr=yes
1764else
1765 libc_cv_gcc_tls_model_attr=no
1766fi
1767rm -f conftest*])
1768if test "$libc_cv_gcc_tls_model_attr" = no; then
1769 AC_MSG_ERROR([support for the tls_model attribute is required])
1770fi
1771
1772dnl Determine how to disable generation of FMA instructions.
1773AC_CACHE_CHECK([for compiler option to disable generation of FMA instructions],
1774 libc_cv_cc_nofma, [dnl
1775libc_cv_cc_nofma=
1776for opt in -ffp-contract=off -mno-fused-madd; do
1777 LIBC_TRY_CC_OPTION([$opt], [libc_cv_cc_nofma=$opt; break])
1778done])
1779AC_SUBST(libc_cv_cc_nofma)
1780
1781if 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"
1788 break], [])
1789 done])
1790 if test "x$libc_cv_cc_submachine" = xno; then
1791 AC_MSG_ERROR([${CC-cc} does not support $submachine])
1792 fi
1793fi
1794AC_SUBST(libc_cv_cc_submachine)
1795
1796AC_CACHE_CHECK(if $CC accepts -fno-tree-loop-distribute-patterns with \
1797__attribute__ ((__optimize__)), libc_cv_cc_loop_to_function, [dnl
1798cat > conftest.c <<EOF
1799void
1800__attribute__ ((__optimize__ ("-fno-tree-loop-distribute-patterns")))
1801foo (void) {}
1802EOF
1803libc_cv_cc_loop_to_function=no
1804if AC_TRY_COMMAND([${CC-cc} $CFLAGS $CPPFLAGS -c conftest.c])
1805then
1806 libc_cv_cc_loop_to_function=yes
1807fi
1808rm -f conftest*])
1809if test $libc_cv_cc_loop_to_function = yes; then
1810 AC_DEFINE(HAVE_CC_INHIBIT_LOOP_TO_LIBCALL)
1811fi
1812AC_SUBST(libc_cv_cc_loop_to_function)
1813
1814dnl Check whether we have the gd library available.
1815AC_MSG_CHECKING(for libgd)
1816if test "$with_gd" != "no"; then
1817 old_CFLAGS="$CFLAGS"
1818 CFLAGS="$CFLAGS $libgd_include"
1819 old_LDFLAGS="$LDFLAGS"
1820 LDFLAGS="$LDFLAGS $libgd_ldflags"
1821 old_LIBS="$LIBS"
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"
1826 LIBS="$old_LIBS"
1827else
1828 LIBGD=no
1829fi
1830AC_MSG_RESULT($LIBGD)
1831AC_SUBST(LIBGD)
1832
1833# SELinux detection
1834if test x$with_selinux = xno ; then
1835 have_selinux=no;
1836else
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])
1843 fi
1844 fi
1845fi
1846# Check if we're building with SELinux support.
1847if test "x$have_selinux" = xyes; then
1848 AC_DEFINE(HAVE_SELINUX, 1, [SELinux support])
1849
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])
1855 fi
1856 AC_SUBST(have_libaudit)
1857
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])
1862 fi
1863 AC_SUBST(have_libcap)
1864fi
1865AC_SUBST(have_selinux)
1866
1867dnl check for the size of 'long double'.
1868AC_CHECK_SIZEOF(long double, 0)
1869sizeof_long_double=$ac_cv_sizeof_long_double
1870AC_SUBST(sizeof_long_double)
1871
1872CPPUNDEFS=
1873dnl Check for silly hacked compilers predefining _FORTIFY_SOURCE.
1874dnl Since we are building the implementations of the fortified functions here,
1875dnl having the macro defined interacts very badly.
1876AC_CACHE_CHECK([for _FORTIFY_SOURCE predefine], libc_cv_predef_fortify_source,
1877[AC_TRY_COMPILE([], [
1878#ifdef _FORTIFY_SOURCE
1879# error bogon
1880#endif],
1881 [libc_cv_predef_fortify_source=no],
1882 [libc_cv_predef_fortify_source=yes])])
1883if test $libc_cv_predef_fortify_source = yes; then
1884 CPPUNDEFS="${CPPUNDEFS:+$CPPUNDEFS }-U_FORTIFY_SOURCE"
1885fi
1886AC_SUBST(CPPUNDEFS)
1887
1888dnl Check for silly hacked compilers inserting -fstack-protector.
1889dnl This breaks badly for the early startup code we compile, since
1890dnl the compiled code can refer to a magic machine-dependent location
1891dnl for the canary value before we have sufficient setup for that to
1892dnl work. It's also questionable to build all of libc with this flag
1893dnl even when you're doing that for most applications you build, since
1894dnl libc's code is so heavily-used and performance-sensitive. If we
1895dnl ever really want to make that work, it should be enabled explicitly
1896dnl in the libc build, not inherited from implicit compiler settings.
1897AC_CACHE_CHECK([whether $CC implicitly enables -fstack-protector],
1898 libc_cv_predef_stack_protector, [
1899AC_TRY_COMPILE([extern void foobar (char *);],
1900 [char large_array[2048]; foobar (large_array);], [
1901libc_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])
1905}
1906echo >&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.
1913libc_undefs=`echo "$libc_undefs" | egrep '^(foobar|__stack_chk_fail)$'`
1914case "$libc_undefs" in
1915foobar) libc_cv_predef_stack_protector=no ;;
1916'__stack_chk_fail
1917foobar') libc_cv_predef_stack_protector=yes ;;
1918*) AC_MSG_ERROR([unexpected symbols in test: $libc_undefs]) ;;
1919esac],
1920 [AC_MSG_ERROR([test compilation failed])])
1921])
1922libc_extra_cflags=
1923if test $libc_cv_predef_stack_protector = yes; then
1924 libc_extra_cflags="$libc_extra_cflags -fno-stack-protector"
1925fi
1926libc_extra_cppflags=
1927
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).
1931AC_CACHE_CHECK([whether the linker provides working __ehdr_start],
1932 libc_cv_ehdr_start, [
1933old_CFLAGS="$CFLAGS"
1934old_LDFLAGS="$LDFLAGS"
1935old_LIBS="$LIBS"
1936CFLAGS="$CFLAGS -fPIC"
1937LDFLAGS="$LDFLAGS -nostdlib -nostartfiles -shared"
1938LIBS=
1939AC_LINK_IFELSE([AC_LANG_SOURCE([
1940typedef struct {
1941 char foo;
1942 long val;
1943} Ehdr;
1944extern const Ehdr __ehdr_start __attribute__ ((visibility ("hidden")));
1945long ehdr (void) { return __ehdr_start.val; }
1946])],
1947 [if $READELF -r conftest | fgrep __ehdr_start >/dev/null; then
1948 libc_cv_ehdr_start=broken
1949 else
1950 libc_cv_ehdr_start=yes
1951 fi], [libc_cv_ehdr_start=no])
1952CFLAGS="$old_CFLAGS"
1953LDFLAGS="$old_LDFLAGS"
1954LIBS="$old_LIBS"
1955])
1956if test "$libc_cv_ehdr_start" = yes; then
1957 AC_DEFINE([HAVE_EHDR_START])
1958elif test "$libc_cv_ehdr_start" = broken; then
1959 AC_MSG_WARN([linker is broken -- you should upgrade])
1960fi
1961
1962AC_CACHE_CHECK(for __builtin_trap with no external dependencies,
1963 libc_cv_builtin_trap, [dnl
1964libc_cv_builtin_trap=no
1965AC_TRY_COMPILE([], [__builtin_trap ()], [
1966libc_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])
1970}
1971echo >&AS_MESSAGE_LOG_FD "libc_undefs='$libc_undefs'"
1972if test -z "$libc_undefs"; then
1973 libc_cv_builtin_trap=yes
1974fi])])
1975if test $libc_cv_builtin_trap = yes; then
1976 AC_DEFINE([HAVE_BUILTIN_TRAP])
1977fi
1978
1979### End of automated tests.
1980### Now run sysdeps configure fragments.
1981
1982# They also can set these variables.
1983use_ldconfig=no
1984ldd_rewrite_script=no
1985libc_cv_sysconfdir=$sysconfdir
1986libc_cv_localstatedir=$localstatedir
1987libc_cv_gcc_unwind_find_fde=no
1988libc_cv_idn=no
1989
1990# Iterate over all the sysdep directories we will use, running their
1991# configure fragments.
1992for dir in $sysnames; do
1993 case $dir in
1994 /*) dest=$dir ;;
1995 *) dest=$srcdir/$dir ;;
1996 esac
1997 if test -r $dest/configure; then
1998 AC_MSG_RESULT(running configure fragment for $dir)
1999 . $dest/configure
2000 fi
2001done
2002
2003if test x"$build_mathvec" = xnotset; then
2004 build_mathvec=no
2005fi
2006LIBC_CONFIG_VAR([build-mathvec], [$build_mathvec])
2007
2008AC_SUBST(libc_extra_cflags)
2009AC_SUBST(libc_extra_cppflags)
2010
2011if test x$libc_cv_gcc_unwind_find_fde = xyes; then
2012 AC_DEFINE(EXPORT_UNWIND_FIND_FDE)
2013fi
2014AC_SUBST(libc_cv_gcc_unwind_find_fde)
2015
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.
2018if test x"$libc_cv_ld_gnu_indirect_function" = xyes; then
2019 AC_DEFINE(HAVE_IFUNC)
2020fi
2021
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.
2024AC_SUBST(use_nscd)
2025if test "x$use_nscd" != xno; then
2026 AC_DEFINE([USE_NSCD])
2027fi
2028if test "x$build_nscd" = xdefault; then
2029 build_nscd=$use_nscd
2030fi
2031
2032# Test for old glibc 2.0.x headers so that they can be removed properly
2033# Search only in includedir.
2034AC_MSG_CHECKING(for old glibc 2.0.x headers)
2035if eval test -f "${includedir}/elfclass.h" -a -f "${includedir}/fcntlbits.h"
2036then
2037 old_glibc_headers=yes
2038else
2039 old_glibc_headers=no
2040fi
2041AC_MSG_RESULT($old_glibc_headers)
2042if 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.)
2045fi
2046AC_SUBST(old_glibc_headers)
2047
2048AC_SUBST(libc_cv_slibdir)
2049AC_SUBST(libc_cv_rtlddir)
2050AC_SUBST(libc_cv_localedir)
2051AC_SUBST(libc_cv_sysconfdir)
2052AC_SUBST(libc_cv_localstatedir)
2053AC_SUBST(libc_cv_rootsbindir)
2054AC_SUBST(libc_cv_forced_unwind)
2055
2056if test x$use_ldconfig = xyes; then
2057 AC_DEFINE(USE_LDCONFIG)
2058fi
2059AC_SUBST(use_ldconfig)
2060AC_SUBST(ldd_rewrite_script)
2061
2062AC_SUBST(static)
2063AC_SUBST(shared)
2064
2065AC_CACHE_CHECK([whether -fPIC is default], libc_cv_pic_default,
2066[libc_cv_pic_default=yes
2067cat > conftest.c <<EOF
2068#if defined __PIC__ || defined __pic__ || defined PIC || defined pic
2069# error PIC is default.
2070#endif
2071EOF
2072if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
2073 libc_cv_pic_default=no
2074fi
2075rm -f conftest.*])
2076AC_SUBST(libc_cv_pic_default)
2077
2078AC_CACHE_CHECK([whether -fPIE is default], libc_cv_pie_default,
2079[libc_cv_pie_default=yes
2080cat > conftest.c <<EOF
2081#if defined __PIE__ || defined __pie__ || defined PIE || defined pie
2082# error PIE is default.
2083#endif
2084EOF
2085if eval "${CC-cc} -S conftest.c 2>&AS_MESSAGE_LOG_FD 1>&AS_MESSAGE_LOG_FD"; then
2086 libc_cv_pie_default=no
2087fi
2088rm -f conftest.*])
2089AC_SUBST(libc_cv_pie_default)
2090
2091AC_SUBST(profile)
2092AC_SUBST(static_nss)
2093
2094AC_SUBST(DEFINES)
2095
2096dnl See sysdeps/mach/configure.ac for this variable.
2097AC_SUBST(mach_interface_list)
2098
2099VERSION=`sed -n -e 's/^#define VERSION "\([^"]*\)"/\1/p' < $srcdir/version.h`
2100RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h`
2101AC_SUBST(VERSION)
2102AC_SUBST(RELEASE)
2103
2104AC_CONFIG_FILES([config.make Makefile])
2105AC_CONFIG_COMMANDS([default],[[
2106case $CONFIG_FILES in *config.make*)
2107echo "$config_vars" >> config.make;;
2108esac
2109test -d bits || mkdir bits]],[[config_vars='$config_vars']])
2110AC_OUTPUT