3 dnl GLIBCXX_CONDITIONAL (NAME, SHELL-TEST)
5 dnl Exactly like AM_CONDITIONAL, but delays evaluation of the test until the
6 dnl end of configure. This lets tested variables be reassigned, and the
7 dnl conditional will depend on the final state of the variable. For a simple
8 dnl example of why this is needed, see GLIBCXX_ENABLE_HOSTED.
10 m4_define([_m4_divert(glibcxx_diversion)], 8000)dnl
11 AC_DEFUN([GLIBCXX_CONDITIONAL], [dnl
12 m4_divert_text([glibcxx_diversion],dnl
13 AM_CONDITIONAL([$1],[$2])
16 AC_DEFUN([GLIBCXX_EVALUATE_CONDITIONALS], [m4_undivert([glibcxx_diversion])])dnl
20 dnl Check to see what architecture and operating system we are compiling
21 dnl for. Also, if architecture- or OS-specific flags are required for
22 dnl compilation, pick them up here.
24 AC_DEFUN([GLIBCXX_CHECK_HOST], [
25 . $glibcxx_srcdir/configure.host
26 AC_MSG_NOTICE([CPU config directory is $cpu_include_dir])
27 AC_MSG_NOTICE([OS config directory is $os_include_dir])
31 dnl Initialize the rest of the library configury. At this point we have
32 dnl variables like $host.
37 dnl glibcxx_builddir (absolute path)
38 dnl glibcxx_srcdir (absolute path)
39 dnl toplevel_srcdir (absolute path)
42 dnl with_target_subdir
44 dnl - the variables in GLIBCXX_CHECK_HOST / configure.host
45 dnl - default settings for all AM_CONFITIONAL test variables
46 dnl - lots of tools, like CC and CXX
48 AC_DEFUN([GLIBCXX_CONFIGURE], [
49 # Keep these sync'd with the list in Makefile.am. The first provides an
50 # expandable list at autoconf time; the second provides an expandable list
51 # (i.e., shell variable) at configure time.
52 m4_define([glibcxx_SUBDIRS],[include libsupc++ src doc po testsuite])
53 SUBDIRS='glibcxx_SUBDIRS'
55 # These need to be absolute paths, yet at the same time need to
56 # canonicalize only relative paths, because then amd will not unmount
57 # drives. Thus the use of PWDCMD: set it to 'pawd' or 'amq -w' if using amd.
58 glibcxx_builddir=`${PWDCMD-pwd}`
60 [\\/$]* | ?:[\\/]*) glibcxx_srcdir=${srcdir} ;;
61 *) glibcxx_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
63 toplevel_srcdir=${glibcxx_srcdir}/..
64 AC_SUBST(glibcxx_builddir)
65 AC_SUBST(glibcxx_srcdir)
66 AC_SUBST(toplevel_srcdir)
68 # We use these options to decide which functions to include. They are
69 # set from the top level.
70 AC_ARG_WITH([target-subdir],
71 AC_HELP_STRING([--with-target-subdir=SUBDIR],
72 [configuring in a subdirectory]))
74 AC_ARG_WITH([cross-host],
75 AC_HELP_STRING([--with-cross-host=HOST],
76 [configuring with a cross compiler]))
79 AC_HELP_STRING([--with-newlib],
80 [assume newlib as a system C library]))
82 # We're almost certainly being configured before anything else which uses
83 # C++, so all of our AC_PROG_* discoveries will be cached. It's vital that
84 # we not cache the value of CXX that we "discover" here, because it's set
85 # to something unique for us and libjava. Other target libraries need to
86 # find CXX for themselves. We yank the rug out from under the normal AC_*
87 # process by sneakily renaming the cache variable. This also lets us debug
88 # the value of "our" CXX in postmortems.
90 # We must also force CXX to /not/ be a precious variable, otherwise the
91 # wrong (non-multilib-adjusted) value will be used in multilibs. This
92 # little trick also affects CPPFLAGS, CXXFLAGS, and LDFLAGS. And as a side
93 # effect, CXXFLAGS is no longer automagically subst'd, so we have to do
94 # that ourselves. Un-preciousing AC_PROG_CC also affects CC and CFLAGS.
96 # -fno-builtin must be present here so that a non-conflicting form of
97 # std::exit can be guessed by AC_PROG_CXX, and used in later tests.
99 m4_define([ac_cv_prog_CXX],[glibcxx_cv_prog_CXX])
100 m4_rename([_AC_ARG_VAR_PRECIOUS],[glibcxx_PRECIOUS])
101 m4_define([_AC_ARG_VAR_PRECIOUS],[])
102 save_CXXFLAGS="$CXXFLAGS"
103 CXXFLAGS="$CXXFLAGS -fno-builtin"
106 CXXFLAGS="$save_CXXFLAGS"
107 m4_rename([glibcxx_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
111 # Will set LN_S to either 'ln -s', 'ln', or 'cp -p' (if linking isn't
112 # available). Uncomment the next line to force a particular method.
116 AC_CHECK_TOOL(AS, as)
117 AC_CHECK_TOOL(AR, ar)
118 AC_CHECK_TOOL(RANLIB, ranlib, ranlib-not-found-in-path-error)
122 # Set up safe default values for all subsequent AM_CONDITIONAL tests
123 # which are themselves conditionally expanded.
124 ## (Right now, this only matters for enable_wchar_t, but nothing prevents
125 ## other macros from doing the same. This should be automated.) -pme
127 # Check for uClibc since Linux platforms use different configuration
128 # directories depending on the C library in use.
129 AC_EGREP_CPP([_using_uclibc], [
134 ], uclibc=yes, uclibc=no)
136 # Find platform-specific directories containing configuration info.
137 # Also possibly modify flags used elsewhere, as needed by the platform.
143 dnl Tests for newer compiler features, or features that are present in newer
144 dnl compiler versions but not older compiler versions still in use, should
148 dnl WERROR='-Werror' if requested and possible; g++'s that lack the
149 dnl new inlining code or the new system_header pragma will die on -Werror.
150 dnl Leave it out by default and use maint-mode to use it.
151 dnl SECTION_FLAGS='-ffunction-sections -fdata-sections' if
152 dnl compiler supports it and the user has not requested debug mode.
154 AC_DEFUN([GLIBCXX_CHECK_COMPILER_FEATURES], [
155 # All these tests are for C++; save the language and the compiler flags.
156 # The CXXFLAGS thing is suspicious, but based on similar bits previously
157 # found in GLIBCXX_CONFIGURE.
160 ac_test_CXXFLAGS="${CXXFLAGS+set}"
161 ac_save_CXXFLAGS="$CXXFLAGS"
163 # Check for maintainer-mode bits.
164 if test x"$USE_MAINTAINER_MODE" = xno; then
170 # Check for -ffunction-sections -fdata-sections
171 AC_MSG_CHECKING([for g++ that supports -ffunction-sections -fdata-sections])
172 CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections'
173 AC_TRY_COMPILE([int foo; void bar() { };],, [ac_fdsections=yes], [ac_fdsections=no])
174 if test "$ac_test_CXXFLAGS" = set; then
175 CXXFLAGS="$ac_save_CXXFLAGS"
177 # this is the suspicious part
180 if test x"$ac_fdsections" = x"yes"; then
181 SECTION_FLAGS='-ffunction-sections -fdata-sections'
183 AC_MSG_RESULT($ac_fdsections)
187 AC_SUBST(SECTION_FLAGS)
192 dnl If GNU ld is in use, check to see if tricky linker opts can be used. If
193 dnl the native linker is in use, all variables will be defined to something
194 dnl safe (like an empty string).
197 dnl SECTION_LDFLAGS='-Wl,--gc-sections' if possible
198 dnl OPT_LDFLAGS='-Wl,-O1' and '-z,relro' if possible
199 dnl LD (as a side effect of testing)
202 dnl glibcxx_ld_is_gold (set to "no" or "yes")
203 dnl glibcxx_gnu_ld_version (possibly)
205 dnl The last will be a single integer, e.g., version 1.23.45.0.67.89 will
206 dnl set glibcxx_gnu_ld_version to 12345. Zeros cause problems.
208 AC_DEFUN([GLIBCXX_CHECK_LINKER_FEATURES], [
209 # If we're not using GNU ld, then there's no point in even trying these
210 # tests. Check for that first. We should have already tested for gld
211 # by now (in libtool), but require it now just to be safe...
212 test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS=''
213 test -z "$OPT_LDFLAGS" && OPT_LDFLAGS=''
214 AC_REQUIRE([AC_PROG_LD])
215 AC_REQUIRE([AC_PROG_AWK])
217 # The name set by libtool depends on the version of libtool. Shame on us
218 # for depending on an impl detail, but c'est la vie. Older versions used
219 # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on
220 # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually
221 # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't
222 # set (hence we're using an older libtool), then set it.
223 if test x${with_gnu_ld+set} != xset; then
224 if test x${ac_cv_prog_gnu_ld+set} != xset; then
225 # We got through "ac_require(ac_prog_ld)" and still not set? Huh?
228 with_gnu_ld=$ac_cv_prog_gnu_ld
232 # Start by getting the version number. I think the libtool test already
233 # does some of this, but throws away the result.
234 glibcxx_ld_is_gold=no
235 if test x"$with_gnu_ld" = x"yes"; then
236 AC_MSG_CHECKING([for ld version])
238 if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then
239 glibcxx_ld_is_gold=yes
241 ldver=`$LD --version 2>/dev/null | head -1 | \
242 sed -e 's/GNU \(go\)\{0,1\}ld \(version \)\{0,1\}\(([^)]*) \)\{0,1\}\([0-9.][0-9.]*\).*/\4/'`
244 glibcxx_gnu_ld_version=`echo $ldver | \
245 $AWK -F. '{ if (NF<3) [$]3=0; print ([$]1*100+[$]2)*100+[$]3 }'`
246 AC_MSG_RESULT($glibcxx_gnu_ld_version)
250 glibcxx_have_gc_sections=no
251 if test "$glibcxx_ld_is_gold" = "yes"; then
252 if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then
253 glibcxx_have_gc_sections=yes
256 glibcxx_gcsections_min_ld=21602
257 if test x"$with_gnu_ld" = x"yes" &&
258 test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then
259 glibcxx_have_gc_sections=yes
262 if test "$glibcxx_have_gc_sections" = "yes"; then
263 # Sufficiently young GNU ld it is! Joy and bunny rabbits!
264 # NB: This flag only works reliably after 2.16.1. Configure tests
265 # for this are difficult, so hard wire a value that should work.
267 ac_test_CFLAGS="${CFLAGS+set}"
268 ac_save_CFLAGS="$CFLAGS"
269 CFLAGS='-Wl,--gc-sections'
271 # Check for -Wl,--gc-sections
272 AC_MSG_CHECKING([for ld that supports -Wl,--gc-sections])
273 AC_TRY_LINK([ int one(void) { return 1; }
274 int two(void) { return 2; }
275 ], [ two(); ] , [ac_gcsections=yes], [ac_gcsections=no])
276 if test "$ac_gcsections" = "yes"; then
279 if $CC -c conftest.c; then
280 if $LD --gc-sections -o conftest conftest.o 2>&1 | \
281 grep "Warning: gc-sections option ignored" > /dev/null; then
285 rm -f conftest.c conftest.o conftest
287 if test "$ac_gcsections" = "yes"; then
288 SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS"
290 AC_MSG_RESULT($ac_gcsections)
292 if test "$ac_test_CFLAGS" = set; then
293 CFLAGS="$ac_save_CFLAGS"
295 # this is the suspicious part
301 # Note this is only for shared objects.
303 if test x"$with_gnu_ld" = x"yes"; then
304 AC_MSG_CHECKING([for ld that supports -Wl,-z,relro])
305 cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"`
306 if test -n "$cxx_z_relo"; then
307 OPT_LDFLAGS="-Wl,-z,relro"
310 AC_MSG_RESULT($ac_ld_relro)
313 # Set linker optimization flags.
314 if test x"$with_gnu_ld" = x"yes"; then
315 OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS"
318 AC_SUBST(SECTION_LDFLAGS)
319 AC_SUBST(OPT_LDFLAGS)
324 dnl Check for headers for, and arguments to, the setrlimit() function.
325 dnl Used only in testsuite_hooks.h. Called from GLIBCXX_CONFIGURE_TESTSUITE.
328 dnl _GLIBCXX_RES_LIMITS if we can set artificial resource limits
329 dnl various HAVE_LIMIT_* for individual limit names
331 AC_DEFUN([GLIBCXX_CHECK_SETRLIMIT_ancilliary], [
332 AC_MSG_CHECKING([for RLIMIT_$1])
335 #include <sys/time.h>
336 #include <sys/resource.h>
338 [ int f = RLIMIT_$1 ; ],
339 [glibcxx_mresult=1], [glibcxx_mresult=0])
340 AC_DEFINE_UNQUOTED(HAVE_LIMIT_$1, $glibcxx_mresult,
341 [Only used in build directory testsuite_hooks.h.])
342 if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi
346 AC_DEFUN([GLIBCXX_CHECK_SETRLIMIT], [
347 setrlimit_have_headers=yes
348 AC_CHECK_HEADERS(unistd.h sys/time.h sys/resource.h,
350 [setrlimit_have_headers=no])
351 # If don't have the headers, then we can't run the tests now, and we
352 # won't be seeing any of these during testsuite compilation.
353 if test $setrlimit_have_headers = yes; then
354 # Can't do these in a loop, else the resulting syntax is wrong.
355 GLIBCXX_CHECK_SETRLIMIT_ancilliary(DATA)
356 GLIBCXX_CHECK_SETRLIMIT_ancilliary(RSS)
357 GLIBCXX_CHECK_SETRLIMIT_ancilliary(VMEM)
358 GLIBCXX_CHECK_SETRLIMIT_ancilliary(AS)
359 GLIBCXX_CHECK_SETRLIMIT_ancilliary(FSIZE)
361 # Check for rlimit, setrlimit.
362 AC_CACHE_VAL(glibcxx_cv_setrlimit, [
365 #include <sys/time.h>
366 #include <sys/resource.h>
370 [glibcxx_cv_setrlimit=yes], [glibcxx_cv_setrlimit=no])
374 AC_MSG_CHECKING([for testsuite resource limits support])
375 if test $setrlimit_have_headers = yes && test $glibcxx_cv_setrlimit = yes; then
377 AC_DEFINE(_GLIBCXX_RES_LIMITS, 1,
378 [Define if using setrlimit to set resource limits during
383 AC_MSG_RESULT($ac_res_limits)
388 dnl Check whether S_ISREG (Posix) or S_IFREG is available in <sys/stat.h>.
389 dnl Define HAVE_S_ISREG / HAVE_S_IFREG appropriately.
391 AC_DEFUN([GLIBCXX_CHECK_S_ISREG_OR_S_IFREG], [
395 ac_save_CXXFLAGS="$CXXFLAGS"
396 CXXFLAGS="$CXXFLAGS -fno-exceptions"
398 AC_MSG_CHECKING([for S_ISREG or S_IFREG])
399 AC_CACHE_VAL(glibcxx_cv_S_ISREG, [
400 GCC_TRY_COMPILE_OR_LINK(
401 [#include <sys/stat.h>],
404 S_ISREG(buffer.st_mode);],
405 [glibcxx_cv_S_ISREG=yes],
406 [glibcxx_cv_S_ISREG=no])
408 AC_CACHE_VAL(glibcxx_cv_S_IFREG, [
409 GCC_TRY_COMPILE_OR_LINK(
410 [#include <sys/stat.h>],
413 S_IFREG & buffer.st_mode;],
414 [glibcxx_cv_S_IFREG=yes],
415 [glibcxx_cv_S_IFREG=no])
418 if test $glibcxx_cv_S_ISREG = yes; then
419 AC_DEFINE(HAVE_S_ISREG, 1,
420 [Define if S_IFREG is available in <sys/stat.h>.])
422 elif test $glibcxx_cv_S_IFREG = yes; then
423 AC_DEFINE(HAVE_S_IFREG, 1,
424 [Define if S_IFREG is available in <sys/stat.h>.])
429 CXXFLAGS="$ac_save_CXXFLAGS"
435 dnl Check whether poll is available in <poll.h>, and define HAVE_POLL.
437 AC_DEFUN([GLIBCXX_CHECK_POLL], [
441 ac_save_CXXFLAGS="$CXXFLAGS"
442 CXXFLAGS="$CXXFLAGS -fno-exceptions"
444 AC_MSG_CHECKING([for poll])
445 AC_CACHE_VAL(glibcxx_cv_POLL, [
446 GCC_TRY_COMPILE_OR_LINK(
448 [struct pollfd pfd[1];
449 pfd[0].events = POLLIN;
451 [glibcxx_cv_POLL=yes],
452 [glibcxx_cv_POLL=no])
454 if test $glibcxx_cv_POLL = yes; then
455 AC_DEFINE(HAVE_POLL, 1, [Define if poll is available in <poll.h>.])
457 AC_MSG_RESULT($glibcxx_cv_POLL)
459 CXXFLAGS="$ac_save_CXXFLAGS"
465 dnl Check whether writev is available in <sys/uio.h>, and define HAVE_WRITEV.
467 AC_DEFUN([GLIBCXX_CHECK_WRITEV], [
471 ac_save_CXXFLAGS="$CXXFLAGS"
472 CXXFLAGS="$CXXFLAGS -fno-exceptions"
474 AC_MSG_CHECKING([for writev])
475 AC_CACHE_VAL(glibcxx_cv_WRITEV, [
476 GCC_TRY_COMPILE_OR_LINK(
477 [#include <sys/uio.h>],
478 [struct iovec iov[2];
480 [glibcxx_cv_WRITEV=yes],
481 [glibcxx_cv_WRITEV=no])
483 if test $glibcxx_cv_WRITEV = yes; then
484 AC_DEFINE(HAVE_WRITEV, 1, [Define if writev is available in <sys/uio.h>.])
486 AC_MSG_RESULT($glibcxx_cv_WRITEV)
488 CXXFLAGS="$ac_save_CXXFLAGS"
494 dnl Check whether int64_t is available in <stdint.h>, and define HAVE_INT64_T.
495 dnl Also check whether int64_t is actually a typedef to long or long long.
497 AC_DEFUN([GLIBCXX_CHECK_INT64_T], [
502 AC_MSG_CHECKING([for int64_t])
503 AC_CACHE_VAL(glibcxx_cv_INT64_T, [
505 [#include <stdint.h>],
507 [glibcxx_cv_INT64_T=yes],
508 [glibcxx_cv_INT64_T=no])
511 if test $glibcxx_cv_INT64_T = yes; then
512 AC_DEFINE(HAVE_INT64_T, 1, [Define if int64_t is available in <stdint.h>.])
513 AC_MSG_RESULT($glibcxx_cv_INT64_T)
515 AC_MSG_CHECKING([for int64_t as long])
516 AC_CACHE_VAL(glibcxx_cv_int64_t_long, [
519 template<typename, typename> struct same { enum { value = -1 }; };
520 template<typename Tp> struct same<Tp, Tp> { enum { value = 1 }; };
521 int array[same<int64_t, long>::value];], [],
522 [glibcxx_cv_int64_t_long=yes], [glibcxx_cv_int64_t_long=no])
525 if test $glibcxx_cv_int64_t_long = yes; then
526 AC_DEFINE(HAVE_INT64_T_LONG, 1, [Define if int64_t is a long.])
527 AC_MSG_RESULT($glibcxx_cv_int64_t_long)
530 AC_MSG_CHECKING([for int64_t as long long])
531 AC_CACHE_VAL(glibcxx_cv_int64_t_long_long, [
534 template<typename, typename> struct same { enum { value = -1 }; };
535 template<typename Tp> struct same<Tp, Tp> { enum { value = 1 }; };
536 int array[same<int64_t, long long>::value];], [],
537 [glibcxx_cv_int64_t_long_long=yes], [glibcxx_cv_int64_t_long_long=no])
540 if test $glibcxx_cv_int64_t_long_long = yes; then
541 AC_DEFINE(HAVE_INT64_T_LONG_LONG, 1, [Define if int64_t is a long long.])
542 AC_MSG_RESULT($glibcxx_cv_int64_t_long_long)
551 dnl Check whether LFS support is available.
553 AC_DEFUN([GLIBCXX_CHECK_LFS], [
556 ac_save_CXXFLAGS="$CXXFLAGS"
557 CXXFLAGS="$CXXFLAGS -fno-exceptions"
558 AC_MSG_CHECKING([for LFS support])
559 AC_CACHE_VAL(glibcxx_cv_LFS, [
560 GCC_TRY_COMPILE_OR_LINK(
563 #include <sys/stat.h>
567 fseeko64(fp, 0, SEEK_CUR);
569 lseek64(1, 0, SEEK_CUR);
572 [glibcxx_cv_LFS=yes],
575 if test $glibcxx_cv_LFS = yes; then
576 AC_DEFINE(_GLIBCXX_USE_LFS, 1, [Define if LFS support is available.])
578 AC_MSG_RESULT($glibcxx_cv_LFS)
579 CXXFLAGS="$ac_save_CXXFLAGS"
585 dnl Check for whether a fully dynamic basic_string implementation should
586 dnl be turned on, that does not put empty objects in per-process static
587 dnl memory (mostly useful together with shared memory allocators, see PR
588 dnl libstdc++/16612 for details).
590 dnl --enable-fully-dynamic-string defines _GLIBCXX_FULLY_DYNAMIC_STRING
591 dnl --disable-fully-dynamic-string leaves _GLIBCXX_FULLY_DYNAMIC_STRING undefined
592 dnl + Usage: GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING[(DEFAULT)]
593 dnl Where DEFAULT is either `yes' or `no'.
595 AC_DEFUN([GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING], [
596 GLIBCXX_ENABLE(fully-dynamic-string,$1,,[do not put empty strings in per-process static memory])
597 if test $enable_fully_dynamic_string = yes; then
598 AC_DEFINE(_GLIBCXX_FULLY_DYNAMIC_STRING, 1,
599 [Define if a fully dynamic basic_string is wanted.])
605 dnl Does any necessary configuration of the testsuite directory. Generates
606 dnl the testsuite_hooks.h header.
608 dnl GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE must be done before this.
612 dnl GLIBCXX_TEST_WCHAR_T
613 dnl GLIBCXX_TEST_THREAD
617 AC_DEFUN([GLIBCXX_CONFIGURE_TESTSUITE], [
618 if $GLIBCXX_IS_NATIVE ; then
619 # Do checks for resource limit functions.
620 GLIBCXX_CHECK_SETRLIMIT
622 # Look for setenv, so that extended locale tests can be performed.
623 GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3(setenv)
626 if $GLIBCXX_IS_NATIVE && test $is_hosted = yes &&
627 test $enable_symvers != no; then
630 enable_abi_check=no ;;
632 enable_abi_check=yes ;;
635 # Only build this as native, since automake does not understand
640 # Export file names for ABI checking.
641 baseline_dir="$glibcxx_srcdir/config/abi/post/${abi_baseline_pair}\$(MULTISUBDIR)"
642 AC_SUBST(baseline_dir)
647 dnl Set up *_INCLUDES variables for all sundry Makefile.am's.
651 dnl TOPLEVEL_INCLUDES
653 AC_DEFUN([GLIBCXX_EXPORT_INCLUDES], [
654 # Used for every C++ compile we perform.
656 -I$glibcxx_builddir/include/$host_alias \
657 -I$glibcxx_builddir/include \
658 -I$glibcxx_srcdir/libsupc++"
660 # For Canadian crosses, pick this up too.
661 if test $CANADIAN = yes; then
662 GLIBCXX_INCLUDES="$GLIBCXX_INCLUDES -I\${includedir}"
665 # Stuff in the actual top level. Currently only used by libsupc++ to
666 # get unwind* headers from the gcc dir.
667 #TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/gcc -I$(toplevel_srcdir)/include'
668 TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/gcc'
670 # Now, export this to all the little Makefiles....
671 AC_SUBST(GLIBCXX_INCLUDES)
672 AC_SUBST(TOPLEVEL_INCLUDES)
677 dnl Set up *_FLAGS and *FLAGS variables for all sundry Makefile.am's.
678 dnl (SECTION_FLAGS is done under CHECK_COMPILER_FEATURES.)
681 dnl OPTIMIZE_CXXFLAGS
684 AC_DEFUN([GLIBCXX_EXPORT_FLAGS], [
685 # Optimization flags that are probably a good idea for thrill-seekers. Just
686 # uncomment the lines below and make, everything else is ready to go...
687 # Alternatively OPTIMIZE_CXXFLAGS can be set in configure.host.
688 # OPTIMIZE_CXXFLAGS = -O3 -fstrict-aliasing -fvtable-gc
689 AC_SUBST(OPTIMIZE_CXXFLAGS)
691 WARN_FLAGS='-Wall -Wextra -Wwrite-strings -Wcast-qual'
697 dnl All installation directory information is determined here.
701 dnl glibcxx_prefixdir
702 dnl glibcxx_toolexecdir
703 dnl glibcxx_toolexeclibdir
705 dnl Assumes cross_compiling bits already done, and with_cross_host in
708 dnl This logic must match gcc/configure.ac's setting of gcc_gxx_include_dir.
709 dnl config/gxx-include-dir.m4 must be kept consistant with this as well.
710 AC_DEFUN([GLIBCXX_EXPORT_INSTALL_INFO], [
711 glibcxx_toolexecdir=no
712 glibcxx_toolexeclibdir=no
713 glibcxx_prefixdir=$prefix
715 AC_MSG_CHECKING([for gxx-include-dir])
716 AC_ARG_WITH([gxx-include-dir],
717 AC_HELP_STRING([--with-gxx-include-dir=DIR],
718 [installation directory for include files]),
720 yes) AC_MSG_ERROR([Missing directory for --with-gxx-include-dir]) ;;
721 no) gxx_include_dir=no ;;
722 *) gxx_include_dir=$withval ;;
724 [gxx_include_dir=no])
725 AC_MSG_RESULT($gxx_include_dir)
727 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
728 AC_ARG_ENABLE([version-specific-runtime-libs],
729 AC_HELP_STRING([--enable-version-specific-runtime-libs],
730 [Specify that runtime libraries should be installed in a compiler-specific directory]),
731 [case "$enableval" in
732 yes) version_specific_libs=yes ;;
733 no) version_specific_libs=no ;;
734 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
736 [version_specific_libs=no])
737 AC_MSG_RESULT($version_specific_libs)
739 # Default case for install directory for include files.
740 if test $version_specific_libs = no && test $gxx_include_dir = no; then
741 gxx_include_dir='include/c++/${gcc_version}'
742 if test -n "$with_cross_host" &&
743 test x"$with_cross_host" != x"no"; then
744 gxx_include_dir='${prefix}/${target_alias}/'"$gxx_include_dir"
746 gxx_include_dir='${prefix}/'"$gxx_include_dir"
750 # Version-specific runtime libs processing.
751 if test $version_specific_libs = yes; then
752 # Need the gcc compiler version to know where to install libraries
753 # and header files if --enable-version-specific-runtime-libs option
754 # is selected. FIXME: these variables are misnamed, there are
755 # no executables installed in _toolexecdir or _toolexeclibdir.
756 if test x"$gxx_include_dir" = x"no"; then
757 gxx_include_dir='${libdir}/gcc/${host_alias}/${gcc_version}/include/c++'
759 glibcxx_toolexecdir='${libdir}/gcc/${host_alias}'
760 glibcxx_toolexeclibdir='${toolexecdir}/${gcc_version}$(MULTISUBDIR)'
763 # Calculate glibcxx_toolexecdir, glibcxx_toolexeclibdir
764 # Install a library built with a cross compiler in tooldir, not libdir.
765 if test x"$glibcxx_toolexecdir" = x"no"; then
766 if test -n "$with_cross_host" &&
767 test x"$with_cross_host" != x"no"; then
768 glibcxx_toolexecdir='${exec_prefix}/${host_alias}'
769 glibcxx_toolexeclibdir='${toolexecdir}/lib'
771 glibcxx_toolexecdir='${libdir}/gcc/${host_alias}'
772 glibcxx_toolexeclibdir='${libdir}'
774 multi_os_directory=`$CXX -print-multi-os-directory`
775 case $multi_os_directory in
776 .) ;; # Avoid trailing /.
777 *) glibcxx_toolexeclibdir=$glibcxx_toolexeclibdir/$multi_os_directory ;;
781 AC_MSG_CHECKING([for install location])
782 AC_MSG_RESULT($gxx_include_dir)
784 AC_SUBST(glibcxx_prefixdir)
785 AC_SUBST(gxx_include_dir)
786 AC_SUBST(glibcxx_toolexecdir)
787 AC_SUBST(glibcxx_toolexeclibdir)
793 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING)
794 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c)
795 dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
797 dnl See docs/html/17_intro/configury.html#enable for documentation.
799 m4_define([GLIBCXX_ENABLE],[dnl
800 m4_define([_g_switch],[--enable-$1])dnl
801 m4_define([_g_help],[AC_HELP_STRING(_g_switch$3,[$4 @<:@default=$2@:>@])])dnl
802 AC_ARG_ENABLE($1,_g_help,
807 m4_bpatsubst([$5],[permit ])) ;;
808 *) AC_MSG_ERROR(Unknown argument to enable/disable $1) ;;
809 dnl Idea for future: generate a URL pointing to
810 dnl "onlinedocs/configopts.html#whatever"
817 *) AC_MSG_ERROR(Argument to enable/disable $1 must be yes or no) ;;
821 [enable_]m4_bpatsubst([$1],-,_)[=][$2])
822 m4_undefine([_g_switch])dnl
823 m4_undefine([_g_help])dnl
828 dnl Check for ISO/IEC 9899:1999 "C99" support.
830 dnl --enable-c99 defines _GLIBCXX_USE_C99
831 dnl --disable-c99 leaves _GLIBCXX_USE_C99 undefined
832 dnl + Usage: GLIBCXX_ENABLE_C99[(DEFAULT)]
833 dnl Where DEFAULT is either `yes' or `no'.
834 dnl + If 'C99' stuff is not available, ignores DEFAULT and sets `no'.
836 AC_DEFUN([GLIBCXX_ENABLE_C99], [
837 GLIBCXX_ENABLE(c99,$1,,[turns on ISO/IEC 9899:1999 support])
839 if test x"$enable_c99" = x"yes"; then
844 # Use -std=c++98 because the default (-std=gnu++98) leaves __STRICT_ANSI__
845 # undefined and fake C99 facilities - like pre-standard snprintf - may be
846 # spuriously enabled.
847 # Long term, -std=c++0x could be even better, could manage to explicitely
848 # request C99 facilities to the underlying C headers.
849 ac_save_CXXFLAGS="$CXXFLAGS"
850 CXXFLAGS="$CXXFLAGS -std=c++98"
852 ac_save_gcc_no_link="$gcc_no_link"
854 if test x$gcc_no_link != xyes; then
855 # Use -fno-exceptions to that the C driver can link these tests without
856 # hitting undefined references to personality routines.
857 CXXFLAGS="$CXXFLAGS -fno-exceptions"
858 AC_CHECK_LIB(m, sin, [
861 # Use the default compile-only tests in GCC_TRY_COMPILE_OR_LINK
866 # Check for the existence of <math.h> functions used if C99 is enabled.
867 AC_MSG_CHECKING([for ISO C99 support in <math.h>])
868 AC_CACHE_VAL(glibcxx_cv_c99_math, [
869 GCC_TRY_COMPILE_OR_LINK(
871 volatile double d1, d2;
879 i = isgreater(d1, d2);
880 i = isgreaterequal(d1, d2);
882 i = islessequal(d1, d2);
883 i = islessgreater(d1, d2);
884 i = islessgreater(d1, d2);
885 i = isunordered(d1, d2);
886 ],[glibcxx_cv_c99_math=yes], [glibcxx_cv_c99_math=no])
888 AC_MSG_RESULT($glibcxx_cv_c99_math)
889 if test x"$glibcxx_cv_c99_math" = x"yes"; then
890 AC_DEFINE(_GLIBCXX_USE_C99_MATH, 1,
891 [Define if C99 functions or macros in <math.h> should be imported
892 in <cmath> in namespace std.])
895 # Check for the existence of <complex.h> complex math functions.
896 # This is necessary even though libstdc++ uses the builtin versions
897 # of these functions, because if the builtin cannot be used, a reference
898 # to the library function is emitted.
899 AC_CHECK_HEADERS(tgmath.h, ac_has_tgmath_h=yes, ac_has_tgmath_h=no)
900 AC_CHECK_HEADERS(complex.h, ac_has_complex_h=yes, ac_has_complex_h=no)
901 glibcxx_cv_c99_complex=no;
902 if test x"$ac_has_complex_h" = x"yes"; then
903 AC_MSG_CHECKING([for ISO C99 support in <complex.h>])
904 GCC_TRY_COMPILE_OR_LINK(
905 [#include <complex.h>
906 typedef __complex__ float float_type;
907 typedef __complex__ double double_type;
908 typedef __complex__ long double ld_type;
909 volatile float_type tmpf;
910 volatile double_type tmpd;
911 volatile ld_type tmpld;
914 volatile long double ld;],
926 tmpf = cpowf(tmpf, tmpf);
939 tmpd = cpow(tmpd, tmpd);
943 tmpld = ccosl(tmpld);
944 tmpld = ccoshl(tmpld);
945 tmpld = cexpl(tmpld);
946 tmpld = clogl(tmpld);
947 tmpld = csinl(tmpld);
948 tmpld = csinhl(tmpld);
949 tmpld = csqrtl(tmpld);
950 tmpld = ctanl(tmpld);
951 tmpld = ctanhl(tmpld);
952 tmpld = cpowl(tmpld, tmpld);
953 tmpld = cprojl(tmpld);
954 ],[glibcxx_cv_c99_complex=yes], [glibcxx_cv_c99_complex=no])
956 AC_MSG_RESULT($glibcxx_cv_c99_complex)
957 if test x"$glibcxx_cv_c99_complex" = x"yes"; then
958 AC_DEFINE(_GLIBCXX_USE_C99_COMPLEX, 1,
959 [Define if C99 functions in <complex.h> should be used in
960 <complex>. Using compiler builtins for these functions requires
961 corresponding C99 library functions to be present.])
964 # Check for the existence in <stdio.h> of vscanf, et. al.
965 AC_MSG_CHECKING([for ISO C99 support in <stdio.h>])
966 AC_CACHE_VAL(glibcxx_cv_c99_stdio, [
967 GCC_TRY_COMPILE_OR_LINK(
970 void foo(char* fmt, ...)
972 va_list args; va_start(args, fmt);
973 vfscanf(stderr, "%i", args);
975 vsnprintf(fmt, 0, "%i", args);
976 vsscanf(fmt, "%i", args);
978 [snprintf("12", 0, "%i");],
979 [glibcxx_cv_c99_stdio=yes], [glibcxx_cv_c99_stdio=no])
981 AC_MSG_RESULT($glibcxx_cv_c99_stdio)
983 # Check for the existence in <stdlib.h> of lldiv_t, et. al.
984 AC_MSG_CHECKING([for ISO C99 support in <stdlib.h>])
985 AC_CACHE_VAL(glibcxx_cv_c99_stdlib, [
986 GCC_TRY_COMPILE_OR_LINK(
989 volatile long double ld;
990 volatile unsigned long long ll;
993 f = strtof("gnu", &tmp);
994 ld = strtold("gnu", &tmp);
995 ll = strtoll("gnu", &tmp, 10);
996 ll = strtoull("gnu", &tmp, 10);
998 mydivt = lldiv(10,1);
1003 ],[glibcxx_cv_c99_stdlib=yes], [glibcxx_cv_c99_stdlib=no])
1005 AC_MSG_RESULT($glibcxx_cv_c99_stdlib)
1007 # Check for the existence in <wchar.h> of wcstold, etc.
1008 glibcxx_cv_c99_wchar=no;
1009 if test x"$ac_has_wchar_h" = xyes &&
1010 test x"$ac_has_wctype_h" = xyes; then
1011 AC_MSG_CHECKING([for ISO C99 support in <wchar.h>])
1012 AC_TRY_COMPILE([#include <wchar.h>
1019 ],[],[glibcxx_cv_c99_wchar=yes], [glibcxx_cv_c99_wchar=no])
1021 # Checks for wide character functions that may not be present.
1022 # Injection of these is wrapped with guard macros.
1023 # NB: only put functions here, instead of immediately above, if
1024 # absolutely necessary.
1025 AC_TRY_COMPILE([#include <wchar.h>
1026 namespace test { using ::vfwscanf; } ], [],
1027 [AC_DEFINE(HAVE_VFWSCANF,1,
1028 [Defined if vfwscanf exists.])],[])
1030 AC_TRY_COMPILE([#include <wchar.h>
1031 namespace test { using ::vswscanf; } ], [],
1032 [AC_DEFINE(HAVE_VSWSCANF,1,
1033 [Defined if vswscanf exists.])],[])
1035 AC_TRY_COMPILE([#include <wchar.h>
1036 namespace test { using ::vwscanf; } ], [],
1037 [AC_DEFINE(HAVE_VWSCANF,1,[Defined if vwscanf exists.])],[])
1039 AC_TRY_COMPILE([#include <wchar.h>
1040 namespace test { using ::wcstof; } ], [],
1041 [AC_DEFINE(HAVE_WCSTOF,1,[Defined if wcstof exists.])],[])
1043 AC_TRY_COMPILE([#include <wctype.h>],
1044 [ wint_t t; int i = iswblank(t);],
1045 [AC_DEFINE(HAVE_ISWBLANK,1,
1046 [Defined if iswblank exists.])],[])
1048 AC_MSG_RESULT($glibcxx_cv_c99_wchar)
1051 # Option parsed, now set things appropriately.
1052 if test x"$glibcxx_cv_c99_math" = x"no" ||
1053 test x"$glibcxx_cv_c99_complex" = x"no" ||
1054 test x"$glibcxx_cv_c99_stdio" = x"no" ||
1055 test x"$glibcxx_cv_c99_stdlib" = x"no" ||
1056 test x"$glibcxx_cv_c99_wchar" = x"no"; then
1059 AC_DEFINE(_GLIBCXX_USE_C99, 1,
1060 [Define if C99 functions or macros from <wchar.h>, <math.h>,
1061 <complex.h>, <stdio.h>, and <stdlib.h> can be used or exposed.])
1064 gcc_no_link="$ac_save_gcc_no_link"
1065 LIBS="$ac_save_LIBS"
1066 CXXFLAGS="$ac_save_CXXFLAGS"
1070 AC_MSG_CHECKING([for fully enabled ISO C99 support])
1071 AC_MSG_RESULT($enable_c99)
1076 dnl Check for clock_gettime, nanosleep and sched_yield, used in the
1077 dnl implementation of 20.8.5 [time.clock], and 30.2.2 [thread.thread.this]
1078 dnl in the current C++0x working draft.
1080 dnl --enable-libstdcxx-time
1081 dnl --enable-libstdcxx-time=yes
1082 dnl checks for the availability of monotonic and realtime clocks,
1083 dnl nanosleep and sched_yield in libc and libposix4 and, in case, links
1085 dnl --enable-libstdcxx-time=rt
1086 dnl also searches (and, in case, links) librt. Note that this is
1087 dnl not always desirable because, in glibc, for example, in turn it
1088 dnl triggers the linking of libpthread too, which activates locking,
1089 dnl a large overhead for single-thread programs.
1090 dnl --enable-libstdcxx-time=no
1091 dnl --disable-libstdcxx-time
1092 dnl disables the checks completely
1094 AC_DEFUN([GLIBCXX_ENABLE_LIBSTDCXX_TIME], [
1096 AC_MSG_CHECKING([for clock_gettime, nanosleep and sched_yield])
1097 GLIBCXX_ENABLE(libstdcxx-time,$1,[=KIND],
1098 [use KIND for check type],
1103 ac_save_CXXFLAGS="$CXXFLAGS"
1104 CXXFLAGS="$CXXFLAGS -fno-exceptions"
1105 ac_save_LIBS="$LIBS"
1107 ac_has_clock_monotonic=no;
1108 ac_has_clock_realtime=no;
1110 if test x"$enable_libstdcxx_time" != x"no"; then
1112 if test x"$enable_libstdcxx_time" = x"rt"; then
1113 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
1114 AC_SEARCH_LIBS(nanosleep, [rt posix4])
1116 AC_SEARCH_LIBS(clock_gettime, [posix4])
1117 AC_SEARCH_LIBS(nanosleep, [posix4])
1120 case "$ac_cv_search_clock_gettime" in
1121 -l*) GLIBCXX_LIBS=$ac_cv_search_clock_gettime
1124 case "$ac_cv_search_nanosleep" in
1125 -l*) GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_nanosleep"
1129 AC_SEARCH_LIBS(sched_yield, [rt posix4])
1131 case "$ac_cv_search_sched_yield" in
1133 GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_sched_yield"
1134 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
1135 [ Defined if sched_yield is available. ])
1138 if test x"$enable_libstdcxx_time" = x"rt"; then
1139 GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_sched_yield"
1140 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
1141 [ Defined if sched_yield is available. ])
1145 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
1146 [ Defined if sched_yield is available. ])
1150 AC_CHECK_HEADERS(unistd.h, ac_has_unistd_h=yes, ac_has_unistd_h=no)
1152 if test x"$ac_has_unistd_h" = x"yes"; then
1153 AC_MSG_CHECKING([for monotonic clock])
1155 [#include <unistd.h>
1158 [#if _POSIX_TIMERS > 0 && defined(_POSIX_MONOTONIC_CLOCK)
1161 clock_gettime(CLOCK_MONOTONIC, &tp);
1162 ], [ac_has_clock_monotonic=yes], [ac_has_clock_monotonic=no])
1164 AC_MSG_RESULT($ac_has_clock_monotonic)
1166 AC_MSG_CHECKING([for realtime clock])
1168 [#include <unistd.h>
1171 [#if _POSIX_TIMERS > 0
1174 clock_gettime(CLOCK_REALTIME, &tp);
1175 ], [ac_has_clock_realtime=yes], [ac_has_clock_realtime=no])
1177 AC_MSG_RESULT($ac_has_clock_realtime)
1179 AC_MSG_CHECKING([for nanosleep])
1181 [#include <unistd.h>
1184 [#if _POSIX_TIMERS > 0
1188 ], [ac_has_nanosleep=yes], [ac_has_nanosleep=no])
1190 AC_MSG_RESULT($ac_has_nanosleep)
1194 if test x"$ac_has_clock_monotonic" = x"yes"; then
1195 AC_DEFINE(_GLIBCXX_USE_CLOCK_MONOTONIC, 1,
1196 [ Defined if clock_gettime has monotonic clock support. ])
1199 if test x"$ac_has_clock_realtime" = x"yes"; then
1200 AC_DEFINE(_GLIBCXX_USE_CLOCK_REALTIME, 1,
1201 [ Defined if clock_gettime has realtime clock support. ])
1204 if test x"$ac_has_nanosleep" = x"yes"; then
1205 AC_DEFINE(_GLIBCXX_USE_NANOSLEEP, 1,
1206 [ Defined if nanosleep is available. ])
1209 AC_SUBST(GLIBCXX_LIBS)
1211 CXXFLAGS="$ac_save_CXXFLAGS"
1212 LIBS="$ac_save_LIBS"
1217 dnl Check for gettimeofday, used in the implementation of 20.8.5
1218 dnl [time.clock] in the current C++0x working draft.
1220 AC_DEFUN([GLIBCXX_CHECK_GETTIMEOFDAY], [
1222 AC_MSG_CHECKING([for gettimeofday])
1226 ac_save_CXXFLAGS="$CXXFLAGS"
1227 CXXFLAGS="$CXXFLAGS -fno-exceptions"
1229 ac_has_gettimeofday=no;
1230 AC_CHECK_HEADERS(sys/time.h, ac_has_sys_time_h=yes, ac_has_sys_time_h=no)
1231 if test x"$ac_has_sys_time_h" = x"yes"; then
1232 AC_MSG_CHECKING([for gettimeofday])
1233 GCC_TRY_COMPILE_OR_LINK([#include <sys/time.h>],
1234 [timeval tv; gettimeofday(&tv, 0);],
1235 [ac_has_gettimeofday=yes], [ac_has_gettimeofday=no])
1237 AC_MSG_RESULT($ac_has_gettimeofday)
1240 if test x"$ac_has_gettimeofday" = x"yes"; then
1241 AC_DEFINE(_GLIBCXX_USE_GETTIMEOFDAY, 1,
1242 [ Defined if gettimeofday is available. ])
1245 CXXFLAGS="$ac_save_CXXFLAGS"
1250 dnl Check for ISO/IEC 9899:1999 "C99" support to ISO/IEC DTR 19768 "TR1"
1251 dnl facilities in Chapter 8, "C compatibility".
1253 AC_DEFUN([GLIBCXX_CHECK_C99_TR1], [
1258 # Use -std=c++98 because the default (-std=gnu++98) leaves __STRICT_ANSI__
1259 # undefined and fake C99 facilities may be spuriously enabled.
1260 ac_save_CXXFLAGS="$CXXFLAGS"
1261 CXXFLAGS="$CXXFLAGS -std=c++98"
1263 # Check for the existence of <complex.h> complex math functions used
1265 AC_CHECK_HEADERS(complex.h, ac_has_complex_h=yes, ac_has_complex_h=no)
1266 ac_c99_complex_tr1=no;
1267 if test x"$ac_has_complex_h" = x"yes"; then
1268 AC_MSG_CHECKING([for ISO C99 support to TR1 in <complex.h>])
1269 AC_TRY_COMPILE([#include <complex.h>],
1270 [typedef __complex__ float float_type; float_type tmpf;
1277 typedef __complex__ double double_type; double_type tmpd;
1284 typedef __complex__ long double ld_type; ld_type tmpld;
1291 ],[ac_c99_complex_tr1=yes], [ac_c99_complex_tr1=no])
1293 AC_MSG_RESULT($ac_c99_complex_tr1)
1294 if test x"$ac_c99_complex_tr1" = x"yes"; then
1295 AC_DEFINE(_GLIBCXX_USE_C99_COMPLEX_TR1, 1,
1296 [Define if C99 functions in <complex.h> should be used in
1297 <tr1/complex>. Using compiler builtins for these functions
1298 requires corresponding C99 library functions to be present.])
1301 # Check for the existence of <ctype.h> functions.
1302 AC_MSG_CHECKING([for ISO C99 support to TR1 in <ctype.h>])
1303 AC_CACHE_VAL(glibcxx_cv_c99_ctype_tr1, [
1304 AC_TRY_COMPILE([#include <ctype.h>],
1308 ],[glibcxx_cv_c99_ctype_tr1=yes],
1309 [glibcxx_cv_c99_ctype_tr1=no])
1311 AC_MSG_RESULT($glibcxx_cv_c99_ctype_tr1)
1312 if test x"$glibcxx_cv_c99_ctype_tr1" = x"yes"; then
1313 AC_DEFINE(_GLIBCXX_USE_C99_CTYPE_TR1, 1,
1314 [Define if C99 functions in <ctype.h> should be imported in
1315 <tr1/cctype> in namespace std::tr1.])
1318 # Check for the existence of <fenv.h> functions.
1319 AC_CHECK_HEADERS(fenv.h, ac_has_fenv_h=yes, ac_has_fenv_h=no)
1321 if test x"$ac_has_fenv_h" = x"yes"; then
1322 AC_MSG_CHECKING([for ISO C99 support to TR1 in <fenv.h>])
1323 AC_TRY_COMPILE([#include <fenv.h>],
1328 ret = feclearexcept(except);
1329 ret = fegetexceptflag(pflag, except);
1330 ret = feraiseexcept(except);
1331 ret = fesetexceptflag(pflag, except);
1332 ret = fetestexcept(except);
1334 ret = fesetround(mode);
1335 ret = fegetenv(penv);
1336 ret = feholdexcept(penv);
1337 ret = fesetenv(penv);
1338 ret = feupdateenv(penv);
1339 ],[ac_c99_fenv_tr1=yes], [ac_c99_fenv_tr1=no])
1341 AC_MSG_RESULT($ac_c99_fenv_tr1)
1342 if test x"$ac_c99_fenv_tr1" = x"yes"; then
1343 AC_DEFINE(_GLIBCXX_USE_C99_FENV_TR1, 1,
1344 [Define if C99 functions in <fenv.h> should be imported in
1345 <tr1/cfenv> in namespace std::tr1.])
1348 # Check for the existence of <stdint.h> types.
1349 AC_MSG_CHECKING([for ISO C99 support to TR1 in <stdint.h>])
1350 AC_CACHE_VAL(glibcxx_cv_c99_stdint_tr1, [
1351 AC_TRY_COMPILE([#define __STDC_LIMIT_MACROS
1352 #define __STDC_CONSTANT_MACROS
1353 #include <stdint.h>],
1354 [typedef int8_t my_int8_t;
1355 my_int8_t i8 = INT8_MIN;
1357 typedef int16_t my_int16_t;
1358 my_int16_t i16 = INT16_MIN;
1360 typedef int32_t my_int32_t;
1361 my_int32_t i32 = INT32_MIN;
1363 typedef int64_t my_int64_t;
1364 my_int64_t i64 = INT64_MIN;
1366 typedef int_fast8_t my_int_fast8_t;
1367 my_int_fast8_t if8 = INT_FAST8_MIN;
1368 if8 = INT_FAST8_MAX;
1369 typedef int_fast16_t my_int_fast16_t;
1370 my_int_fast16_t if16 = INT_FAST16_MIN;
1371 if16 = INT_FAST16_MAX;
1372 typedef int_fast32_t my_int_fast32_t;
1373 my_int_fast32_t if32 = INT_FAST32_MIN;
1374 if32 = INT_FAST32_MAX;
1375 typedef int_fast64_t my_int_fast64_t;
1376 my_int_fast64_t if64 = INT_FAST64_MIN;
1377 if64 = INT_FAST64_MAX;
1378 typedef int_least8_t my_int_least8_t;
1379 my_int_least8_t il8 = INT_LEAST8_MIN;
1380 il8 = INT_LEAST8_MAX;
1381 typedef int_least16_t my_int_least16_t;
1382 my_int_least16_t il16 = INT_LEAST16_MIN;
1383 il16 = INT_LEAST16_MAX;
1384 typedef int_least32_t my_int_least32_t;
1385 my_int_least32_t il32 = INT_LEAST32_MIN;
1386 il32 = INT_LEAST32_MAX;
1387 typedef int_least64_t my_int_least64_t;
1388 my_int_least64_t il64 = INT_LEAST64_MIN;
1389 il64 = INT_LEAST64_MAX;
1390 typedef intmax_t my_intmax_t;
1391 my_intmax_t im = INTMAX_MAX;
1393 typedef intptr_t my_intptr_t;
1394 my_intptr_t ip = INTPTR_MAX;
1396 typedef uint8_t my_uint8_t;
1397 my_uint8_t ui8 = UINT8_MAX;
1399 typedef uint16_t my_uint16_t;
1400 my_uint16_t ui16 = UINT16_MAX;
1402 typedef uint32_t my_uint32_t;
1403 my_uint32_t ui32 = UINT32_MAX;
1405 typedef uint64_t my_uint64_t;
1406 my_uint64_t ui64 = UINT64_MAX;
1408 typedef uint_fast8_t my_uint_fast8_t;
1409 my_uint_fast8_t uif8 = UINT_FAST8_MAX;
1410 uif8 = UINT_FAST8_MAX;
1411 typedef uint_fast16_t my_uint_fast16_t;
1412 my_uint_fast16_t uif16 = UINT_FAST16_MAX;
1413 uif16 = UINT_FAST16_MAX;
1414 typedef uint_fast32_t my_uint_fast32_t;
1415 my_uint_fast32_t uif32 = UINT_FAST32_MAX;
1416 uif32 = UINT_FAST32_MAX;
1417 typedef uint_fast64_t my_uint_fast64_t;
1418 my_uint_fast64_t uif64 = UINT_FAST64_MAX;
1419 uif64 = UINT_FAST64_MAX;
1420 typedef uint_least8_t my_uint_least8_t;
1421 my_uint_least8_t uil8 = UINT_LEAST8_MAX;
1422 uil8 = UINT_LEAST8_MAX;
1423 typedef uint_least16_t my_uint_least16_t;
1424 my_uint_least16_t uil16 = UINT_LEAST16_MAX;
1425 uil16 = UINT_LEAST16_MAX;
1426 typedef uint_least32_t my_uint_least32_t;
1427 my_uint_least32_t uil32 = UINT_LEAST32_MAX;
1428 uil32 = UINT_LEAST32_MAX;
1429 typedef uint_least64_t my_uint_least64_t;
1430 my_uint_least64_t uil64 = UINT_LEAST64_MAX;
1431 uil64 = UINT_LEAST64_MAX;
1432 typedef uintmax_t my_uintmax_t;
1433 my_uintmax_t uim = UINTMAX_MAX;
1435 typedef uintptr_t my_uintptr_t;
1436 my_uintptr_t uip = UINTPTR_MAX;
1438 ],[glibcxx_cv_c99_stdint_tr1=yes],
1439 [glibcxx_cv_c99_stdint_tr1=no])
1441 AC_MSG_RESULT($glibcxx_cv_c99_stdint_tr1)
1442 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
1443 AC_DEFINE(_GLIBCXX_USE_C99_STDINT_TR1, 1,
1444 [Define if C99 types in <stdint.h> should be imported in
1445 <tr1/cstdint> in namespace std::tr1.])
1448 # Check for the existence of <math.h> functions.
1449 AC_MSG_CHECKING([for ISO C99 support to TR1 in <math.h>])
1450 AC_CACHE_VAL(glibcxx_cv_c99_math_tr1, [
1451 AC_TRY_COMPILE([#include <math.h>],
1452 [typedef double_t my_double_t;
1453 typedef float_t my_float_t;
1467 copysignf(0.0f, 0.0f);
1468 copysignl(0.0l, 0.0l);
1485 fmaf(0.0f, 0.0f, 0.0f);
1486 fmal(0.0l, 0.0l, 0.0l);
1529 nextafter(0.0, 0.0);
1530 nextafterf(0.0f, 0.0f);
1531 nextafterl(0.0l, 0.0l);
1532 nexttoward(0.0, 0.0);
1533 nexttowardf(0.0f, 0.0f);
1534 nexttowardl(0.0l, 0.0l);
1535 remainder(0.0, 0.0);
1536 remainderf(0.0f, 0.0f);
1537 remainderl(0.0l, 0.0l);
1538 remquo(0.0, 0.0, 0);
1539 remquof(0.0f, 0.0f, 0);
1540 remquol(0.0l, 0.0l, 0);
1559 ],[glibcxx_cv_c99_math_tr1=yes], [glibcxx_cv_c99_math_tr1=no])
1561 AC_MSG_RESULT($glibcxx_cv_c99_math_tr1)
1562 if test x"$glibcxx_cv_c99_math_tr1" = x"yes"; then
1563 AC_DEFINE(_GLIBCXX_USE_C99_MATH_TR1, 1,
1564 [Define if C99 functions or macros in <math.h> should be imported
1565 in <tr1/cmath> in namespace std::tr1.])
1568 # Check for the existence of <inttypes.h> functions (NB: doesn't make
1569 # sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1).
1570 ac_c99_inttypes_tr1=no;
1571 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
1572 AC_MSG_CHECKING([for ISO C99 support to TR1 in <inttypes.h>])
1573 AC_TRY_COMPILE([#include <inttypes.h>],
1574 [intmax_t i, numer, denom, base;
1577 intmax_t ret = imaxabs(i);
1578 imaxdiv_t dret = imaxdiv(numer, denom);
1579 ret = strtoimax(s, endptr, base);
1580 uintmax_t uret = strtoumax(s, endptr, base);
1581 ],[ac_c99_inttypes_tr1=yes], [ac_c99_inttypes_tr1=no])
1583 AC_MSG_RESULT($ac_c99_inttypes_tr1)
1584 if test x"$ac_c99_inttypes_tr1" = x"yes"; then
1585 AC_DEFINE(_GLIBCXX_USE_C99_INTTYPES_TR1, 1,
1586 [Define if C99 functions in <inttypes.h> should be imported in
1587 <tr1/cinttypes> in namespace std::tr1.])
1590 # Check for the existence of whcar_t <inttypes.h> functions (NB: doesn't
1591 # make sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1).
1592 ac_c99_inttypes_wchar_t_tr1=no;
1593 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
1594 AC_MSG_CHECKING([for wchar_t ISO C99 support to TR1 in <inttypes.h>])
1595 AC_TRY_COMPILE([#include <inttypes.h>],
1599 intmax_t ret = wcstoimax(s, endptr, base);
1600 uintmax_t uret = wcstoumax(s, endptr, base);
1601 ],[ac_c99_inttypes_wchar_t_tr1=yes],
1602 [ac_c99_inttypes_wchar_t_tr1=no])
1604 AC_MSG_RESULT($ac_c99_inttypes_wchar_t_tr1)
1605 if test x"$ac_c99_inttypes_wchar_t_tr1" = x"yes"; then
1606 AC_DEFINE(_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1, 1,
1607 [Define if wchar_t C99 functions in <inttypes.h> should be
1608 imported in <tr1/cinttypes> in namespace std::tr1.])
1611 # Check for the existence of the <stdbool.h> header.
1612 AC_CHECK_HEADERS(stdbool.h)
1614 CXXFLAGS="$ac_save_CXXFLAGS"
1619 dnl Check whether "/dev/random" and "/dev/urandom" are available for the
1620 dnl random_device of "TR1" (Chapter 5.1, "Random number generation").
1622 AC_DEFUN([GLIBCXX_CHECK_RANDOM_TR1], [
1624 AC_MSG_CHECKING([for "/dev/random" and "/dev/urandom" for TR1 random_device])
1625 AC_CACHE_VAL(glibcxx_cv_random_tr1, [
1626 if test -r /dev/random && test -r /dev/urandom; then
1627 glibcxx_cv_random_tr1=yes;
1629 glibcxx_cv_random_tr1=no;
1632 AC_MSG_RESULT($glibcxx_cv_random_tr1)
1634 if test x"$glibcxx_cv_random_tr1" = x"yes"; then
1635 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1, 1,
1636 [Define if /dev/random and /dev/urandom are available for
1637 the random_device of TR1 (Chapter 5.1).])
1643 dnl Check whether EOF, SEEK_CUR, and SEEK_END have the most common values:
1644 dnl in that case including <cstdio> in some C++ headers can be avoided.
1646 AC_DEFUN([GLIBCXX_CHECK_STDIO_MACROS], [
1648 AC_MSG_CHECKING([for EOF == -1, SEEK_CUR == 1, SEEK_END == 2])
1649 AC_CACHE_VAL(glibcxx_cv_stdio_macros, [
1650 AC_TRY_COMPILE([#include <stdio.h>],
1651 [#if ((EOF != -1) || (SEEK_CUR != 1) || (SEEK_END != 2))
1654 ], [glibcxx_cv_stdio_macros=yes],
1655 [glibcxx_cv_stdio_macros=no])
1657 AC_MSG_RESULT($glibcxx_cv_stdio_macros)
1658 if test x"$glibcxx_cv_stdio_macros" = x"yes"; then
1659 AC_DEFINE(_GLIBCXX_STDIO_MACROS, 1,
1660 [Define if EOF == -1, SEEK_CUR == 1, SEEK_END == 2.])
1666 dnl Check whether macros, etc are present for <system_error>
1668 AC_DEFUN([GLIBCXX_CHECK_SYSTEM_ERROR], [
1670 m4_pushdef([n_syserr], [1])dnl
1671 m4_foreach([syserr], [EOWNERDEAD, ENOTRECOVERABLE, ENOLINK, EPROTO, ENODATA,
1672 ENOSR, ENOSTR, ETIME, EBADMSG, ECANCELED,
1673 EOVERFLOW, ENOTSUP, EIDRM, ETXTBSY],
1674 [m4_pushdef([SYSERR], m4_toupper(syserr))dnl
1675 AC_MSG_CHECKING([for syserr])
1676 AC_CACHE_VAL([glibcxx_cv_system_error[]n_syserr], [
1677 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <errno.h>]],
1678 [int i = syserr;])],
1679 [glibcxx_cv_system_error[]n_syserr=yes],
1680 [glibcxx_cv_system_error[]n_syserr=no])
1682 AC_MSG_RESULT([$glibcxx_cv_system_error[]n_syserr])
1683 if test x"$glibcxx_cv_system_error[]n_syserr" = x"yes"; then
1684 AC_DEFINE([HAVE_]SYSERR, 1, [Define if ]syserr[ exists.])
1686 m4_define([n_syserr], m4_incr(n_syserr))dnl
1687 m4_popdef([SYSERR])dnl
1689 m4_popdef([n_syserr])dnl
1693 dnl Check for what type of C headers to use.
1695 dnl --enable-cheaders= [does stuff].
1696 dnl --disable-cheaders [does not do anything, really].
1697 dnl + Usage: GLIBCXX_ENABLE_CHEADERS[(DEFAULT)]
1698 dnl Where DEFAULT is either 'c' or 'c_std' or 'c_global'.
1700 AC_DEFUN([GLIBCXX_ENABLE_CHEADERS], [
1701 GLIBCXX_ENABLE(cheaders,$1,[=KIND],
1702 [construct "C" headers for g++], [permit c|c_std|c_global])
1703 AC_MSG_NOTICE("C" header strategy set to $enable_cheaders)
1705 C_INCLUDE_DIR='${glibcxx_srcdir}/include/'$enable_cheaders
1707 # Allow overrides to configure.host here.
1708 if test $enable_cheaders = c_global; then
1712 if test $enable_cheaders = c_global || test $enable_cheaders = c_std; then
1716 AC_SUBST(C_INCLUDE_DIR)
1717 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C, test $enable_cheaders = c)
1718 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C_STD, test $enable_cheaders = c_std)
1719 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C_GLOBAL, test $enable_cheaders = c_global)
1720 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_COMPATIBILITY, test $c_compatibility = yes)
1721 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_EXTRA, test $c_extra = yes)
1726 dnl Check for which locale library to use. The choice is mapped to
1727 dnl a subdirectory of config/locale.
1729 dnl Default is generic.
1731 AC_DEFUN([GLIBCXX_ENABLE_CLOCALE], [
1732 GLIBCXX_ENABLE(clocale,auto,[@<:@=MODEL@:>@],
1733 [use MODEL for target locale package],
1734 [permit generic|gnu|ieee_1003.1-2001|yes|no|auto])
1736 # Deal with gettext issues. Default to not using it (=no) until we detect
1737 # support for it later. Let the user turn it off via --e/d, but let that
1738 # default to on for easier handling.
1741 AC_HELP_STRING([--enable-nls],[use Native Language Support (default)]),
1745 # Either a known packaage, or "auto"
1746 if test $enable_clocale = no || test $enable_clocale = yes; then
1749 enable_clocale_flag=$enable_clocale
1751 # Probe for locale model to use if none specified.
1752 # Default to "generic".
1753 if test $enable_clocale_flag = auto; then
1754 case ${target_os} in
1755 linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
1756 enable_clocale_flag=gnu
1759 enable_clocale_flag=darwin
1762 enable_clocale_flag=generic
1767 # Sanity check model, and test for special functionality.
1768 if test $enable_clocale_flag = gnu; then
1769 AC_EGREP_CPP([_GLIBCXX_ok], [
1770 #include <features.h>
1771 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 2)
1774 ], enable_clocale_flag=gnu, enable_clocale_flag=generic)
1776 if test $enable_clocale = auto; then
1777 # Test for bugs early in glibc-2.2.x series
1779 #define _GNU_SOURCE 1
1782 #if __GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ > 2)
1783 extern __typeof(newlocale) __newlocale;
1784 extern __typeof(duplocale) __duplocale;
1785 extern __typeof(strcoll_l) __strcoll_l;
1789 const char __one[] = "Äuglein Augmen";
1790 const char __two[] = "Äuglein";
1795 loc = __newlocale(1 << LC_ALL, "de_DE", 0);
1796 loc_dup = __duplocale(loc);
1797 i = __strcoll_l(__one, __two, loc);
1798 j = __strcoll_l(__one, __two, loc_dup);
1802 [enable_clocale_flag=gnu],[enable_clocale_flag=generic],
1803 [enable_clocale_flag=generic])
1806 # Set it to scream when it hurts.
1807 ac_save_CFLAGS="$CFLAGS"
1808 CFLAGS="-Wimplicit-function-declaration -Werror"
1810 # Use strxfrm_l if available.
1811 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1813 #include <locale.h>],
1814 [char s[128]; __locale_t loc; strxfrm_l(s, "C", 5, loc);],
1815 AC_DEFINE(HAVE_STRXFRM_L, 1,
1816 [Define if strxfrm_l is available in <string.h>.]),)
1818 # Use strerror_l if available.
1819 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1821 #include <locale.h>],
1822 [__locale_t loc; strerror_l(5, loc);],
1823 AC_DEFINE(HAVE_STRERROR_L, 1,
1824 [Define if strerror_l is available in <string.h>.]),)
1826 CFLAGS="$ac_save_CFLAGS"
1829 # Perhaps use strerror_r if available, and strerror_l isn't.
1830 ac_save_CFLAGS="$CFLAGS"
1831 CFLAGS="-Wimplicit-function-declaration -Werror"
1832 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1834 #include <locale.h>],
1835 [char s[128]; strerror_r(5, s, 128);],
1836 AC_DEFINE(HAVE_STRERROR_R, 1,
1837 [Define if strerror_r is available in <string.h>.]),)
1838 CFLAGS="$ac_save_CFLAGS"
1840 # Set configure bits for specified locale package
1841 AC_MSG_CHECKING([for C locale to use])
1842 case ${enable_clocale_flag} in
1844 AC_MSG_RESULT(generic)
1846 CLOCALE_H=config/locale/generic/c_locale.h
1847 CLOCALE_CC=config/locale/generic/c_locale.cc
1848 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1849 CCOLLATE_CC=config/locale/generic/collate_members.cc
1850 CCTYPE_CC=config/locale/generic/ctype_members.cc
1851 CMESSAGES_H=config/locale/generic/messages_members.h
1852 CMESSAGES_CC=config/locale/generic/messages_members.cc
1853 CMONEY_CC=config/locale/generic/monetary_members.cc
1854 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1855 CTIME_H=config/locale/generic/time_members.h
1856 CTIME_CC=config/locale/generic/time_members.cc
1857 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1860 AC_MSG_RESULT(darwin or freebsd)
1862 CLOCALE_H=config/locale/generic/c_locale.h
1863 CLOCALE_CC=config/locale/generic/c_locale.cc
1864 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1865 CCOLLATE_CC=config/locale/generic/collate_members.cc
1866 CCTYPE_CC=config/locale/darwin/ctype_members.cc
1867 CMESSAGES_H=config/locale/generic/messages_members.h
1868 CMESSAGES_CC=config/locale/generic/messages_members.cc
1869 CMONEY_CC=config/locale/generic/monetary_members.cc
1870 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1871 CTIME_H=config/locale/generic/time_members.h
1872 CTIME_CC=config/locale/generic/time_members.cc
1873 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1879 # Declare intention to use gettext, and add support for specific
1881 # For some reason, ALL_LINGUAS has to be before AM-GNU-GETTEXT
1884 # Don't call AM-GNU-GETTEXT here. Instead, assume glibc.
1885 AC_CHECK_PROG(check_msgfmt, msgfmt, yes, no)
1886 if test x"$check_msgfmt" = x"yes" && test x"$enable_nls" = x"yes"; then
1889 # Export the build objects.
1890 for ling in $ALL_LINGUAS; do \
1891 glibcxx_MOFILES="$glibcxx_MOFILES $ling.mo"; \
1892 glibcxx_POFILES="$glibcxx_POFILES $ling.po"; \
1894 AC_SUBST(glibcxx_MOFILES)
1895 AC_SUBST(glibcxx_POFILES)
1897 CLOCALE_H=config/locale/gnu/c_locale.h
1898 CLOCALE_CC=config/locale/gnu/c_locale.cc
1899 CCODECVT_CC=config/locale/gnu/codecvt_members.cc
1900 CCOLLATE_CC=config/locale/gnu/collate_members.cc
1901 CCTYPE_CC=config/locale/gnu/ctype_members.cc
1902 CMESSAGES_H=config/locale/gnu/messages_members.h
1903 CMESSAGES_CC=config/locale/gnu/messages_members.cc
1904 CMONEY_CC=config/locale/gnu/monetary_members.cc
1905 CNUMERIC_CC=config/locale/gnu/numeric_members.cc
1906 CTIME_H=config/locale/gnu/time_members.h
1907 CTIME_CC=config/locale/gnu/time_members.cc
1908 CLOCALE_INTERNAL_H=config/locale/gnu/c++locale_internal.h
1911 AC_MSG_RESULT(IEEE 1003.1)
1913 CLOCALE_H=config/locale/ieee_1003.1-2001/c_locale.h
1914 CLOCALE_CC=config/locale/ieee_1003.1-2001/c_locale.cc
1915 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1916 CCOLLATE_CC=config/locale/generic/collate_members.cc
1917 CCTYPE_CC=config/locale/generic/ctype_members.cc
1918 CMESSAGES_H=config/locale/ieee_1003.1-2001/messages_members.h
1919 CMESSAGES_CC=config/locale/ieee_1003.1-2001/messages_members.cc
1920 CMONEY_CC=config/locale/generic/monetary_members.cc
1921 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1922 CTIME_H=config/locale/generic/time_members.h
1923 CTIME_CC=config/locale/generic/time_members.cc
1924 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1928 # This is where the testsuite looks for locale catalogs, using the
1929 # -DLOCALEDIR define during testsuite compilation.
1930 glibcxx_localedir=${glibcxx_builddir}/po/share/locale
1931 AC_SUBST(glibcxx_localedir)
1933 # A standalone libintl (e.g., GNU libintl) may be in use.
1934 if test $USE_NLS = yes; then
1935 AC_CHECK_HEADERS([libintl.h], [], USE_NLS=no)
1936 AC_SEARCH_LIBS(gettext, intl, [], USE_NLS=no)
1938 if test $USE_NLS = yes; then
1939 AC_DEFINE(_GLIBCXX_USE_NLS, 1,
1940 [Define if NLS translations are to be used.])
1945 AC_SUBST(CMESSAGES_H)
1946 AC_SUBST(CCODECVT_CC)
1947 AC_SUBST(CCOLLATE_CC)
1949 AC_SUBST(CMESSAGES_CC)
1951 AC_SUBST(CNUMERIC_CC)
1954 AC_SUBST(CLOCALE_CC)
1955 AC_SUBST(CLOCALE_INTERNAL_H)
1960 dnl Check for which std::allocator base class to use. The choice is
1961 dnl mapped from a subdirectory of include/ext.
1965 AC_DEFUN([GLIBCXX_ENABLE_ALLOCATOR], [
1966 AC_MSG_CHECKING([for std::allocator base class])
1967 GLIBCXX_ENABLE(libstdcxx-allocator,auto,[=KIND],
1968 [use KIND for target std::allocator base],
1969 [permit new|malloc|mt|bitmap|pool|yes|no|auto])
1971 # If they didn't use this option switch, or if they specified --enable
1972 # with no specific model, we'll have to look for one. If they
1973 # specified --disable (???), do likewise.
1974 if test $enable_libstdcxx_allocator = no ||
1975 test $enable_libstdcxx_allocator = yes;
1977 enable_libstdcxx_allocator=auto
1980 # Either a known package, or "auto". Auto implies the default choice
1981 # for a particular platform.
1982 enable_libstdcxx_allocator_flag=$enable_libstdcxx_allocator
1984 # Probe for host-specific support if no specific model is specified.
1986 if test $enable_libstdcxx_allocator_flag = auto; then
1987 case ${target_os} in
1988 linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
1989 enable_libstdcxx_allocator_flag=new
1992 enable_libstdcxx_allocator_flag=new
1996 AC_MSG_RESULT($enable_libstdcxx_allocator_flag)
1999 # Set configure bits for specified locale package
2000 case ${enable_libstdcxx_allocator_flag} in
2002 ALLOCATOR_H=config/allocator/bitmap_allocator_base.h
2003 ALLOCATOR_NAME=__gnu_cxx::bitmap_allocator
2006 ALLOCATOR_H=config/allocator/malloc_allocator_base.h
2007 ALLOCATOR_NAME=__gnu_cxx::malloc_allocator
2010 ALLOCATOR_H=config/allocator/mt_allocator_base.h
2011 ALLOCATOR_NAME=__gnu_cxx::__mt_alloc
2014 ALLOCATOR_H=config/allocator/new_allocator_base.h
2015 ALLOCATOR_NAME=__gnu_cxx::new_allocator
2018 ALLOCATOR_H=config/allocator/pool_allocator_base.h
2019 ALLOCATOR_NAME=__gnu_cxx::__pool_alloc
2023 AC_SUBST(ALLOCATOR_H)
2024 AC_SUBST(ALLOCATOR_NAME)
2029 dnl Check for whether the Boost-derived checks should be turned on.
2031 dnl --enable-concept-checks turns them on.
2032 dnl --disable-concept-checks leaves them off.
2033 dnl + Usage: GLIBCXX_ENABLE_CONCEPT_CHECKS[(DEFAULT)]
2034 dnl Where DEFAULT is either `yes' or `no'.
2036 AC_DEFUN([GLIBCXX_ENABLE_CONCEPT_CHECKS], [
2037 GLIBCXX_ENABLE(concept-checks,$1,,[use Boost-derived template checks])
2038 if test $enable_concept_checks = yes; then
2039 AC_DEFINE(_GLIBCXX_CONCEPT_CHECKS, 1,
2040 [Define to use concept checking code from the boost libraries.])
2045 dnl Check for parallel mode pre-requisites, including OpenMP support.
2047 dnl + Usage: GLIBCXX_ENABLE_PARALLEL
2049 AC_DEFUN([GLIBCXX_ENABLE_PARALLEL], [
2053 # See if configured libgomp/omp.h exists. (libgomp may be in
2054 # noconfigdirs but not explicitly disabled.)
2055 if test -f $glibcxx_builddir/../libgomp/omp.h; then
2056 enable_parallel=yes;
2058 AC_MSG_NOTICE([$glibcxx_builddir/../libgomp/omp.h not found])
2061 AC_MSG_CHECKING([for parallel mode support])
2062 AC_MSG_RESULT([$enable_parallel])
2063 GLIBCXX_CONDITIONAL(ENABLE_PARALLEL, test $enable_parallel = yes)
2068 dnl Check for which I/O library to use: stdio, or something specific.
2070 dnl Default is stdio.
2072 AC_DEFUN([GLIBCXX_ENABLE_CSTDIO], [
2073 AC_MSG_CHECKING([for underlying I/O to use])
2074 GLIBCXX_ENABLE(cstdio,stdio,[=PACKAGE],
2075 [use target-specific I/O package], [permit stdio])
2077 # Now that libio has been removed, you can have any color you want as long
2078 # as it's black. This is one big no-op until other packages are added, but
2079 # showing the framework never hurts.
2080 case ${enable_cstdio} in
2082 CSTDIO_H=config/io/c_io_stdio.h
2083 BASIC_FILE_H=config/io/basic_file_stdio.h
2084 BASIC_FILE_CC=config/io/basic_file_stdio.cc
2085 AC_MSG_RESULT(stdio)
2090 AC_SUBST(BASIC_FILE_H)
2091 AC_SUBST(BASIC_FILE_CC)
2096 dnl Check for "unusual" flags to pass to the compiler while building.
2098 dnl --enable-cxx-flags='-foo -bar -baz' is a general method for passing
2099 dnl experimental flags such as -fpch, -fIMI, -Dfloat=char, etc.
2100 dnl --disable-cxx-flags passes nothing.
2101 dnl + See http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00131.html
2102 dnl http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00284.html
2103 dnl http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00035.html
2104 dnl + Usage: GLIBCXX_ENABLE_CXX_FLAGS(default flags)
2105 dnl If "default flags" is an empty string, the effect is the same
2106 dnl as --disable or --enable=no.
2108 AC_DEFUN([GLIBCXX_ENABLE_CXX_FLAGS], [dnl
2109 AC_MSG_CHECKING([for extra compiler flags for building])
2110 GLIBCXX_ENABLE(cxx-flags,$1,[=FLAGS],
2111 [pass compiler FLAGS when building library],
2112 [case "x$enable_cxx_flags" in
2113 xno | x) enable_cxx_flags= ;;
2115 *) AC_MSG_ERROR(_g_switch needs compiler flags as arguments) ;;
2118 # Run through flags (either default or command-line) and set anything
2119 # extra (e.g., #defines) that must accompany particular g++ options.
2120 if test -n "$enable_cxx_flags"; then
2121 for f in $enable_cxx_flags; do
2125 *) # and we're trying to pass /what/ exactly?
2126 AC_MSG_ERROR([compiler flags start with a -]) ;;
2131 EXTRA_CXX_FLAGS="$enable_cxx_flags"
2132 AC_MSG_RESULT($EXTRA_CXX_FLAGS)
2133 AC_SUBST(EXTRA_CXX_FLAGS)
2138 dnl Check to see if debugging libraries are to be built.
2140 dnl --enable-libstdcxx-debug
2141 dnl builds a separate set of debugging libraries in addition to the
2142 dnl normal (shared, static) libstdc++ binaries.
2144 dnl --disable-libstdcxx-debug
2145 dnl builds only one (non-debug) version of libstdc++.
2147 dnl --enable-libstdcxx-debug-flags=FLAGS
2148 dnl iff --enable-debug == yes, then use FLAGS to build the debug library.
2150 dnl + Usage: GLIBCXX_ENABLE_DEBUG[(DEFAULT)]
2151 dnl Where DEFAULT is either `yes' or `no'.
2153 AC_DEFUN([GLIBCXX_ENABLE_DEBUG], [
2154 AC_MSG_CHECKING([for additional debug build])
2155 GLIBCXX_ENABLE(libstdcxx-debug,$1,,[build extra debug library])
2156 AC_MSG_RESULT($enable_libstdcxx_debug)
2157 GLIBCXX_CONDITIONAL(GLIBCXX_BUILD_DEBUG, test $enable_libstdcxx_debug = yes)
2162 dnl Check for explicit debug flags.
2164 dnl --enable-libstdcxx-debug-flags='-O1'
2165 dnl is a general method for passing flags to be used when
2166 dnl building debug libraries with --enable-debug.
2168 dnl --disable-libstdcxx-debug-flags does nothing.
2169 dnl + Usage: GLIBCXX_ENABLE_DEBUG_FLAGS(default flags)
2170 dnl If "default flags" is an empty string, the effect is the same
2171 dnl as --disable or --enable=no.
2173 AC_DEFUN([GLIBCXX_ENABLE_DEBUG_FLAGS], [
2174 GLIBCXX_ENABLE(libstdcxx-debug-flags,[$1],[=FLAGS],
2175 [pass compiler FLAGS when building debug library],
2176 [case "x$enable_libstdcxx_debug_flags" in
2177 xno | x) enable_libstdcxx_debug_flags= ;;
2179 *) AC_MSG_ERROR(_g_switch needs compiler flags as arguments) ;;
2182 # Option parsed, now set things appropriately
2183 DEBUG_FLAGS="$enable_libstdcxx_debug_flags"
2184 AC_SUBST(DEBUG_FLAGS)
2186 AC_MSG_NOTICE([Debug build flags set to $DEBUG_FLAGS])
2191 dnl Check if the user only wants a freestanding library implementation.
2193 dnl --disable-hosted-libstdcxx will turn off most of the library build,
2194 dnl installing only the headers required by [17.4.1.3] and the language
2195 dnl support library. More than that will be built (to keep the Makefiles
2196 dnl conveniently clean), but not installed.
2199 dnl is_hosted (yes/no)
2202 dnl _GLIBCXX_HOSTED (always defined, either to 1 or 0)
2204 AC_DEFUN([GLIBCXX_ENABLE_HOSTED], [
2205 AC_ARG_ENABLE([hosted-libstdcxx],
2206 AC_HELP_STRING([--disable-hosted-libstdcxx],
2207 [only build freestanding C++ runtime support]),,
2210 enable_hosted_libstdcxx=no
2213 enable_hosted_libstdcxx=yes
2216 if test "$enable_hosted_libstdcxx" = no; then
2217 AC_MSG_NOTICE([Only freestanding libraries will be built])
2221 enable_libstdcxx_pch=no
2226 GLIBCXX_CONDITIONAL(GLIBCXX_HOSTED, test $is_hosted = yes)
2227 AC_DEFINE_UNQUOTED(_GLIBCXX_HOSTED, $hosted_define,
2228 [Define to 1 if a full hosted library is built, or 0 if freestanding.])
2233 dnl Check for template specializations for the 'long long' type.
2234 dnl The result determines only whether 'long long' I/O is enabled; things
2235 dnl like numeric_limits<> specializations are always available.
2237 dnl --enable-long-long defines _GLIBCXX_USE_LONG_LONG
2238 dnl --disable-long-long leaves _GLIBCXX_USE_LONG_LONG undefined
2239 dnl + Usage: GLIBCXX_ENABLE_LONG_LONG[(DEFAULT)]
2240 dnl Where DEFAULT is either `yes' or `no'.
2242 AC_DEFUN([GLIBCXX_ENABLE_LONG_LONG], [
2243 GLIBCXX_ENABLE(long-long,$1,,[enable template specializations for 'long long'])
2244 if test $enable_long_long = yes; then
2245 AC_DEFINE(_GLIBCXX_USE_LONG_LONG, 1,
2246 [Define if code specialized for long long should be used.])
2248 AC_MSG_CHECKING([for enabled long long specializations])
2249 AC_MSG_RESULT([$enable_long_long])
2254 dnl Check for template specializations for the 'wchar_t' type.
2256 dnl --enable-wchar_t defines _GLIBCXX_USE_WCHAR_T
2257 dnl --disable-wchar_t leaves _GLIBCXX_USE_WCHAR_T undefined
2258 dnl + Usage: GLIBCXX_ENABLE_WCHAR_T[(DEFAULT)]
2259 dnl Where DEFAULT is either `yes' or `no'.
2261 dnl Necessary support must also be present.
2263 AC_DEFUN([GLIBCXX_ENABLE_WCHAR_T], [
2264 GLIBCXX_ENABLE(wchar_t,$1,,[enable template specializations for 'wchar_t'])
2266 # Test wchar.h for mbstate_t, which is needed for char_traits and fpos.
2267 AC_CHECK_HEADERS(wchar.h, ac_has_wchar_h=yes, ac_has_wchar_h=no)
2268 AC_MSG_CHECKING([for mbstate_t])
2269 AC_TRY_COMPILE([#include <wchar.h>],
2270 [mbstate_t teststate;],
2271 have_mbstate_t=yes, have_mbstate_t=no)
2272 AC_MSG_RESULT($have_mbstate_t)
2273 if test x"$have_mbstate_t" = xyes; then
2274 AC_DEFINE(HAVE_MBSTATE_T,1,[Define if mbstate_t exists in wchar.h.])
2277 # Test it always, for use in GLIBCXX_ENABLE_C99, together with
2279 AC_CHECK_HEADERS(wctype.h, ac_has_wctype_h=yes, ac_has_wctype_h=no)
2281 if test x"$enable_wchar_t" = x"yes"; then
2286 if test x"$ac_has_wchar_h" = xyes &&
2287 test x"$ac_has_wctype_h" = xyes; then
2288 AC_TRY_COMPILE([#include <wchar.h>
2349 ],[],[], [enable_wchar_t=no])
2357 if test x"$enable_wchar_t" = x"yes"; then
2358 AC_DEFINE(_GLIBCXX_USE_WCHAR_T, 1,
2359 [Define if code specialized for wchar_t should be used.])
2362 AC_MSG_CHECKING([for enabled wchar_t specializations])
2363 AC_MSG_RESULT([$enable_wchar_t])
2368 dnl Check to see if building and using a C++ precompiled header can be done.
2370 dnl --enable-libstdcxx-pch=yes
2371 dnl default, this shows intent to use stdc++.h.gch If it looks like it
2372 dnl may work, after some light-hearted attempts to puzzle out compiler
2373 dnl support, flip bits on in include/Makefile.am
2375 dnl --disable-libstdcxx-pch
2376 dnl turns off attempts to use or build stdc++.h.gch.
2379 dnl glibcxx_PCHFLAGS
2381 AC_DEFUN([GLIBCXX_ENABLE_PCH], [
2382 GLIBCXX_ENABLE(libstdcxx-pch,$1,,[build pre-compiled libstdc++ headers])
2383 if test $enable_libstdcxx_pch = yes; then
2384 AC_CACHE_CHECK([for compiler with PCH support],
2385 [glibcxx_cv_prog_CXX_pch],
2386 [ac_save_CXXFLAGS="$CXXFLAGS"
2387 CXXFLAGS="$CXXFLAGS -Werror -Winvalid-pch -Wno-deprecated"
2390 echo '#include <math.h>' > conftest.h
2391 if $CXX $CXXFLAGS $CPPFLAGS -x c++-header conftest.h \
2392 -o conftest.h.gch 1>&5 2>&1 &&
2393 echo '#error "pch failed"' > conftest.h &&
2394 echo '#include "conftest.h"' > conftest.cc &&
2395 $CXX -c $CXXFLAGS $CPPFLAGS conftest.cc 1>&5 2>&1 ;
2397 glibcxx_cv_prog_CXX_pch=yes
2399 glibcxx_cv_prog_CXX_pch=no
2402 CXXFLAGS=$ac_save_CXXFLAGS
2405 enable_libstdcxx_pch=$glibcxx_cv_prog_CXX_pch
2408 AC_MSG_CHECKING([for enabled PCH])
2409 AC_MSG_RESULT([$enable_libstdcxx_pch])
2411 GLIBCXX_CONDITIONAL(GLIBCXX_BUILD_PCH, test $enable_libstdcxx_pch = yes)
2412 if test $enable_libstdcxx_pch = yes; then
2413 glibcxx_PCHFLAGS="-include bits/stdc++.h"
2417 AC_SUBST(glibcxx_PCHFLAGS)
2422 dnl Check for atomic builtins.
2424 dnl http://gcc.gnu.org/onlinedocs/gcc/Atomic-Builtins.html#Atomic-Builtins
2426 dnl This checks to see if the host supports the compiler-generated
2427 dnl builtins for atomic operations for various integral sizes. Note, this
2428 dnl is intended to be an all-or-nothing switch, so all the atomic operations
2429 dnl that are used should be checked.
2432 dnl libgomp and libgfortran do this with a link test, instead of an asm test.
2433 dnl see: CHECK_SYNC_FETCH_AND_ADD
2436 dnl _GLIBCXX_ATOMIC_BUILTINS_1
2437 dnl _GLIBCXX_ATOMIC_BUILTINS_2
2438 dnl _GLIBCXX_ATOMIC_BUILTINS_4
2439 dnl _GLIBCXX_ATOMIC_BUILTINS_8
2441 AC_DEFUN([GLIBCXX_ENABLE_ATOMIC_BUILTINS], [
2444 old_CXXFLAGS="$CXXFLAGS"
2446 # Compile unoptimized.
2449 # Fake what AC_TRY_COMPILE does, without linking as this is
2450 # unnecessary for a builtins test.
2452 cat > conftest.$ac_ext << EOF
2453 [#]line __oline__ "configure"
2456 typedef bool atomic_type;
2459 const atomic_type c3(0);
2460 __sync_fetch_and_add(&c1, c2);
2461 __sync_val_compare_and_swap(&c1, c3, c2);
2462 __sync_lock_test_and_set(&c1, c3);
2463 __sync_lock_release(&c1);
2464 __sync_synchronize();
2469 AC_MSG_CHECKING([for atomic builtins for bool])
2470 if AC_TRY_EVAL(ac_compile); then
2471 if grep __sync_ conftest.s >/dev/null 2>&1 ; then
2472 enable_atomic_builtinsb=no
2474 AC_DEFINE(_GLIBCXX_ATOMIC_BUILTINS_1, 1,
2475 [Define if builtin atomic operations for bool are supported on this host.])
2476 enable_atomic_builtinsb=yes
2479 AC_MSG_RESULT($enable_atomic_builtinsb)
2482 cat > conftest.$ac_ext << EOF
2483 [#]line __oline__ "configure"
2486 typedef short atomic_type;
2489 const atomic_type c3(0);
2490 __sync_fetch_and_add(&c1, c2);
2491 __sync_val_compare_and_swap(&c1, c3, c2);
2492 __sync_lock_test_and_set(&c1, c3);
2493 __sync_lock_release(&c1);
2494 __sync_synchronize();
2499 AC_MSG_CHECKING([for atomic builtins for short])
2500 if AC_TRY_EVAL(ac_compile); then
2501 if grep __sync_ conftest.s >/dev/null 2>&1 ; then
2502 enable_atomic_builtinss=no
2504 AC_DEFINE(_GLIBCXX_ATOMIC_BUILTINS_2, 1,
2505 [Define if builtin atomic operations for short are supported on this host.])
2506 enable_atomic_builtinss=yes
2509 AC_MSG_RESULT($enable_atomic_builtinss)
2512 cat > conftest.$ac_ext << EOF
2513 [#]line __oline__ "configure"
2516 // NB: _Atomic_word not necessarily int.
2517 typedef int atomic_type;
2520 const atomic_type c3(0);
2521 __sync_fetch_and_add(&c1, c2);
2522 __sync_val_compare_and_swap(&c1, c3, c2);
2523 __sync_lock_test_and_set(&c1, c3);
2524 __sync_lock_release(&c1);
2525 __sync_synchronize();
2530 AC_MSG_CHECKING([for atomic builtins for int])
2531 if AC_TRY_EVAL(ac_compile); then
2532 if grep __sync_ conftest.s >/dev/null 2>&1 ; then
2533 enable_atomic_builtinsi=no
2535 AC_DEFINE(_GLIBCXX_ATOMIC_BUILTINS_4, 1,
2536 [Define if builtin atomic operations for int are supported on this host.])
2537 enable_atomic_builtinsi=yes
2540 AC_MSG_RESULT($enable_atomic_builtinsi)
2543 cat > conftest.$ac_ext << EOF
2544 [#]line __oline__ "configure"
2547 typedef long long atomic_type;
2550 const atomic_type c3(0);
2551 __sync_fetch_and_add(&c1, c2);
2552 __sync_val_compare_and_swap(&c1, c3, c2);
2553 __sync_lock_test_and_set(&c1, c3);
2554 __sync_lock_release(&c1);
2555 __sync_synchronize();
2560 AC_MSG_CHECKING([for atomic builtins for long long])
2561 if AC_TRY_EVAL(ac_compile); then
2562 if grep __sync_ conftest.s >/dev/null 2>&1 ; then
2563 enable_atomic_builtinsll=no
2565 AC_DEFINE(_GLIBCXX_ATOMIC_BUILTINS_8, 1,
2566 [Define if builtin atomic operations for long long are supported on this host.])
2567 enable_atomic_builtinsll=yes
2570 AC_MSG_RESULT($enable_atomic_builtinsll)
2574 CXXFLAGS="$old_CXXFLAGS"
2577 # Set atomicity_dir to builtins if either of above tests pass.
2578 if test $enable_atomic_builtinsi = yes || test $enable_atomic_builtinsb = yes ; then
2579 atomicity_dir=cpu/generic/atomicity_builtins
2582 # If still generic, set to mutex.
2583 if test $atomicity_dir = "cpu/generic" ; then
2584 atomicity_dir=cpu/generic/atomicity_mutex
2585 AC_MSG_WARN([No native atomic operations are provided for this platform.])
2586 if test "x$target_thread_file" = xsingle; then
2587 AC_MSG_WARN([They cannot be faked when thread support is disabled.])
2588 AC_MSG_WARN([Thread-safety of certain classes is not guaranteed.])
2590 AC_MSG_WARN([They will be faked using a mutex.])
2591 AC_MSG_WARN([Performance of certain classes will degrade as a result.])
2599 dnl Check for exception handling support. If an explicit enable/disable
2600 dnl sjlj exceptions is given, we don't have to detect. Otherwise the
2601 dnl target may or may not support call frame exceptions.
2603 dnl --enable-sjlj-exceptions forces the use of builtin setjmp.
2604 dnl --disable-sjlj-exceptions forces the use of call frame unwinding.
2605 dnl Neither one forces an attempt at detection.
2608 dnl _GLIBCXX_SJLJ_EXCEPTIONS if the compiler is configured for it
2610 AC_DEFUN([GLIBCXX_ENABLE_SJLJ_EXCEPTIONS], [
2611 AC_MSG_CHECKING([for exception model to use])
2614 GLIBCXX_ENABLE(sjlj-exceptions,auto,,
2615 [force use of builtin_setjmp for exceptions],
2616 [permit yes|no|auto])
2618 if test $enable_sjlj_exceptions = auto; then
2619 # Botheration. Now we've got to detect the exception model. Link tests
2620 # against libgcc.a are problematic since we've not been given proper -L
2621 # bits for single-tree newlib and libgloss.
2623 # Fake what AC_TRY_COMPILE does. XXX Look at redoing this new-style.
2624 cat > conftest.$ac_ext << EOF
2625 [#]line __oline__ "configure"
2634 old_CXXFLAGS="$CXXFLAGS"
2636 if AC_TRY_EVAL(ac_compile); then
2637 if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
2638 enable_sjlj_exceptions=yes
2639 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
2640 enable_sjlj_exceptions=no
2641 elif grep __cxa_end_cleanup conftest.s >/dev/null 2>&1 ; then
2642 enable_sjlj_exceptions=no
2645 CXXFLAGS="$old_CXXFLAGS"
2649 # This is a tad weird, for hysterical raisins. We have to map
2650 # enable/disable to two different models.
2651 case $enable_sjlj_exceptions in
2653 AC_DEFINE(_GLIBCXX_SJLJ_EXCEPTIONS, 1,
2654 [Define if the compiler is configured for setjmp/longjmp exceptions.])
2655 ac_exception_model_name=sjlj
2658 ac_exception_model_name="call frame"
2661 AC_MSG_ERROR([unable to detect exception model])
2665 AC_MSG_RESULT($ac_exception_model_name)
2670 dnl Allow visibility attributes to be used on namespaces, objects, etc.
2672 dnl --enable-visibility enables attempt to use visibility attributes.
2673 dnl --disable-visibility turns off all use of visibility attributes.
2674 dnl + Usage: GLIBCXX_ENABLE_VISIBILITY[(DEFAULT)]
2675 dnl Where DEFAULT is 'yes'.
2677 AC_DEFUN([GLIBCXX_ENABLE_VISIBILITY], [
2678 GLIBCXX_ENABLE(visibility,$1,,[enables visibility safe usage])
2680 if test x$enable_visibility = xyes ; then
2681 dnl all hail libgfortran
2682 dnl Check whether the target supports hidden visibility.
2683 AC_CACHE_CHECK([whether the target supports hidden visibility],
2684 glibcxx_cv_have_attribute_visibility, [
2685 save_CFLAGS="$CFLAGS"
2686 CFLAGS="$CFLAGS -Werror"
2687 AC_TRY_COMPILE([void __attribute__((visibility("hidden"))) foo(void) { }],
2688 [], glibcxx_cv_have_attribute_visibility=yes,
2689 glibcxx_cv_have_attribute_visibility=no)
2690 CFLAGS="$save_CFLAGS"])
2691 if test $glibcxx_cv_have_attribute_visibility = no; then
2692 enable_visibility=no
2696 GLIBCXX_CONDITIONAL(ENABLE_VISIBILITY, test $enable_visibility = yes)
2697 AC_MSG_NOTICE([visibility supported: $enable_visibility])
2702 dnl Add version tags to symbols in shared library (or not), additionally
2703 dnl marking other symbols as private/local (or not).
2705 dnl --enable-symvers=style adds a version script to the linker call when
2706 dnl creating the shared library. The choice of version script is
2707 dnl controlled by 'style'.
2708 dnl --disable-symvers does not.
2709 dnl + Usage: GLIBCXX_ENABLE_SYMVERS[(DEFAULT)]
2710 dnl Where DEFAULT is either 'yes' or 'no'. Passing `yes' tries to
2711 dnl choose a default style based on linker characteristics. Passing
2712 dnl 'no' disables versioning.
2714 AC_DEFUN([GLIBCXX_ENABLE_SYMVERS], [
2716 GLIBCXX_ENABLE(symvers,$1,[=STYLE],
2717 [enables symbol versioning of the shared library],
2718 [permit yes|no|gnu|gnu-versioned-namespace|darwin|darwin-export])
2720 # If we never went through the GLIBCXX_CHECK_LINKER_FEATURES macro, then we
2721 # don't know enough about $LD to do tricks...
2722 AC_REQUIRE([GLIBCXX_CHECK_LINKER_FEATURES])
2724 # Turn a 'yes' into a suitable default.
2725 if test x$enable_symvers = xyes ; then
2726 if test $enable_shared = no || test "x$LD" = x || test x$gcc_no_link = xyes; then
2729 if test $with_gnu_ld = yes ; then
2730 case ${target_os} in
2731 cygwin* | pe | mingw32* | hpux*)
2732 enable_symvers=no ;;
2734 enable_symvers=gnu ;;
2737 case ${target_os} in
2739 enable_symvers=darwin ;;
2741 enable_symvers=no ;;
2747 # Check to see if 'darwin' or 'darwin-export' can win.
2748 if test x$enable_symvers = xdarwin-export ; then
2749 enable_symvers=darwin
2752 # Check to see if 'gnu' can win.
2753 if test $enable_symvers = gnu || test $enable_symvers = gnu-versioned-namespace; then
2754 # Check to see if libgcc_s exists, indicating that shared libgcc is possible.
2755 AC_MSG_CHECKING([for shared libgcc])
2756 ac_save_CFLAGS="$CFLAGS"
2758 AC_TRY_LINK(, [return 0;], glibcxx_shared_libgcc=yes, glibcxx_shared_libgcc=no)
2759 CFLAGS="$ac_save_CFLAGS"
2760 if test $glibcxx_shared_libgcc = no; then
2761 cat > conftest.c <<EOF
2762 int main (void) { return 0; }
2765 glibcxx_libgcc_s_suffix=`${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
2766 -shared -shared-libgcc -o conftest.so \
2767 conftest.c -v 2>&1 >/dev/null \
2768 | sed -n 's/^.* -lgcc_s\([^ ]*\) .*$/\1/p'`
2770 rm -f conftest.c conftest.so
2771 if test x${glibcxx_libgcc_s_suffix+set} = xset; then
2772 CFLAGS=" -lgcc_s$glibcxx_libgcc_s_suffix"
2773 AC_TRY_LINK(, [return 0;], glibcxx_shared_libgcc=yes)
2774 CFLAGS="$ac_save_CFLAGS"
2777 AC_MSG_RESULT($glibcxx_shared_libgcc)
2779 # For GNU ld, we need at least this version. The format is described in
2780 # GLIBCXX_CHECK_LINKER_FEATURES above.
2781 glibcxx_min_gnu_ld_version=21400
2783 # If no shared libgcc, can't win.
2784 if test $glibcxx_shared_libgcc != yes; then
2785 AC_MSG_WARN([=== You have requested GNU symbol versioning, but])
2786 AC_MSG_WARN([=== you are not building a shared libgcc_s.])
2787 AC_MSG_WARN([=== Symbol versioning will be disabled.])
2789 elif test $with_gnu_ld != yes ; then
2791 AC_MSG_WARN([=== You have requested GNU symbol versioning, but])
2792 AC_MSG_WARN([=== you are not using the GNU linker.])
2793 AC_MSG_WARN([=== Symbol versioning will be disabled.])
2795 elif test $glibcxx_ld_is_gold = yes ; then
2796 : All versions of gold support symbol versioning.
2797 elif test $glibcxx_gnu_ld_version -lt $glibcxx_min_gnu_ld_version ; then
2798 # The right tools, the right setup, but too old. Fallbacks?
2799 AC_MSG_WARN(=== Linker version $glibcxx_gnu_ld_version is too old for)
2800 AC_MSG_WARN(=== full symbol versioning support in this release of GCC.)
2801 AC_MSG_WARN(=== You would need to upgrade your binutils to version)
2802 AC_MSG_WARN(=== $glibcxx_min_gnu_ld_version or later and rebuild GCC.)
2803 AC_MSG_WARN([=== Symbol versioning will be disabled.])
2808 # Everything parsed; figure out what file to use.
2809 case $enable_symvers in
2811 SYMVER_FILE=config/abi/pre/none.ver
2814 SYMVER_FILE=config/abi/pre/gnu.ver
2815 AC_DEFINE(_GLIBCXX_SYMVER_GNU, 1,
2816 [Define to use GNU versioning in the shared library.])
2818 gnu-versioned-namespace)
2819 SYMVER_FILE=config/abi/pre/gnu-versioned-namespace.ver
2820 AC_DEFINE(_GLIBCXX_SYMVER_GNU_NAMESPACE, 1,
2821 [Define to use GNU namespace versioning in the shared library.])
2824 SYMVER_FILE=config/abi/pre/gnu.ver
2825 AC_DEFINE(_GLIBCXX_SYMVER_DARWIN, 1,
2826 [Define to use darwin versioning in the shared library.])
2830 if test x$enable_symvers != xno ; then
2831 AC_DEFINE(_GLIBCXX_SYMVER, 1,
2832 [Define to use symbol versioning in the shared library.])
2835 AC_CACHE_CHECK([whether the target supports .symver directive],
2836 glibcxx_cv_have_as_symver_directive, [
2837 AC_TRY_COMPILE([void foo (void); __asm (".symver foo, bar@SYMVER");],
2838 [], glibcxx_cv_have_as_symver_directive=yes,
2839 glibcxx_cv_have_as_symver_directive=no)])
2840 if test $glibcxx_cv_have_as_symver_directive = yes; then
2841 AC_DEFINE(HAVE_AS_SYMVER_DIRECTIVE, 1,
2842 [Define to 1 if the target assembler supports .symver directive.])
2845 AC_SUBST(SYMVER_FILE)
2846 AC_SUBST(port_specific_symbol_files)
2847 GLIBCXX_CONDITIONAL(ENABLE_SYMVERS, test $enable_symvers != no)
2848 GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU, test $enable_symvers = gnu)
2849 GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU_NAMESPACE, test $enable_symvers = gnu-versioned-namespace)
2850 GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_DARWIN, test $enable_symvers = darwin)
2851 AC_MSG_NOTICE(versioning on shared library symbols is $enable_symvers)
2853 # Now, set up compatibility support, if any.
2854 # In addition, need this to deal with std::size_t mangling in
2855 # src/compatibility.cc. In a perfect world, could use
2856 # typeid(std::size_t).name()[0] to do direct substitution.
2857 AC_MSG_CHECKING([for size_t as unsigned int])
2858 ac_save_CFLAGS="$CFLAGS"
2860 AC_TRY_COMPILE(, [__SIZE_TYPE__* stp; unsigned int* uip; stp = uip;],
2861 [glibcxx_size_t_is_i=yes], [glibcxx_size_t_is_i=no])
2862 CFLAGS=$ac_save_CFLAGS
2863 if test "$glibcxx_size_t_is_i" = yes; then
2864 AC_DEFINE(_GLIBCXX_SIZE_T_IS_UINT, 1, [Define if size_t is unsigned int.])
2866 AC_MSG_RESULT([$glibcxx_size_t_is_i])
2868 AC_MSG_CHECKING([for ptrdiff_t as int])
2869 ac_save_CFLAGS="$CFLAGS"
2871 AC_TRY_COMPILE(, [__PTRDIFF_TYPE__* ptp; int* ip; ptp = ip;],
2872 [glibcxx_ptrdiff_t_is_i=yes], [glibcxx_ptrdiff_t_is_i=no])
2873 CFLAGS=$ac_save_CFLAGS
2874 if test "$glibcxx_ptrdiff_t_is_i" = yes; then
2875 AC_DEFINE(_GLIBCXX_PTRDIFF_T_IS_INT, 1, [Define if ptrdiff_t is int.])
2877 AC_MSG_RESULT([$glibcxx_ptrdiff_t_is_i])
2882 dnl Setup to use the gcc gthr.h thread-specific memory and mutex model.
2883 dnl We must stage the required headers so that they will be installed
2884 dnl with the library (unlike libgcc, the STL implementation is provided
2885 dnl solely within headers). Since we must not inject random user-space
2886 dnl macro names into user-provided C++ code, we first stage into <file>-in
2887 dnl and process to <file> with an output command. The reason for a two-
2888 dnl stage process here is to correctly handle $srcdir!=$objdir without
2889 dnl having to write complex code (the sed commands to clean the macro
2890 dnl namespace are complex and fragile enough as it is). We must also
2891 dnl add a relative path so that -I- is supported properly.
2894 dnl glibcxx_thread_h
2897 dnl HAVE_GTHR_DEFAULT
2899 AC_DEFUN([GLIBCXX_ENABLE_THREADS], [
2900 AC_MSG_CHECKING([for thread model used by GCC])
2901 target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'`
2902 AC_MSG_RESULT([$target_thread_file])
2904 if test $target_thread_file != single; then
2905 AC_DEFINE(HAVE_GTHR_DEFAULT, 1,
2906 [Define if gthr-default.h exists
2907 (meaning that threading support is enabled).])
2910 glibcxx_thread_h=gthr-$target_thread_file.h
2912 dnl Check for __GTHREADS define.
2913 gthread_file=${toplevel_srcdir}/gcc/${glibcxx_thread_h}
2914 if grep __GTHREADS $gthread_file >/dev/null 2>&1 ; then
2920 AC_SUBST(glibcxx_thread_h)
2925 dnl Check if gthread implementation defines the types and functions
2926 dnl required by the c++0x thread library. Conforming gthread
2927 dnl implementations can define __GTHREADS_CXX0X to enable use with c++0x.
2929 AC_DEFUN([GLIBCXX_CHECK_GTHREADS], [
2933 ac_save_CXXFLAGS="$CXXFLAGS"
2934 CXXFLAGS="$CXXFLAGS -fno-exceptions -I${toplevel_srcdir}/gcc"
2936 target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'`
2937 case $target_thread_file in
2939 CXXFLAGS="$CXXFLAGS -DSUPPORTS_WEAK -DGTHREAD_USE_WEAK -D_PTHREADS"
2942 AC_MSG_CHECKING([for gthreads library])
2944 AC_TRY_COMPILE([#include "gthr.h"],
2946 #ifndef __GTHREADS_CXX0X
2950 // In case of POSIX threads check _POSIX_TIMEOUTS too.
2951 #if (defined(_PTHREADS) \
2952 && (!defined(_POSIX_TIMEOUTS) || _POSIX_TIMEOUTS <= 0))
2955 ], [ac_has_gthreads=yes], [ac_has_gthreads=no])
2957 AC_MSG_RESULT([$ac_has_gthreads])
2959 if test x"$ac_has_gthreads" = x"yes"; then
2960 AC_DEFINE(_GLIBCXX_HAS_GTHREADS, 1,
2961 [Define if gthreads library is available.])
2964 CXXFLAGS="$ac_save_CXXFLAGS"
2969 # Check whether LC_MESSAGES is available in <locale.h>.
2970 # Ulrich Drepper <drepper@cygnus.com>, 1995.
2972 # This file file be copied and used freely without restrictions. It can
2973 # be used in projects which are not available under the GNU Public License
2974 # but which still want to provide support for the GNU gettext functionality.
2975 # Please note that the actual code is *not* freely available.
2976 AC_DEFUN([AC_LC_MESSAGES], [
2977 AC_CHECK_HEADER(locale.h, [
2978 AC_CACHE_CHECK([for LC_MESSAGES], ac_cv_val_LC_MESSAGES,
2979 [AC_TRY_COMPILE([#include <locale.h>], [return LC_MESSAGES],
2980 ac_cv_val_LC_MESSAGES=yes, ac_cv_val_LC_MESSAGES=no)])
2981 if test $ac_cv_val_LC_MESSAGES = yes; then
2982 AC_DEFINE(HAVE_LC_MESSAGES, 1,
2983 [Define if LC_MESSAGES is available in <locale.h>.])
2988 # Macros from the top-level gcc directory.
2989 m4_include([../config/tls.m4])