]> git.ipfire.org Git - thirdparty/gcc.git/blame - libstdc++-v3/acinclude.m4
i386.md (*movabs<mode>_1): Fix operand 1 constraints.
[thirdparty/gcc.git] / libstdc++-v3 / acinclude.m4
CommitLineData
92eabea2
PE
1dnl
2dnl GLIBCXX_CONDITIONAL (NAME, SHELL-TEST)
3dnl
4dnl Exactly like AM_CONDITIONAL, but delays evaluation of the test until the
5dnl end of configure. This lets tested variables be reassigned, and the
6dnl conditional will depend on the final state of the variable. For a simple
7dnl example of why this is needed, see GLIBCXX_ENABLE_HOSTED.
8dnl
9m4_define([_m4_divert(glibcxx_diversion)], 8000)dnl
f214923c 10AC_DEFUN([GLIBCXX_CONDITIONAL], [dnl
92eabea2
PE
11 m4_divert_text([glibcxx_diversion],dnl
12 AM_CONDITIONAL([$1],[$2])
13 )dnl
14])dnl
f214923c 15AC_DEFUN([GLIBCXX_EVALUATE_CONDITIONALS], [m4_undivert([glibcxx_diversion])])dnl
92eabea2
PE
16
17
ff66d28f
PE
18dnl
19dnl Check to see what architecture and operating system we are compiling
20dnl for. Also, if architecture- or OS-specific flags are required for
21dnl compilation, pick them up here.
22dnl
f214923c 23AC_DEFUN([GLIBCXX_CHECK_HOST], [
ff66d28f 24 . $glibcxx_srcdir/configure.host
f214923c
BK
25 AC_MSG_NOTICE([CPU config directory is $cpu_include_dir])
26 AC_MSG_NOTICE([OS config directory is $os_include_dir])
ff66d28f
PE
27])
28
ff66d28f
PE
29dnl
30dnl Initialize the rest of the library configury. At this point we have
31dnl variables like $host.
aebb8c22 32dnl
ff66d28f 33dnl Sets:
82ba99d5 34dnl SUBDIRS
ff66d28f
PE
35dnl Substs:
36dnl glibcxx_builddir (absolute path)
37dnl glibcxx_srcdir (absolute path)
5d1c8e77 38dnl toplevel_builddir (absolute path)
ff66d28f
PE
39dnl toplevel_srcdir (absolute path)
40dnl with_cross_host
41dnl with_newlib
42dnl with_target_subdir
43dnl plus
44dnl - the variables in GLIBCXX_CHECK_HOST / configure.host
45dnl - default settings for all AM_CONFITIONAL test variables
46dnl - lots of tools, like CC and CXX
aebb8c22 47dnl
f214923c 48AC_DEFUN([GLIBCXX_CONFIGURE], [
82ba99d5
PE
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.
8bae34da 52 m4_define([glibcxx_SUBDIRS],[include libsupc++ python src src/c++98 src/c++11 doc po testsuite])
82ba99d5
PE
53 SUBDIRS='glibcxx_SUBDIRS'
54
d2caef2e
PE
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.
3d7c150e 58 glibcxx_builddir=`${PWDCMD-pwd}`
d2caef2e 59 case $srcdir in
ff66d28f
PE
60 [\\/$]* | ?:[\\/]*) glibcxx_srcdir=${srcdir} ;;
61 *) glibcxx_srcdir=`cd "$srcdir" && ${PWDCMD-pwd} || echo "$srcdir"` ;;
d2caef2e 62 esac
5d1c8e77 63 toplevel_builddir=${glibcxx_builddir}/..
ff66d28f 64 toplevel_srcdir=${glibcxx_srcdir}/..
3d7c150e
BK
65 AC_SUBST(glibcxx_builddir)
66 AC_SUBST(glibcxx_srcdir)
5d1c8e77 67 AC_SUBST(toplevel_builddir)
ff66d28f 68 AC_SUBST(toplevel_srcdir)
d2caef2e 69
ff66d28f
PE
70 # We use these options to decide which functions to include. They are
71 # set from the top level.
72 AC_ARG_WITH([target-subdir],
73 AC_HELP_STRING([--with-target-subdir=SUBDIR],
b329dd10 74 [configuring in a subdirectory]))
ff66d28f
PE
75
76 AC_ARG_WITH([cross-host],
77 AC_HELP_STRING([--with-cross-host=HOST],
b329dd10 78 [configuring with a cross compiler]))
ff66d28f
PE
79
80 AC_ARG_WITH([newlib],
81 AC_HELP_STRING([--with-newlib],
b329dd10 82 [assume newlib as a system C library]))
ff66d28f 83
ff66d28f
PE
84 # Will set LN_S to either 'ln -s', 'ln', or 'cp -p' (if linking isn't
85 # available). Uncomment the next line to force a particular method.
86 AC_PROG_LN_S
87 #LN_S='cp -p'
88
5780a46b
BK
89 AC_CHECK_TOOL(AS, as)
90 AC_CHECK_TOOL(AR, ar)
46840bcd 91 AC_CHECK_TOOL(RANLIB, ranlib, ranlib-not-found-in-path-error)
b2dad0e3 92
5780a46b 93 AM_MAINTAINER_MODE
b2dad0e3 94
92eabea2
PE
95 # Set up safe default values for all subsequent AM_CONDITIONAL tests
96 # which are themselves conditionally expanded.
97 ## (Right now, this only matters for enable_wchar_t, but nothing prevents
98 ## other macros from doing the same. This should be automated.) -pme
16da539b 99
176d6eb0
GP
100 # Check for C library flavor since GNU/Linux platforms use different
101 # configuration directories depending on the C library in use.
464aea98
JM
102 AC_EGREP_CPP([_using_uclibc], [
103 #include <stdio.h>
104 #if __UCLIBC__
105 _using_uclibc
106 #endif
107 ], uclibc=yes, uclibc=no)
108
aa6a73b9
MK
109 AC_EGREP_CPP([_using_bionic], [
110 #include <stdio.h>
111 #if __BIONIC__
112 _using_bionic
113 #endif
114 ], bionic=yes, bionic=no)
115
ff66d28f
PE
116 # Find platform-specific directories containing configuration info.
117 # Also possibly modify flags used elsewhere, as needed by the platform.
3d7c150e 118 GLIBCXX_CHECK_HOST
b2dad0e3
BK
119])
120
121
c470c17d 122dnl
52b55e7d
PE
123dnl Tests for newer compiler features, or features that are present in newer
124dnl compiler versions but not older compiler versions still in use, should
125dnl be placed here.
b2dad0e3 126dnl
ff66d28f
PE
127dnl Defines:
128dnl WERROR='-Werror' if requested and possible; g++'s that lack the
129dnl new inlining code or the new system_header pragma will die on -Werror.
130dnl Leave it out by default and use maint-mode to use it.
131dnl SECTION_FLAGS='-ffunction-sections -fdata-sections' if
132dnl compiler supports it and the user has not requested debug mode.
c21b6f87 133dnl
f214923c 134AC_DEFUN([GLIBCXX_CHECK_COMPILER_FEATURES], [
a4e99046 135 # All these tests are for C++; save the language and the compiler flags.
52b55e7d 136 # The CXXFLAGS thing is suspicious, but based on similar bits previously
3d7c150e 137 # found in GLIBCXX_CONFIGURE.
a4e99046
PE
138 AC_LANG_SAVE
139 AC_LANG_CPLUSPLUS
140 ac_test_CXXFLAGS="${CXXFLAGS+set}"
141 ac_save_CXXFLAGS="$CXXFLAGS"
a4e99046 142
7f586614
BK
143 # Check for maintainer-mode bits.
144 if test x"$USE_MAINTAINER_MODE" = xno; then
145 WERROR=''
8bd636c5 146 else
7f586614 147 WERROR='-Werror'
8bd636c5
PE
148 fi
149
c470c17d
BK
150 # Check for -ffunction-sections -fdata-sections
151 AC_MSG_CHECKING([for g++ that supports -ffunction-sections -fdata-sections])
85ee35ca
BK
152 CXXFLAGS='-g -Werror -ffunction-sections -fdata-sections'
153 AC_TRY_COMPILE([int foo; void bar() { };],, [ac_fdsections=yes], [ac_fdsections=no])
c470c17d
BK
154 if test "$ac_test_CXXFLAGS" = set; then
155 CXXFLAGS="$ac_save_CXXFLAGS"
156 else
157 # this is the suspicious part
158 CXXFLAGS=''
159 fi
6aa43d99 160 if test x"$ac_fdsections" = x"yes"; then
c470c17d
BK
161 SECTION_FLAGS='-ffunction-sections -fdata-sections'
162 fi
163 AC_MSG_RESULT($ac_fdsections)
164
a4e99046 165 AC_LANG_RESTORE
8bd636c5 166 AC_SUBST(WERROR)
c470c17d 167 AC_SUBST(SECTION_FLAGS)
b2dad0e3
BK
168])
169
c470c17d
BK
170
171dnl
421173e6
PE
172dnl If GNU ld is in use, check to see if tricky linker opts can be used. If
173dnl the native linker is in use, all variables will be defined to something
174dnl safe (like an empty string).
175dnl
ff66d28f
PE
176dnl Defines:
177dnl SECTION_LDFLAGS='-Wl,--gc-sections' if possible
a429affe 178dnl OPT_LDFLAGS='-Wl,-O1' and '-z,relro' if possible
ff66d28f
PE
179dnl LD (as a side effect of testing)
180dnl Sets:
181dnl with_gnu_ld
d60a2d4d 182dnl glibcxx_ld_is_gold (set to "no" or "yes")
ff66d28f
PE
183dnl glibcxx_gnu_ld_version (possibly)
184dnl
185dnl The last will be a single integer, e.g., version 1.23.45.0.67.89 will
186dnl set glibcxx_gnu_ld_version to 12345. Zeros cause problems.
c470c17d 187dnl
f214923c 188AC_DEFUN([GLIBCXX_CHECK_LINKER_FEATURES], [
421173e6
PE
189 # If we're not using GNU ld, then there's no point in even trying these
190 # tests. Check for that first. We should have already tested for gld
191 # by now (in libtool), but require it now just to be safe...
654421eb
DE
192 test -z "$SECTION_LDFLAGS" && SECTION_LDFLAGS=''
193 test -z "$OPT_LDFLAGS" && OPT_LDFLAGS=''
421173e6 194 AC_REQUIRE([AC_PROG_LD])
ff66d28f 195 AC_REQUIRE([AC_PROG_AWK])
5bd17d39 196
c98b201b
PE
197 # The name set by libtool depends on the version of libtool. Shame on us
198 # for depending on an impl detail, but c'est la vie. Older versions used
199 # ac_cv_prog_gnu_ld, but now it's lt_cv_prog_gnu_ld, and is copied back on
200 # top of with_gnu_ld (which is also set by --with-gnu-ld, so that actually
201 # makes sense). We'll test with_gnu_ld everywhere else, so if that isn't
202 # set (hence we're using an older libtool), then set it.
203 if test x${with_gnu_ld+set} != xset; then
204 if test x${ac_cv_prog_gnu_ld+set} != xset; then
205 # We got through "ac_require(ac_prog_ld)" and still not set? Huh?
206 with_gnu_ld=no
207 else
208 with_gnu_ld=$ac_cv_prog_gnu_ld
209 fi
210 fi
211
212 # Start by getting the version number. I think the libtool test already
213 # does some of this, but throws away the result.
d60a2d4d 214 glibcxx_ld_is_gold=no
e2c104d8
BK
215 if test x"$with_gnu_ld" = x"yes"; then
216 AC_MSG_CHECKING([for ld version])
217 changequote(,)
d60a2d4d
ILT
218 if $LD --version 2>/dev/null | grep 'GNU gold' >/dev/null 2>&1; then
219 glibcxx_ld_is_gold=yes
220 fi
c82852f7 221 ldver=`$LD --version 2>/dev/null |
89c74f4a 222 sed -e 's/GNU gold /GNU ld /;s/GNU ld version /GNU ld /;s/GNU ld ([^)]*) /GNU ld /;s/GNU ld \([0-9.][0-9.]*\).*/\1/; q'`
e2c104d8
BK
223 changequote([,])
224 glibcxx_gnu_ld_version=`echo $ldver | \
b329dd10 225 $AWK -F. '{ if (NF<3) [$]3=0; print ([$]1*100+[$]2)*100+[$]3 }'`
e2c104d8
BK
226 AC_MSG_RESULT($glibcxx_gnu_ld_version)
227 fi
c98b201b 228
5bd17d39 229 # Set --gc-sections.
d60a2d4d
ILT
230 glibcxx_have_gc_sections=no
231 if test "$glibcxx_ld_is_gold" = "yes"; then
232 if $LD --help 2>/dev/null | grep gc-sections >/dev/null 2>&1; then
233 glibcxx_have_gc_sections=yes
234 fi
235 else
236 glibcxx_gcsections_min_ld=21602
b329dd10 237 if test x"$with_gnu_ld" = x"yes" &&
ac2b2479 238 test $glibcxx_gnu_ld_version -gt $glibcxx_gcsections_min_ld ; then
d60a2d4d
ILT
239 glibcxx_have_gc_sections=yes
240 fi
241 fi
242 if test "$glibcxx_have_gc_sections" = "yes"; then
ac2b2479
BK
243 # Sufficiently young GNU ld it is! Joy and bunny rabbits!
244 # NB: This flag only works reliably after 2.16.1. Configure tests
245 # for this are difficult, so hard wire a value that should work.
421173e6 246
421173e6
PE
247 ac_test_CFLAGS="${CFLAGS+set}"
248 ac_save_CFLAGS="$CFLAGS"
2a0ab51c 249 CFLAGS='-Wl,--gc-sections'
421173e6
PE
250
251 # Check for -Wl,--gc-sections
252 AC_MSG_CHECKING([for ld that supports -Wl,--gc-sections])
acb6e9be
BK
253 AC_TRY_LINK([ int one(void) { return 1; }
254 int two(void) { return 2; }
255 ], [ two(); ] , [ac_gcsections=yes], [ac_gcsections=no])
360e8759
L
256 if test "$ac_gcsections" = "yes"; then
257 rm -f conftest.c
258 touch conftest.c
259 if $CC -c conftest.c; then
260 if $LD --gc-sections -o conftest conftest.o 2>&1 | \
261 grep "Warning: gc-sections option ignored" > /dev/null; then
262 ac_gcsections=no
263 fi
264 fi
265 rm -f conftest.c conftest.o conftest
266 fi
acb6e9be
BK
267 if test "$ac_gcsections" = "yes"; then
268 SECTION_LDFLAGS="-Wl,--gc-sections $SECTION_LDFLAGS"
269 fi
270 AC_MSG_RESULT($ac_gcsections)
271
421173e6
PE
272 if test "$ac_test_CFLAGS" = set; then
273 CFLAGS="$ac_save_CFLAGS"
274 else
275 # this is the suspicious part
276 CFLAGS=''
277 fi
5bd17d39 278 fi
a9117427 279
a429affe 280 # Set -z,relro.
952c7b74 281 # Note this is only for shared objects.
a429affe
BK
282 ac_ld_relro=no
283 if test x"$with_gnu_ld" = x"yes"; then
284 AC_MSG_CHECKING([for ld that supports -Wl,-z,relro])
285 cxx_z_relo=`$LD -v --help 2>/dev/null | grep "z relro"`
286 if test -n "$cxx_z_relo"; then
287 OPT_LDFLAGS="-Wl,-z,relro"
288 ac_ld_relro=yes
289 fi
290 AC_MSG_RESULT($ac_ld_relro)
291 fi
292
5bd17d39 293 # Set linker optimization flags.
6aa43d99 294 if test x"$with_gnu_ld" = x"yes"; then
654421eb 295 OPT_LDFLAGS="-Wl,-O1 $OPT_LDFLAGS"
421173e6 296 fi
5bd17d39 297
c470c17d 298 AC_SUBST(SECTION_LDFLAGS)
421173e6 299 AC_SUBST(OPT_LDFLAGS)
c470c17d
BK
300])
301
302
b2dad0e3 303dnl
ff66d28f
PE
304dnl Check for headers for, and arguments to, the setrlimit() function.
305dnl Used only in testsuite_hooks.h. Called from GLIBCXX_CONFIGURE_TESTSUITE.
6aa43d99 306dnl
ff66d28f 307dnl Defines:
b329dd10 308dnl _GLIBCXX_RES_LIMITS if we can set artificial resource limits
2ae6e982 309dnl various HAVE_LIMIT_* for individual limit names
6aa43d99 310dnl
f214923c 311AC_DEFUN([GLIBCXX_CHECK_SETRLIMIT_ancilliary], [
e0103440 312 AC_MSG_CHECKING([for RLIMIT_$1])
ff66d28f
PE
313 AC_TRY_COMPILE(
314 [#include <unistd.h>
315 #include <sys/time.h>
316 #include <sys/resource.h>
317 ],
318 [ int f = RLIMIT_$1 ; ],
319 [glibcxx_mresult=1], [glibcxx_mresult=0])
2ae6e982 320 AC_DEFINE_UNQUOTED(HAVE_LIMIT_$1, $glibcxx_mresult,
b329dd10 321 [Only used in build directory testsuite_hooks.h.])
e0103440
GK
322 if test $glibcxx_mresult = 1 ; then res=yes ; else res=no ; fi
323 AC_MSG_RESULT($res)
ff66d28f
PE
324])
325
f214923c 326AC_DEFUN([GLIBCXX_CHECK_SETRLIMIT], [
ff66d28f
PE
327 setrlimit_have_headers=yes
328 AC_CHECK_HEADERS(unistd.h sys/time.h sys/resource.h,
b329dd10
BK
329 [],
330 [setrlimit_have_headers=no])
ff66d28f
PE
331 # If don't have the headers, then we can't run the tests now, and we
332 # won't be seeing any of these during testsuite compilation.
333 if test $setrlimit_have_headers = yes; then
334 # Can't do these in a loop, else the resulting syntax is wrong.
335 GLIBCXX_CHECK_SETRLIMIT_ancilliary(DATA)
336 GLIBCXX_CHECK_SETRLIMIT_ancilliary(RSS)
337 GLIBCXX_CHECK_SETRLIMIT_ancilliary(VMEM)
338 GLIBCXX_CHECK_SETRLIMIT_ancilliary(AS)
2ae6e982 339 GLIBCXX_CHECK_SETRLIMIT_ancilliary(FSIZE)
ff66d28f
PE
340
341 # Check for rlimit, setrlimit.
6d26724a 342 AC_CACHE_VAL(glibcxx_cv_setrlimit, [
ff66d28f 343 AC_TRY_COMPILE(
b329dd10
BK
344 [#include <unistd.h>
345 #include <sys/time.h>
346 #include <sys/resource.h>
347 ],
348 [struct rlimit r;
349 setrlimit(0, &r);],
350 [glibcxx_cv_setrlimit=yes], [glibcxx_cv_setrlimit=no])
ff66d28f
PE
351 ])
352 fi
353
2ae6e982 354 AC_MSG_CHECKING([for testsuite resource limits support])
6d26724a 355 if test $setrlimit_have_headers = yes && test $glibcxx_cv_setrlimit = yes; then
2ae6e982 356 ac_res_limits=yes
4651e622 357 AC_DEFINE(_GLIBCXX_RES_LIMITS, 1,
b329dd10
BK
358 [Define if using setrlimit to set resource limits during
359 "make check"])
ff66d28f 360 else
2ae6e982 361 ac_res_limits=no
ff66d28f 362 fi
2ae6e982 363 AC_MSG_RESULT($ac_res_limits)
6aa43d99
BK
364])
365
366
6aa43d99 367dnl
ff66d28f
PE
368dnl Check whether S_ISREG (Posix) or S_IFREG is available in <sys/stat.h>.
369dnl Define HAVE_S_ISREG / HAVE_S_IFREG appropriately.
6aa43d99 370dnl
f214923c 371AC_DEFUN([GLIBCXX_CHECK_S_ISREG_OR_S_IFREG], [
74745ec5
PC
372
373 AC_LANG_SAVE
374 AC_LANG_CPLUSPLUS
375 ac_save_CXXFLAGS="$CXXFLAGS"
376 CXXFLAGS="$CXXFLAGS -fno-exceptions"
377
e0103440 378 AC_MSG_CHECKING([for S_ISREG or S_IFREG])
ff66d28f 379 AC_CACHE_VAL(glibcxx_cv_S_ISREG, [
74745ec5 380 GCC_TRY_COMPILE_OR_LINK(
ff66d28f
PE
381 [#include <sys/stat.h>],
382 [struct stat buffer;
383 fstat(0, &buffer);
384 S_ISREG(buffer.st_mode);],
385 [glibcxx_cv_S_ISREG=yes],
386 [glibcxx_cv_S_ISREG=no])
387 ])
388 AC_CACHE_VAL(glibcxx_cv_S_IFREG, [
74745ec5 389 GCC_TRY_COMPILE_OR_LINK(
ff66d28f
PE
390 [#include <sys/stat.h>],
391 [struct stat buffer;
392 fstat(0, &buffer);
393 S_IFREG & buffer.st_mode;],
394 [glibcxx_cv_S_IFREG=yes],
395 [glibcxx_cv_S_IFREG=no])
396 ])
e0103440 397 res=no
ff66d28f 398 if test $glibcxx_cv_S_ISREG = yes; then
b329dd10
BK
399 AC_DEFINE(HAVE_S_ISREG, 1,
400 [Define if S_IFREG is available in <sys/stat.h>.])
e0103440 401 res=S_ISREG
ff66d28f 402 elif test $glibcxx_cv_S_IFREG = yes; then
4651e622 403 AC_DEFINE(HAVE_S_IFREG, 1,
b329dd10 404 [Define if S_IFREG is available in <sys/stat.h>.])
e0103440 405 res=S_IFREG
ff66d28f 406 fi
e0103440 407 AC_MSG_RESULT($res)
74745ec5
PC
408
409 CXXFLAGS="$ac_save_CXXFLAGS"
410 AC_LANG_RESTORE
b2dad0e3
BK
411])
412
413
dcfa0bc8 414dnl
ff66d28f 415dnl Check whether poll is available in <poll.h>, and define HAVE_POLL.
dcfa0bc8 416dnl
f214923c 417AC_DEFUN([GLIBCXX_CHECK_POLL], [
74745ec5
PC
418
419 AC_LANG_SAVE
420 AC_LANG_CPLUSPLUS
421 ac_save_CXXFLAGS="$CXXFLAGS"
422 CXXFLAGS="$CXXFLAGS -fno-exceptions"
423
e0103440 424 AC_MSG_CHECKING([for poll])
ff66d28f 425 AC_CACHE_VAL(glibcxx_cv_POLL, [
74745ec5 426 GCC_TRY_COMPILE_OR_LINK(
ff66d28f
PE
427 [#include <poll.h>],
428 [struct pollfd pfd[1];
429 pfd[0].events = POLLIN;
430 poll(pfd, 1, 0);],
431 [glibcxx_cv_POLL=yes],
432 [glibcxx_cv_POLL=no])
433 ])
434 if test $glibcxx_cv_POLL = yes; then
4651e622 435 AC_DEFINE(HAVE_POLL, 1, [Define if poll is available in <poll.h>.])
ff66d28f 436 fi
e0103440 437 AC_MSG_RESULT($glibcxx_cv_POLL)
74745ec5
PC
438
439 CXXFLAGS="$ac_save_CXXFLAGS"
440 AC_LANG_RESTORE
ff66d28f
PE
441])
442
443
444dnl
445dnl Check whether writev is available in <sys/uio.h>, and define HAVE_WRITEV.
446dnl
f214923c 447AC_DEFUN([GLIBCXX_CHECK_WRITEV], [
74745ec5
PC
448
449 AC_LANG_SAVE
450 AC_LANG_CPLUSPLUS
451 ac_save_CXXFLAGS="$CXXFLAGS"
452 CXXFLAGS="$CXXFLAGS -fno-exceptions"
453
e0103440 454 AC_MSG_CHECKING([for writev])
ff66d28f 455 AC_CACHE_VAL(glibcxx_cv_WRITEV, [
74745ec5 456 GCC_TRY_COMPILE_OR_LINK(
ff66d28f
PE
457 [#include <sys/uio.h>],
458 [struct iovec iov[2];
459 writev(0, iov, 0);],
460 [glibcxx_cv_WRITEV=yes],
461 [glibcxx_cv_WRITEV=no])
462 ])
463 if test $glibcxx_cv_WRITEV = yes; then
4651e622 464 AC_DEFINE(HAVE_WRITEV, 1, [Define if writev is available in <sys/uio.h>.])
ff66d28f 465 fi
e0103440 466 AC_MSG_RESULT($glibcxx_cv_WRITEV)
74745ec5
PC
467
468 CXXFLAGS="$ac_save_CXXFLAGS"
469 AC_LANG_RESTORE
ff66d28f
PE
470])
471
472
3d05b345
PC
473dnl
474dnl Check whether int64_t is available in <stdint.h>, and define HAVE_INT64_T.
fc9ab7b4 475dnl Also check whether int64_t is actually a typedef to long or long long.
3d05b345 476dnl
f214923c 477AC_DEFUN([GLIBCXX_CHECK_INT64_T], [
fc9ab7b4
PC
478
479 AC_LANG_SAVE
480 AC_LANG_CPLUSPLUS
481
e0103440 482 AC_MSG_CHECKING([for int64_t])
3d05b345
PC
483 AC_CACHE_VAL(glibcxx_cv_INT64_T, [
484 AC_TRY_COMPILE(
485 [#include <stdint.h>],
486 [int64_t var;],
487 [glibcxx_cv_INT64_T=yes],
488 [glibcxx_cv_INT64_T=no])
489 ])
fc9ab7b4 490
3d05b345 491 if test $glibcxx_cv_INT64_T = yes; then
4651e622 492 AC_DEFINE(HAVE_INT64_T, 1, [Define if int64_t is available in <stdint.h>.])
fc9ab7b4
PC
493 AC_MSG_RESULT($glibcxx_cv_INT64_T)
494
495 AC_MSG_CHECKING([for int64_t as long])
496 AC_CACHE_VAL(glibcxx_cv_int64_t_long, [
497 AC_TRY_COMPILE(
b329dd10
BK
498 [#include <stdint.h>
499 template<typename, typename> struct same { enum { value = -1 }; };
500 template<typename Tp> struct same<Tp, Tp> { enum { value = 1 }; };
501 int array[same<int64_t, long>::value];], [],
fc9ab7b4
PC
502 [glibcxx_cv_int64_t_long=yes], [glibcxx_cv_int64_t_long=no])
503 ])
504
505 if test $glibcxx_cv_int64_t_long = yes; then
506 AC_DEFINE(HAVE_INT64_T_LONG, 1, [Define if int64_t is a long.])
507 AC_MSG_RESULT($glibcxx_cv_int64_t_long)
508 fi
509
510 AC_MSG_CHECKING([for int64_t as long long])
511 AC_CACHE_VAL(glibcxx_cv_int64_t_long_long, [
512 AC_TRY_COMPILE(
b329dd10
BK
513 [#include <stdint.h>
514 template<typename, typename> struct same { enum { value = -1 }; };
515 template<typename Tp> struct same<Tp, Tp> { enum { value = 1 }; };
516 int array[same<int64_t, long long>::value];], [],
fc9ab7b4
PC
517 [glibcxx_cv_int64_t_long_long=yes], [glibcxx_cv_int64_t_long_long=no])
518 ])
519
520 if test $glibcxx_cv_int64_t_long_long = yes; then
521 AC_DEFINE(HAVE_INT64_T_LONG_LONG, 1, [Define if int64_t is a long long.])
522 AC_MSG_RESULT($glibcxx_cv_int64_t_long_long)
523 fi
3d05b345 524 fi
fc9ab7b4
PC
525
526 AC_LANG_RESTORE
3d05b345
PC
527])
528
529
530dnl
531dnl Check whether LFS support is available.
532dnl
f214923c 533AC_DEFUN([GLIBCXX_CHECK_LFS], [
0c6b814a 534 AC_LANG_SAVE
9d47bc51
PC
535 AC_LANG_CPLUSPLUS
536 ac_save_CXXFLAGS="$CXXFLAGS"
b329dd10 537 CXXFLAGS="$CXXFLAGS -fno-exceptions"
e0103440 538 AC_MSG_CHECKING([for LFS support])
3d05b345 539 AC_CACHE_VAL(glibcxx_cv_LFS, [
74745ec5 540 GCC_TRY_COMPILE_OR_LINK(
0c6b814a
PC
541 [#include <unistd.h>
542 #include <stdio.h>
dd5d134b 543 #include <sys/stat.h>
0c6b814a 544 ],
5c89246d
PC
545 [FILE* fp;
546 fopen64("t", "w");
547 fseeko64(fp, 0, SEEK_CUR);
548 ftello64(fp);
dd5d134b
PC
549 lseek64(1, 0, SEEK_CUR);
550 struct stat64 buf;
551 fstat64(1, &buf);],
3d05b345
PC
552 [glibcxx_cv_LFS=yes],
553 [glibcxx_cv_LFS=no])
554 ])
555 if test $glibcxx_cv_LFS = yes; then
4651e622 556 AC_DEFINE(_GLIBCXX_USE_LFS, 1, [Define if LFS support is available.])
3d05b345 557 fi
e0103440 558 AC_MSG_RESULT($glibcxx_cv_LFS)
9d47bc51
PC
559 CXXFLAGS="$ac_save_CXXFLAGS"
560 AC_LANG_RESTORE
3d05b345
PC
561])
562
563
1165dc50
PC
564dnl
565dnl Check for whether a fully dynamic basic_string implementation should
566dnl be turned on, that does not put empty objects in per-process static
567dnl memory (mostly useful together with shared memory allocators, see PR
568dnl libstdc++/16612 for details).
569dnl
d7a3ef97
JY
570dnl --enable-fully-dynamic-string defines _GLIBCXX_FULLY_DYNAMIC_STRING to 1
571dnl --disable-fully-dynamic-string defines _GLIBCXX_FULLY_DYNAMIC_STRING to 0
572dnl otherwise undefined
1165dc50
PC
573dnl + Usage: GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING[(DEFAULT)]
574dnl Where DEFAULT is either `yes' or `no'.
575dnl
576AC_DEFUN([GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING], [
577 GLIBCXX_ENABLE(fully-dynamic-string,$1,,[do not put empty strings in per-process static memory])
578 if test $enable_fully_dynamic_string = yes; then
d7a3ef97
JY
579 enable_fully_dynamic_string_def=1
580 else
581 enable_fully_dynamic_string_def=0
1165dc50 582 fi
d7a3ef97
JY
583 AC_DEFINE_UNQUOTED([_GLIBCXX_FULLY_DYNAMIC_STRING], [${enable_fully_dynamic_string_def}],
584 [Define to 1 if a fully dynamic basic_string is wanted, 0 to disable, undefined for platform defaults])
1165dc50
PC
585])
586
587
ff66d28f
PE
588dnl
589dnl Does any necessary configuration of the testsuite directory. Generates
590dnl the testsuite_hooks.h header.
591dnl
592dnl GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE must be done before this.
593dnl
594dnl Sets:
b329dd10 595dnl enable_abi_check
e3f78d9b
BK
596dnl GLIBCXX_TEST_WCHAR_T
597dnl GLIBCXX_TEST_THREAD
ff66d28f
PE
598dnl Substs:
599dnl baseline_dir
00fc1bf6 600dnl baseline_subdir_switch
ff66d28f 601dnl
f214923c 602AC_DEFUN([GLIBCXX_CONFIGURE_TESTSUITE], [
0646b059 603 if $GLIBCXX_IS_NATIVE ; then
2ae6e982 604 # Do checks for resource limit functions.
ff66d28f
PE
605 GLIBCXX_CHECK_SETRLIMIT
606
607 # Look for setenv, so that extended locale tests can be performed.
608 GLIBCXX_CHECK_STDLIB_DECL_AND_LINKAGE_3(setenv)
0646b059 609 fi
dbc66058 610
0646b059
GK
611 if $GLIBCXX_IS_NATIVE && test $is_hosted = yes &&
612 test $enable_symvers != no; then
613 case "$host" in
614 *-*-cygwin*)
b329dd10 615 enable_abi_check=no ;;
0646b059 616 *)
b329dd10 617 enable_abi_check=yes ;;
0646b059 618 esac
dbc66058
DJ
619 else
620 # Only build this as native, since automake does not understand
621 # CXX_FOR_BUILD.
622 enable_abi_check=no
ff66d28f 623 fi
b329dd10 624
ff66d28f 625 # Export file names for ABI checking.
68c512f6 626 baseline_dir="$glibcxx_srcdir/config/abi/post/${abi_baseline_pair}"
ff66d28f 627 AC_SUBST(baseline_dir)
00fc1bf6
RO
628 baseline_subdir_switch="$abi_baseline_subdir_switch"
629 AC_SUBST(baseline_subdir_switch)
ff66d28f
PE
630])
631
632
b329dd10 633dnl
c1e0e100 634dnl Does any necessary configuration for docbook in the docs directory.
b329dd10
BK
635dnl
636dnl XSLTPROC must be set before this
637dnl
638dnl Sets:
639dnl glibcxx_stylesheets
640dnl Substs:
641dnl XSL_STYLE_DIR
642dnl
643AC_DEFUN([GLIBCXX_CONFIGURE_DOCBOOK], [
644
c1e0e100 645AC_MSG_CHECKING([for docbook stylesheets for documentation creation])
b329dd10
BK
646glibcxx_stylesheets=no
647if test x${XSLTPROC} = xyes && echo '<title/>' | xsltproc --noout --nonet --xinclude http://docbook.sourceforge.net/release/xsl-ns/current/xhtml-1_1/docbook.xsl - 2>/dev/null; then
648 glibcxx_stylesheets=yes
649fi
650AC_MSG_RESULT($glibcxx_stylesheets)
651
652AC_MSG_CHECKING([for local stylesheet directory])
653glibcxx_local_stylesheets=no
654if test x"$glibcxx_stylesheets" = x"yes"; then
655 if test -d /usr/share/sgml/docbook/xsl-ns-stylesheets; then
656 glibcxx_local_stylesheets=yes
657 XSL_STYLE_DIR=/usr/share/sgml/docbook/xsl-ns-stylesheets
658 fi
659 if test -d /usr/share/xml/docbook/stylesheet/docbook-xsl-ns; then
660 glibcxx_local_stylesheets=yes
661 XSL_STYLE_DIR=/usr/share/xml/docbook/stylesheet/docbook-xsl-ns
662 fi
663fi
664AC_MSG_RESULT($glibcxx_local_stylesheets)
665
666if test x"$glibcxx_local_stylesheets" = x"yes"; then
667 AC_SUBST(XSL_STYLE_DIR)
668 AC_MSG_NOTICE($XSL_STYLE_DIR)
669else
670 glibcxx_stylesheets=no
671fi
c1e0e100
BK
672
673# Check for epub3 dependencies.
674AC_MSG_CHECKING([for epub3 stylesheets for documentation creation])
675glibcxx_epub_stylesheets=no
676if test x"$glibcxx_local_stylesheets" = x"yes"; then
e9469833 677 if test -f "$XSL_STYLE_DIR/epub3/chunk.xsl"; then
c1e0e100
BK
678 glibcxx_epub_stylesheets=yes
679 fi
680fi
681AC_MSG_RESULT($glibcxx_epub_stylesheets)
e9469833 682AM_CONDITIONAL(BUILD_EPUB, test x"$glibcxx_epub_stylesheets" = x"yes")
c1e0e100 683
b329dd10
BK
684])
685
686
ff66d28f
PE
687dnl
688dnl Set up *_INCLUDES variables for all sundry Makefile.am's.
689dnl
690dnl Substs:
691dnl GLIBCXX_INCLUDES
692dnl TOPLEVEL_INCLUDES
ff66d28f 693dnl
f214923c 694AC_DEFUN([GLIBCXX_EXPORT_INCLUDES], [
0df3f383
PE
695 # Used for every C++ compile we perform.
696 GLIBCXX_INCLUDES="\
697-I$glibcxx_builddir/include/$host_alias \
698-I$glibcxx_builddir/include \
699-I$glibcxx_srcdir/libsupc++"
ff66d28f 700
0df3f383 701 # For Canadian crosses, pick this up too.
ff66d28f 702 if test $CANADIAN = yes; then
37e0ff11 703 GLIBCXX_INCLUDES="$GLIBCXX_INCLUDES -I\${includedir}"
ff66d28f
PE
704 fi
705
0df3f383 706 # Stuff in the actual top level. Currently only used by libsupc++ to
201cdb74
RO
707 # get unwind* headers from the libgcc dir.
708 #TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/libgcc -I$(toplevel_srcdir)/include'
709 TOPLEVEL_INCLUDES='-I$(toplevel_srcdir)/libgcc'
ff66d28f
PE
710
711 # Now, export this to all the little Makefiles....
712 AC_SUBST(GLIBCXX_INCLUDES)
713 AC_SUBST(TOPLEVEL_INCLUDES)
ff66d28f
PE
714])
715
716
717dnl
718dnl Set up *_FLAGS and *FLAGS variables for all sundry Makefile.am's.
719dnl (SECTION_FLAGS is done under CHECK_COMPILER_FEATURES.)
720dnl
721dnl Substs:
722dnl OPTIMIZE_CXXFLAGS
723dnl WARN_FLAGS
724dnl
f214923c 725AC_DEFUN([GLIBCXX_EXPORT_FLAGS], [
ff66d28f
PE
726 # Optimization flags that are probably a good idea for thrill-seekers. Just
727 # uncomment the lines below and make, everything else is ready to go...
62801a96 728 # Alternatively OPTIMIZE_CXXFLAGS can be set in configure.host.
ff66d28f 729 # OPTIMIZE_CXXFLAGS = -O3 -fstrict-aliasing -fvtable-gc
ff66d28f
PE
730 AC_SUBST(OPTIMIZE_CXXFLAGS)
731
b124c5c4 732 WARN_FLAGS='-Wall -Wextra -Wwrite-strings -Wcast-qual -Wabi'
ff66d28f
PE
733 AC_SUBST(WARN_FLAGS)
734])
735
736
737dnl
738dnl All installation directory information is determined here.
739dnl
740dnl Substs:
741dnl gxx_install_dir
742dnl glibcxx_prefixdir
743dnl glibcxx_toolexecdir
744dnl glibcxx_toolexeclibdir
745dnl
746dnl Assumes cross_compiling bits already done, and with_cross_host in
747dnl particular.
748dnl
0f57bf40 749dnl This logic must match gcc/configure.ac's setting of gcc_gxx_include_dir.
505692b0 750dnl config/gxx-include-dir.m4 must be kept consistant with this as well.
f214923c 751AC_DEFUN([GLIBCXX_EXPORT_INSTALL_INFO], [
ff66d28f
PE
752 glibcxx_toolexecdir=no
753 glibcxx_toolexeclibdir=no
754 glibcxx_prefixdir=$prefix
755
756 AC_MSG_CHECKING([for gxx-include-dir])
757 AC_ARG_WITH([gxx-include-dir],
758 AC_HELP_STRING([--with-gxx-include-dir=DIR],
b329dd10 759 [installation directory for include files]),
ff66d28f
PE
760 [case "$withval" in
761 yes) AC_MSG_ERROR([Missing directory for --with-gxx-include-dir]) ;;
762 no) gxx_include_dir=no ;;
763 *) gxx_include_dir=$withval ;;
764 esac],
765 [gxx_include_dir=no])
766 AC_MSG_RESULT($gxx_include_dir)
767
768 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
769 AC_ARG_ENABLE([version-specific-runtime-libs],
770 AC_HELP_STRING([--enable-version-specific-runtime-libs],
b329dd10 771 [Specify that runtime libraries should be installed in a compiler-specific directory]),
ff66d28f
PE
772 [case "$enableval" in
773 yes) version_specific_libs=yes ;;
774 no) version_specific_libs=no ;;
775 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
776 esac],
777 [version_specific_libs=no])
778 AC_MSG_RESULT($version_specific_libs)
779
780 # Default case for install directory for include files.
781 if test $version_specific_libs = no && test $gxx_include_dir = no; then
0f57bf40 782 gxx_include_dir='include/c++/${gcc_version}'
b329dd10
BK
783 if test -n "$with_cross_host" &&
784 test x"$with_cross_host" != x"no"; then
0f57bf40
MM
785 gxx_include_dir='${prefix}/${target_alias}/'"$gxx_include_dir"
786 else
787 gxx_include_dir='${prefix}/'"$gxx_include_dir"
788 fi
ff66d28f
PE
789 fi
790
791 # Version-specific runtime libs processing.
792 if test $version_specific_libs = yes; then
793 # Need the gcc compiler version to know where to install libraries
794 # and header files if --enable-version-specific-runtime-libs option
0314451d
GK
795 # is selected. FIXME: these variables are misnamed, there are
796 # no executables installed in _toolexecdir or _toolexeclibdir.
ff66d28f 797 if test x"$gxx_include_dir" = x"no"; then
47194af4 798 gxx_include_dir='${libdir}/gcc/${host_alias}/${gcc_version}/include/c++'
ff66d28f 799 fi
0314451d 800 glibcxx_toolexecdir='${libdir}/gcc/${host_alias}'
47194af4 801 glibcxx_toolexeclibdir='${toolexecdir}/${gcc_version}$(MULTISUBDIR)'
ff66d28f
PE
802 fi
803
804 # Calculate glibcxx_toolexecdir, glibcxx_toolexeclibdir
805 # Install a library built with a cross compiler in tooldir, not libdir.
806 if test x"$glibcxx_toolexecdir" = x"no"; then
807 if test -n "$with_cross_host" &&
808 test x"$with_cross_host" != x"no"; then
fbe057bb
PE
809 glibcxx_toolexecdir='${exec_prefix}/${host_alias}'
810 glibcxx_toolexeclibdir='${toolexecdir}/lib'
ff66d28f 811 else
0314451d 812 glibcxx_toolexecdir='${libdir}/gcc/${host_alias}'
fbe057bb 813 glibcxx_toolexeclibdir='${libdir}'
ff66d28f 814 fi
fbe057bb 815 multi_os_directory=`$CXX -print-multi-os-directory`
ff66d28f
PE
816 case $multi_os_directory in
817 .) ;; # Avoid trailing /.
818 *) glibcxx_toolexeclibdir=$glibcxx_toolexeclibdir/$multi_os_directory ;;
819 esac
820 fi
821
822 AC_MSG_CHECKING([for install location])
823 AC_MSG_RESULT($gxx_include_dir)
824
825 AC_SUBST(glibcxx_prefixdir)
826 AC_SUBST(gxx_include_dir)
827 AC_SUBST(glibcxx_toolexecdir)
828 AC_SUBST(glibcxx_toolexeclibdir)
829])
830
831
832dnl
833dnl GLIBCXX_ENABLE
834dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING)
835dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, permit a|b|c)
836dnl (FEATURE, DEFAULT, HELP-ARG, HELP-STRING, SHELL-CODE-HANDLER)
837dnl
838dnl See docs/html/17_intro/configury.html#enable for documentation.
839dnl
840m4_define([GLIBCXX_ENABLE],[dnl
841m4_define([_g_switch],[--enable-$1])dnl
b453ace3
AS
842m4_define([_g_help],[AC_HELP_STRING([_g_switch$3],[$4 @<:@default=$2@:>@])])dnl
843 AC_ARG_ENABLE([$1],m4_dquote(_g_help),
ff66d28f
PE
844 m4_bmatch([$5],
845 [^permit ],
846 [[
847 case "$enableval" in
848 m4_bpatsubst([$5],[permit ])) ;;
849 *) AC_MSG_ERROR(Unknown argument to enable/disable $1) ;;
b329dd10
BK
850 dnl Idea for future: generate a URL pointing to
851 dnl "onlinedocs/configopts.html#whatever"
ff66d28f
PE
852 esac
853 ]],
854 [^$],
855 [[
856 case "$enableval" in
857 yes|no) ;;
858 *) AC_MSG_ERROR(Argument to enable/disable $1 must be yes or no) ;;
859 esac
860 ]],
861 [[$5]]),
862 [enable_]m4_bpatsubst([$1],-,_)[=][$2])
863m4_undefine([_g_switch])dnl
864m4_undefine([_g_help])dnl
865])
866
867
868dnl
869dnl Check for ISO/IEC 9899:1999 "C99" support.
870dnl
871dnl --enable-c99 defines _GLIBCXX_USE_C99
872dnl --disable-c99 leaves _GLIBCXX_USE_C99 undefined
873dnl + Usage: GLIBCXX_ENABLE_C99[(DEFAULT)]
874dnl Where DEFAULT is either `yes' or `no'.
875dnl + If 'C99' stuff is not available, ignores DEFAULT and sets `no'.
876dnl
f214923c 877AC_DEFUN([GLIBCXX_ENABLE_C99], [
ff66d28f
PE
878 GLIBCXX_ENABLE(c99,$1,,[turns on ISO/IEC 9899:1999 support])
879
347669a0
BK
880 if test x"$enable_c99" = x"yes"; then
881
ff66d28f
PE
882 AC_LANG_SAVE
883 AC_LANG_CPLUSPLUS
884
18f310b7
PC
885 # Use -std=c++98 because the default (-std=gnu++98) leaves __STRICT_ANSI__
886 # undefined and fake C99 facilities - like pre-standard snprintf - may be
887 # spuriously enabled.
888 # Long term, -std=c++0x could be even better, could manage to explicitely
889 # request C99 facilities to the underlying C headers.
b6f914f6 890 ac_save_CXXFLAGS="$CXXFLAGS"
18f310b7 891 CXXFLAGS="$CXXFLAGS -std=c++98"
b6f914f6
RS
892 ac_save_LIBS="$LIBS"
893 ac_save_gcc_no_link="$gcc_no_link"
894
895 if test x$gcc_no_link != xyes; then
896 # Use -fno-exceptions to that the C driver can link these tests without
897 # hitting undefined references to personality routines.
898 CXXFLAGS="$CXXFLAGS -fno-exceptions"
899 AC_CHECK_LIB(m, sin, [
900 LIBS="$LIBS -lm"
901 ], [
902 # Use the default compile-only tests in GCC_TRY_COMPILE_OR_LINK
903 gcc_no_link=yes
904 ])
905 fi
906
ff66d28f 907 # Check for the existence of <math.h> functions used if C99 is enabled.
ff66d28f 908 AC_MSG_CHECKING([for ISO C99 support in <math.h>])
6d26724a 909 AC_CACHE_VAL(glibcxx_cv_c99_math, [
b6f914f6
RS
910 GCC_TRY_COMPILE_OR_LINK(
911 [#include <math.h>
912 volatile double d1, d2;
913 volatile int i;],
914 [i = fpclassify(d1);
915 i = isfinite(d1);
916 i = isinf(d1);
917 i = isnan(d1);
918 i = isnormal(d1);
919 i = signbit(d1);
920 i = isgreater(d1, d2);
921 i = isgreaterequal(d1, d2);
922 i = isless(d1, d2);
923 i = islessequal(d1, d2);
924 i = islessgreater(d1, d2);
925 i = islessgreater(d1, d2);
926 i = isunordered(d1, d2);
6d26724a 927 ],[glibcxx_cv_c99_math=yes], [glibcxx_cv_c99_math=no])
347669a0 928 ])
6d26724a
RW
929 AC_MSG_RESULT($glibcxx_cv_c99_math)
930 if test x"$glibcxx_cv_c99_math" = x"yes"; then
4651e622 931 AC_DEFINE(_GLIBCXX_USE_C99_MATH, 1,
b329dd10
BK
932 [Define if C99 functions or macros in <math.h> should be imported
933 in <cmath> in namespace std.])
517da0ce
MM
934 fi
935
225962a0 936 # Check for the existence of <complex.h> complex math functions.
52e6723c
BK
937 # This is necessary even though libstdc++ uses the builtin versions
938 # of these functions, because if the builtin cannot be used, a reference
939 # to the library function is emitted.
5ad2f32d 940 AC_CHECK_HEADERS(tgmath.h, ac_has_tgmath_h=yes, ac_has_tgmath_h=no)
52e6723c 941 AC_CHECK_HEADERS(complex.h, ac_has_complex_h=yes, ac_has_complex_h=no)
6d26724a 942 glibcxx_cv_c99_complex=no;
52e6723c 943 if test x"$ac_has_complex_h" = x"yes"; then
52e6723c 944 AC_MSG_CHECKING([for ISO C99 support in <complex.h>])
b6f914f6
RS
945 GCC_TRY_COMPILE_OR_LINK(
946 [#include <complex.h>
947 typedef __complex__ float float_type;
948 typedef __complex__ double double_type;
949 typedef __complex__ long double ld_type;
950 volatile float_type tmpf;
951 volatile double_type tmpd;
952 volatile ld_type tmpld;
953 volatile float f;
954 volatile double d;
955 volatile long double ld;],
956 [f = cabsf(tmpf);
957 f = cargf(tmpf);
958 tmpf = ccosf(tmpf);
959 tmpf = ccoshf(tmpf);
960 tmpf = cexpf(tmpf);
961 tmpf = clogf(tmpf);
962 tmpf = csinf(tmpf);
963 tmpf = csinhf(tmpf);
964 tmpf = csqrtf(tmpf);
965 tmpf = ctanf(tmpf);
966 tmpf = ctanhf(tmpf);
967 tmpf = cpowf(tmpf, tmpf);
3cd54fc9 968 tmpf = cprojf(tmpf);
b6f914f6
RS
969 d = cabs(tmpd);
970 d = carg(tmpd);
971 tmpd = ccos(tmpd);
972 tmpd = ccosh(tmpd);
973 tmpd = cexp(tmpd);
974 tmpd = clog(tmpd);
975 tmpd = csin(tmpd);
976 tmpd = csinh(tmpd);
977 tmpd = csqrt(tmpd);
978 tmpd = ctan(tmpd);
979 tmpd = ctanh(tmpd);
980 tmpd = cpow(tmpd, tmpd);
3cd54fc9 981 tmpd = cproj(tmpd);
b6f914f6
RS
982 ld = cabsl(tmpld);
983 ld = cargl(tmpld);
984 tmpld = ccosl(tmpld);
985 tmpld = ccoshl(tmpld);
986 tmpld = cexpl(tmpld);
987 tmpld = clogl(tmpld);
988 tmpld = csinl(tmpld);
989 tmpld = csinhl(tmpld);
990 tmpld = csqrtl(tmpld);
991 tmpld = ctanl(tmpld);
992 tmpld = ctanhl(tmpld);
993 tmpld = cpowl(tmpld, tmpld);
3cd54fc9 994 tmpld = cprojl(tmpld);
6d26724a 995 ],[glibcxx_cv_c99_complex=yes], [glibcxx_cv_c99_complex=no])
52e6723c 996 fi
6d26724a
RW
997 AC_MSG_RESULT($glibcxx_cv_c99_complex)
998 if test x"$glibcxx_cv_c99_complex" = x"yes"; then
4651e622 999 AC_DEFINE(_GLIBCXX_USE_C99_COMPLEX, 1,
b329dd10
BK
1000 [Define if C99 functions in <complex.h> should be used in
1001 <complex>. Using compiler builtins for these functions requires
1002 corresponding C99 library functions to be present.])
52e6723c
BK
1003 fi
1004
ff66d28f 1005 # Check for the existence in <stdio.h> of vscanf, et. al.
ff66d28f 1006 AC_MSG_CHECKING([for ISO C99 support in <stdio.h>])
6d26724a 1007 AC_CACHE_VAL(glibcxx_cv_c99_stdio, [
b6f914f6
RS
1008 GCC_TRY_COMPILE_OR_LINK(
1009 [#include <stdio.h>
1010 #include <stdarg.h>
1011 void foo(char* fmt, ...)
1012 {
1013 va_list args; va_start(args, fmt);
b329dd10 1014 vfscanf(stderr, "%i", args);
b6f914f6
RS
1015 vscanf("%i", args);
1016 vsnprintf(fmt, 0, "%i", args);
1017 vsscanf(fmt, "%i", args);
1018 }],
1019 [snprintf("12", 0, "%i");],
6d26724a 1020 [glibcxx_cv_c99_stdio=yes], [glibcxx_cv_c99_stdio=no])
347669a0 1021 ])
6d26724a 1022 AC_MSG_RESULT($glibcxx_cv_c99_stdio)
ff66d28f
PE
1023
1024 # Check for the existence in <stdlib.h> of lldiv_t, et. al.
ff66d28f 1025 AC_MSG_CHECKING([for ISO C99 support in <stdlib.h>])
6d26724a 1026 AC_CACHE_VAL(glibcxx_cv_c99_stdlib, [
b6f914f6
RS
1027 GCC_TRY_COMPILE_OR_LINK(
1028 [#include <stdlib.h>
1029 volatile float f;
1030 volatile long double ld;
1031 volatile unsigned long long ll;
1032 lldiv_t mydivt;],
1033 [char* tmp;
1034 f = strtof("gnu", &tmp);
1035 ld = strtold("gnu", &tmp);
1036 ll = strtoll("gnu", &tmp, 10);
1037 ll = strtoull("gnu", &tmp, 10);
1038 ll = llabs(10);
1039 mydivt = lldiv(10,1);
1040 ll = mydivt.quot;
1041 ll = mydivt.rem;
1042 ll = atoll("10");
1043 _Exit(0);
6d26724a 1044 ],[glibcxx_cv_c99_stdlib=yes], [glibcxx_cv_c99_stdlib=no])
347669a0 1045 ])
6d26724a 1046 AC_MSG_RESULT($glibcxx_cv_c99_stdlib)
ff66d28f 1047
8a9b2875 1048 # Check for the existence in <wchar.h> of wcstold, etc.
6d26724a 1049 glibcxx_cv_c99_wchar=no;
347669a0
BK
1050 if test x"$ac_has_wchar_h" = xyes &&
1051 test x"$ac_has_wctype_h" = xyes; then
b329dd10 1052 AC_MSG_CHECKING([for ISO C99 support in <wchar.h>])
347669a0 1053 AC_TRY_COMPILE([#include <wchar.h>
b329dd10
BK
1054 namespace test
1055 {
347669a0
BK
1056 using ::wcstold;
1057 using ::wcstoll;
347669a0 1058 using ::wcstoull;
347669a0 1059 }
6d26724a 1060 ],[],[glibcxx_cv_c99_wchar=yes], [glibcxx_cv_c99_wchar=no])
347669a0
BK
1061
1062 # Checks for wide character functions that may not be present.
1063 # Injection of these is wrapped with guard macros.
1064 # NB: only put functions here, instead of immediately above, if
1065 # absolutely necessary.
1066 AC_TRY_COMPILE([#include <wchar.h>
b329dd10 1067 namespace test { using ::vfwscanf; } ], [],
347669a0
BK
1068 [AC_DEFINE(HAVE_VFWSCANF,1,
1069 [Defined if vfwscanf exists.])],[])
1070
1071 AC_TRY_COMPILE([#include <wchar.h>
b329dd10 1072 namespace test { using ::vswscanf; } ], [],
347669a0
BK
1073 [AC_DEFINE(HAVE_VSWSCANF,1,
1074 [Defined if vswscanf exists.])],[])
1075
1076 AC_TRY_COMPILE([#include <wchar.h>
b329dd10 1077 namespace test { using ::vwscanf; } ], [],
347669a0
BK
1078 [AC_DEFINE(HAVE_VWSCANF,1,[Defined if vwscanf exists.])],[])
1079
1080 AC_TRY_COMPILE([#include <wchar.h>
b329dd10 1081 namespace test { using ::wcstof; } ], [],
347669a0
BK
1082 [AC_DEFINE(HAVE_WCSTOF,1,[Defined if wcstof exists.])],[])
1083
1084 AC_TRY_COMPILE([#include <wctype.h>],
b329dd10 1085 [ wint_t t; int i = iswblank(t);],
347669a0
BK
1086 [AC_DEFINE(HAVE_ISWBLANK,1,
1087 [Defined if iswblank exists.])],[])
1088
6d26724a 1089 AC_MSG_RESULT($glibcxx_cv_c99_wchar)
347669a0 1090 fi
ff66d28f 1091
347669a0 1092 # Option parsed, now set things appropriately.
6d26724a
RW
1093 if test x"$glibcxx_cv_c99_math" = x"no" ||
1094 test x"$glibcxx_cv_c99_complex" = x"no" ||
1095 test x"$glibcxx_cv_c99_stdio" = x"no" ||
1096 test x"$glibcxx_cv_c99_stdlib" = x"no" ||
1097 test x"$glibcxx_cv_c99_wchar" = x"no"; then
ff66d28f 1098 enable_c99=no;
347669a0 1099 else
4651e622
KC
1100 AC_DEFINE(_GLIBCXX_USE_C99, 1,
1101 [Define if C99 functions or macros from <wchar.h>, <math.h>,
1102 <complex.h>, <stdio.h>, and <stdlib.h> can be used or exposed.])
ff66d28f
PE
1103 fi
1104
b6f914f6
RS
1105 gcc_no_link="$ac_save_gcc_no_link"
1106 LIBS="$ac_save_LIBS"
1107 CXXFLAGS="$ac_save_CXXFLAGS"
ff66d28f 1108 AC_LANG_RESTORE
b329dd10 1109 fi
347669a0
BK
1110
1111 AC_MSG_CHECKING([for fully enabled ISO C99 support])
1112 AC_MSG_RESULT($enable_c99)
dcfa0bc8
PE
1113])
1114
1115
15e38d0d 1116dnl
959d14e1
CF
1117dnl Check for clock_gettime, nanosleep and sched_yield, used in the
1118dnl implementation of 20.8.5 [time.clock], and 30.2.2 [thread.thread.this]
1119dnl in the current C++0x working draft.
15e38d0d 1120dnl
959d14e1
CF
1121dnl --enable-libstdcxx-time
1122dnl --enable-libstdcxx-time=yes
1123dnl checks for the availability of monotonic and realtime clocks,
1124dnl nanosleep and sched_yield in libc and libposix4 and, in case, links
1125dnl the latter
1126dnl --enable-libstdcxx-time=rt
6c3385c1 1127dnl also searches (and, in case, links) librt. Note that this is
610870b2 1128dnl not always desirable because, in glibc, for example, in turn it
6c3385c1
PC
1129dnl triggers the linking of libpthread too, which activates locking,
1130dnl a large overhead for single-thread programs.
959d14e1
CF
1131dnl --enable-libstdcxx-time=no
1132dnl --disable-libstdcxx-time
610870b2
PC
1133dnl disables the checks completely
1134dnl
959d14e1 1135AC_DEFUN([GLIBCXX_ENABLE_LIBSTDCXX_TIME], [
610870b2 1136
959d14e1 1137 AC_MSG_CHECKING([for clock_gettime, nanosleep and sched_yield])
b453ace3 1138 GLIBCXX_ENABLE(libstdcxx-time,$1,[[[=KIND]]],
610870b2
PC
1139 [use KIND for check type],
1140 [permit yes|no|rt])
15e38d0d
CF
1141
1142 AC_LANG_SAVE
1143 AC_LANG_CPLUSPLUS
1144 ac_save_CXXFLAGS="$CXXFLAGS"
1145 CXXFLAGS="$CXXFLAGS -fno-exceptions"
ec6fa56a
PB
1146 ac_save_LIBS="$LIBS"
1147
1ac5e52c
MK
1148 ac_has_clock_monotonic=no
1149 ac_has_clock_realtime=no
1150 AC_MSG_RESULT($enable_libstdcxx_time)
ec6fa56a 1151
959d14e1 1152 if test x"$enable_libstdcxx_time" != x"no"; then
ec6fa56a 1153
959d14e1 1154 if test x"$enable_libstdcxx_time" = x"rt"; then
610870b2 1155 AC_SEARCH_LIBS(clock_gettime, [rt posix4])
959d14e1 1156 AC_SEARCH_LIBS(nanosleep, [rt posix4])
610870b2
PC
1157 else
1158 AC_SEARCH_LIBS(clock_gettime, [posix4])
959d14e1 1159 AC_SEARCH_LIBS(nanosleep, [posix4])
610870b2
PC
1160 fi
1161
1162 case "$ac_cv_search_clock_gettime" in
1163 -l*) GLIBCXX_LIBS=$ac_cv_search_clock_gettime
959d14e1
CF
1164 ;;
1165 esac
1166 case "$ac_cv_search_nanosleep" in
1167 -l*) GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_nanosleep"
1168 ;;
1169 esac
1170
1171 AC_SEARCH_LIBS(sched_yield, [rt posix4])
1172
1173 case "$ac_cv_search_sched_yield" in
1174 -lposix4*)
1175 GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_sched_yield"
1176 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
b329dd10 1177 [ Defined if sched_yield is available. ])
959d14e1
CF
1178 ;;
1179 -lrt*)
1180 if test x"$enable_libstdcxx_time" = x"rt"; then
b329dd10
BK
1181 GLIBCXX_LIBS="$GLIBCXX_LIBS $ac_cv_search_sched_yield"
1182 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
1183 [ Defined if sched_yield is available. ])
959d14e1
CF
1184 fi
1185 ;;
1186 *)
1187 AC_DEFINE(_GLIBCXX_USE_SCHED_YIELD, 1,
b329dd10 1188 [ Defined if sched_yield is available. ])
959d14e1 1189 ;;
610870b2
PC
1190 esac
1191
1192 AC_CHECK_HEADERS(unistd.h, ac_has_unistd_h=yes, ac_has_unistd_h=no)
1193
1194 if test x"$ac_has_unistd_h" = x"yes"; then
1195 AC_MSG_CHECKING([for monotonic clock])
1196 AC_TRY_LINK(
b329dd10
BK
1197 [#include <unistd.h>
1198 #include <time.h>
1199 ],
1200 [#if _POSIX_TIMERS > 0 && defined(_POSIX_MONOTONIC_CLOCK)
1201 timespec tp;
1202 #endif
1203 clock_gettime(CLOCK_MONOTONIC, &tp);
1204 ], [ac_has_clock_monotonic=yes], [ac_has_clock_monotonic=no])
1205
1206 AC_MSG_RESULT($ac_has_clock_monotonic)
1207
610870b2
PC
1208 AC_MSG_CHECKING([for realtime clock])
1209 AC_TRY_LINK(
b329dd10
BK
1210 [#include <unistd.h>
1211 #include <time.h>
1212 ],
1213 [#if _POSIX_TIMERS > 0
1214 timespec tp;
1215 #endif
1216 clock_gettime(CLOCK_REALTIME, &tp);
1217 ], [ac_has_clock_realtime=yes], [ac_has_clock_realtime=no])
610870b2
PC
1218
1219 AC_MSG_RESULT($ac_has_clock_realtime)
610870b2 1220
959d14e1
CF
1221 AC_MSG_CHECKING([for nanosleep])
1222 AC_TRY_LINK(
b329dd10
BK
1223 [#include <unistd.h>
1224 #include <time.h>
1225 ],
1226 [#if _POSIX_TIMERS > 0
1227 timespec tp;
1228 #endif
1229 nanosleep(&tp, 0);
1230 ], [ac_has_nanosleep=yes], [ac_has_nanosleep=no])
959d14e1
CF
1231
1232 AC_MSG_RESULT($ac_has_nanosleep)
1233 fi
610870b2
PC
1234 fi
1235
15e38d0d
CF
1236 if test x"$ac_has_clock_monotonic" = x"yes"; then
1237 AC_DEFINE(_GLIBCXX_USE_CLOCK_MONOTONIC, 1,
1238 [ Defined if clock_gettime has monotonic clock support. ])
1239 fi
ec6fa56a 1240
15e38d0d
CF
1241 if test x"$ac_has_clock_realtime" = x"yes"; then
1242 AC_DEFINE(_GLIBCXX_USE_CLOCK_REALTIME, 1,
1243 [ Defined if clock_gettime has realtime clock support. ])
1244 fi
ec6fa56a 1245
959d14e1
CF
1246 if test x"$ac_has_nanosleep" = x"yes"; then
1247 AC_DEFINE(_GLIBCXX_USE_NANOSLEEP, 1,
1248 [ Defined if nanosleep is available. ])
1249 fi
1250
ec6fa56a
PB
1251 AC_SUBST(GLIBCXX_LIBS)
1252
15e38d0d 1253 CXXFLAGS="$ac_save_CXXFLAGS"
ec6fa56a 1254 LIBS="$ac_save_LIBS"
15e38d0d
CF
1255 AC_LANG_RESTORE
1256])
1257
1258dnl
610870b2
PC
1259dnl Check for gettimeofday, used in the implementation of 20.8.5
1260dnl [time.clock] in the current C++0x working draft.
15e38d0d
CF
1261dnl
1262AC_DEFUN([GLIBCXX_CHECK_GETTIMEOFDAY], [
b329dd10 1263
610870b2
PC
1264 AC_MSG_CHECKING([for gettimeofday])
1265
15e38d0d
CF
1266 AC_LANG_SAVE
1267 AC_LANG_CPLUSPLUS
1268 ac_save_CXXFLAGS="$CXXFLAGS"
1269 CXXFLAGS="$CXXFLAGS -fno-exceptions"
b329dd10 1270
15e38d0d
CF
1271 ac_has_gettimeofday=no;
1272 AC_CHECK_HEADERS(sys/time.h, ac_has_sys_time_h=yes, ac_has_sys_time_h=no)
1273 if test x"$ac_has_sys_time_h" = x"yes"; then
1274 AC_MSG_CHECKING([for gettimeofday])
610870b2 1275 GCC_TRY_COMPILE_OR_LINK([#include <sys/time.h>],
15e38d0d
CF
1276 [timeval tv; gettimeofday(&tv, 0);],
1277 [ac_has_gettimeofday=yes], [ac_has_gettimeofday=no])
b329dd10 1278
15e38d0d
CF
1279 AC_MSG_RESULT($ac_has_gettimeofday)
1280 fi
b329dd10 1281
15e38d0d
CF
1282 if test x"$ac_has_gettimeofday" = x"yes"; then
1283 AC_DEFINE(_GLIBCXX_USE_GETTIMEOFDAY, 1,
1284 [ Defined if gettimeofday is available. ])
1285 fi
b329dd10 1286
15e38d0d
CF
1287 CXXFLAGS="$ac_save_CXXFLAGS"
1288 AC_LANG_RESTORE
1289])
1290
bd2bb1ea
PC
1291dnl
1292dnl Check for ISO/IEC 9899:1999 "C99" support to ISO/IEC DTR 19768 "TR1"
1293dnl facilities in Chapter 8, "C compatibility".
1294dnl
1295AC_DEFUN([GLIBCXX_CHECK_C99_TR1], [
1296
1297 AC_LANG_SAVE
1298 AC_LANG_CPLUSPLUS
1299
18f310b7
PC
1300 # Use -std=c++98 because the default (-std=gnu++98) leaves __STRICT_ANSI__
1301 # undefined and fake C99 facilities may be spuriously enabled.
1302 ac_save_CXXFLAGS="$CXXFLAGS"
1303 CXXFLAGS="$CXXFLAGS -std=c++98"
1304
bd2bb1ea
PC
1305 # Check for the existence of <complex.h> complex math functions used
1306 # by tr1/complex.
1307 AC_CHECK_HEADERS(complex.h, ac_has_complex_h=yes, ac_has_complex_h=no)
1308 ac_c99_complex_tr1=no;
1309 if test x"$ac_has_complex_h" = x"yes"; then
1310 AC_MSG_CHECKING([for ISO C99 support to TR1 in <complex.h>])
1311 AC_TRY_COMPILE([#include <complex.h>],
b329dd10
BK
1312 [typedef __complex__ float float_type; float_type tmpf;
1313 cacosf(tmpf);
1314 casinf(tmpf);
1315 catanf(tmpf);
1316 cacoshf(tmpf);
1317 casinhf(tmpf);
1318 catanhf(tmpf);
bd2bb1ea 1319 typedef __complex__ double double_type; double_type tmpd;
b329dd10
BK
1320 cacos(tmpd);
1321 casin(tmpd);
1322 catan(tmpd);
1323 cacosh(tmpd);
1324 casinh(tmpd);
1325 catanh(tmpd);
bd2bb1ea 1326 typedef __complex__ long double ld_type; ld_type tmpld;
b329dd10
BK
1327 cacosl(tmpld);
1328 casinl(tmpld);
1329 catanl(tmpld);
1330 cacoshl(tmpld);
1331 casinhl(tmpld);
1332 catanhl(tmpld);
bd2bb1ea
PC
1333 ],[ac_c99_complex_tr1=yes], [ac_c99_complex_tr1=no])
1334 fi
1335 AC_MSG_RESULT($ac_c99_complex_tr1)
1336 if test x"$ac_c99_complex_tr1" = x"yes"; then
1337 AC_DEFINE(_GLIBCXX_USE_C99_COMPLEX_TR1, 1,
b329dd10
BK
1338 [Define if C99 functions in <complex.h> should be used in
1339 <tr1/complex>. Using compiler builtins for these functions
bd2bb1ea
PC
1340 requires corresponding C99 library functions to be present.])
1341 fi
1342
1343 # Check for the existence of <ctype.h> functions.
1344 AC_MSG_CHECKING([for ISO C99 support to TR1 in <ctype.h>])
6d26724a 1345 AC_CACHE_VAL(glibcxx_cv_c99_ctype_tr1, [
bd2bb1ea 1346 AC_TRY_COMPILE([#include <ctype.h>],
b329dd10
BK
1347 [int ch;
1348 int ret;
1349 ret = isblank(ch);
0f24e8de
PC
1350 ],[glibcxx_cv_c99_ctype_tr1=yes],
1351 [glibcxx_cv_c99_ctype_tr1=no])
bd2bb1ea 1352 ])
6d26724a
RW
1353 AC_MSG_RESULT($glibcxx_cv_c99_ctype_tr1)
1354 if test x"$glibcxx_cv_c99_ctype_tr1" = x"yes"; then
bd2bb1ea 1355 AC_DEFINE(_GLIBCXX_USE_C99_CTYPE_TR1, 1,
b329dd10 1356 [Define if C99 functions in <ctype.h> should be imported in
bd2bb1ea
PC
1357 <tr1/cctype> in namespace std::tr1.])
1358 fi
1359
20921e53
PC
1360 # Check for the existence of <fenv.h> functions.
1361 AC_CHECK_HEADERS(fenv.h, ac_has_fenv_h=yes, ac_has_fenv_h=no)
1362 ac_c99_fenv_tr1=no;
1363 if test x"$ac_has_fenv_h" = x"yes"; then
1364 AC_MSG_CHECKING([for ISO C99 support to TR1 in <fenv.h>])
1365 AC_TRY_COMPILE([#include <fenv.h>],
b329dd10
BK
1366 [int except, mode;
1367 fexcept_t* pflag;
1368 fenv_t* penv;
1369 int ret;
1370 ret = feclearexcept(except);
1371 ret = fegetexceptflag(pflag, except);
1372 ret = feraiseexcept(except);
1373 ret = fesetexceptflag(pflag, except);
1374 ret = fetestexcept(except);
1375 ret = fegetround();
1376 ret = fesetround(mode);
1377 ret = fegetenv(penv);
1378 ret = feholdexcept(penv);
1379 ret = fesetenv(penv);
1380 ret = feupdateenv(penv);
20921e53
PC
1381 ],[ac_c99_fenv_tr1=yes], [ac_c99_fenv_tr1=no])
1382 fi
1383 AC_MSG_RESULT($ac_c99_fenv_tr1)
1384 if test x"$ac_c99_fenv_tr1" = x"yes"; then
1385 AC_DEFINE(_GLIBCXX_USE_C99_FENV_TR1, 1,
b329dd10 1386 [Define if C99 functions in <fenv.h> should be imported in
20921e53
PC
1387 <tr1/cfenv> in namespace std::tr1.])
1388 fi
1389
2a1d6346
PC
1390 # Check for the existence of <stdint.h> types.
1391 AC_MSG_CHECKING([for ISO C99 support to TR1 in <stdint.h>])
6d26724a 1392 AC_CACHE_VAL(glibcxx_cv_c99_stdint_tr1, [
5289e808 1393 AC_TRY_COMPILE([#define __STDC_LIMIT_MACROS
b329dd10
BK
1394 #define __STDC_CONSTANT_MACROS
1395 #include <stdint.h>],
1396 [typedef int8_t my_int8_t;
5289e808
PC
1397 my_int8_t i8 = INT8_MIN;
1398 i8 = INT8_MAX;
b329dd10 1399 typedef int16_t my_int16_t;
5289e808
PC
1400 my_int16_t i16 = INT16_MIN;
1401 i16 = INT16_MAX;
b329dd10 1402 typedef int32_t my_int32_t;
5289e808
PC
1403 my_int32_t i32 = INT32_MIN;
1404 i32 = INT32_MAX;
b329dd10 1405 typedef int64_t my_int64_t;
5289e808
PC
1406 my_int64_t i64 = INT64_MIN;
1407 i64 = INT64_MAX;
b329dd10 1408 typedef int_fast8_t my_int_fast8_t;
5289e808
PC
1409 my_int_fast8_t if8 = INT_FAST8_MIN;
1410 if8 = INT_FAST8_MAX;
b329dd10 1411 typedef int_fast16_t my_int_fast16_t;
5289e808
PC
1412 my_int_fast16_t if16 = INT_FAST16_MIN;
1413 if16 = INT_FAST16_MAX;
b329dd10 1414 typedef int_fast32_t my_int_fast32_t;
5289e808
PC
1415 my_int_fast32_t if32 = INT_FAST32_MIN;
1416 if32 = INT_FAST32_MAX;
b329dd10 1417 typedef int_fast64_t my_int_fast64_t;
5289e808
PC
1418 my_int_fast64_t if64 = INT_FAST64_MIN;
1419 if64 = INT_FAST64_MAX;
b329dd10 1420 typedef int_least8_t my_int_least8_t;
5289e808
PC
1421 my_int_least8_t il8 = INT_LEAST8_MIN;
1422 il8 = INT_LEAST8_MAX;
b329dd10 1423 typedef int_least16_t my_int_least16_t;
5289e808
PC
1424 my_int_least16_t il16 = INT_LEAST16_MIN;
1425 il16 = INT_LEAST16_MAX;
b329dd10 1426 typedef int_least32_t my_int_least32_t;
5289e808
PC
1427 my_int_least32_t il32 = INT_LEAST32_MIN;
1428 il32 = INT_LEAST32_MAX;
b329dd10 1429 typedef int_least64_t my_int_least64_t;
5289e808
PC
1430 my_int_least64_t il64 = INT_LEAST64_MIN;
1431 il64 = INT_LEAST64_MAX;
2a1d6346 1432 typedef intmax_t my_intmax_t;
5289e808
PC
1433 my_intmax_t im = INTMAX_MAX;
1434 im = INTMAX_MIN;
2a1d6346 1435 typedef intptr_t my_intptr_t;
5289e808
PC
1436 my_intptr_t ip = INTPTR_MAX;
1437 ip = INTPTR_MIN;
b329dd10 1438 typedef uint8_t my_uint8_t;
5289e808
PC
1439 my_uint8_t ui8 = UINT8_MAX;
1440 ui8 = UINT8_MAX;
b329dd10 1441 typedef uint16_t my_uint16_t;
5289e808
PC
1442 my_uint16_t ui16 = UINT16_MAX;
1443 ui16 = UINT16_MAX;
b329dd10 1444 typedef uint32_t my_uint32_t;
5289e808
PC
1445 my_uint32_t ui32 = UINT32_MAX;
1446 ui32 = UINT32_MAX;
b329dd10 1447 typedef uint64_t my_uint64_t;
5289e808
PC
1448 my_uint64_t ui64 = UINT64_MAX;
1449 ui64 = UINT64_MAX;
b329dd10 1450 typedef uint_fast8_t my_uint_fast8_t;
5289e808
PC
1451 my_uint_fast8_t uif8 = UINT_FAST8_MAX;
1452 uif8 = UINT_FAST8_MAX;
b329dd10 1453 typedef uint_fast16_t my_uint_fast16_t;
5289e808
PC
1454 my_uint_fast16_t uif16 = UINT_FAST16_MAX;
1455 uif16 = UINT_FAST16_MAX;
b329dd10 1456 typedef uint_fast32_t my_uint_fast32_t;
5289e808
PC
1457 my_uint_fast32_t uif32 = UINT_FAST32_MAX;
1458 uif32 = UINT_FAST32_MAX;
b329dd10 1459 typedef uint_fast64_t my_uint_fast64_t;
5289e808
PC
1460 my_uint_fast64_t uif64 = UINT_FAST64_MAX;
1461 uif64 = UINT_FAST64_MAX;
b329dd10 1462 typedef uint_least8_t my_uint_least8_t;
5289e808
PC
1463 my_uint_least8_t uil8 = UINT_LEAST8_MAX;
1464 uil8 = UINT_LEAST8_MAX;
b329dd10 1465 typedef uint_least16_t my_uint_least16_t;
5289e808
PC
1466 my_uint_least16_t uil16 = UINT_LEAST16_MAX;
1467 uil16 = UINT_LEAST16_MAX;
b329dd10 1468 typedef uint_least32_t my_uint_least32_t;
5289e808
PC
1469 my_uint_least32_t uil32 = UINT_LEAST32_MAX;
1470 uil32 = UINT_LEAST32_MAX;
b329dd10 1471 typedef uint_least64_t my_uint_least64_t;
5289e808
PC
1472 my_uint_least64_t uil64 = UINT_LEAST64_MAX;
1473 uil64 = UINT_LEAST64_MAX;
2a1d6346 1474 typedef uintmax_t my_uintmax_t;
5289e808
PC
1475 my_uintmax_t uim = UINTMAX_MAX;
1476 uim = UINTMAX_MAX;
2a1d6346 1477 typedef uintptr_t my_uintptr_t;
5289e808
PC
1478 my_uintptr_t uip = UINTPTR_MAX;
1479 uip = UINTPTR_MAX;
0f24e8de
PC
1480 ],[glibcxx_cv_c99_stdint_tr1=yes],
1481 [glibcxx_cv_c99_stdint_tr1=no])
2a1d6346 1482 ])
6d26724a
RW
1483 AC_MSG_RESULT($glibcxx_cv_c99_stdint_tr1)
1484 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
2a1d6346 1485 AC_DEFINE(_GLIBCXX_USE_C99_STDINT_TR1, 1,
b329dd10 1486 [Define if C99 types in <stdint.h> should be imported in
2a1d6346
PC
1487 <tr1/cstdint> in namespace std::tr1.])
1488 fi
1489
4f0de5dd
PC
1490 # Check for the existence of <math.h> functions.
1491 AC_MSG_CHECKING([for ISO C99 support to TR1 in <math.h>])
6d26724a 1492 AC_CACHE_VAL(glibcxx_cv_c99_math_tr1, [
4f0de5dd 1493 AC_TRY_COMPILE([#include <math.h>],
b329dd10
BK
1494 [typedef double_t my_double_t;
1495 typedef float_t my_float_t;
1496 acosh(0.0);
1497 acoshf(0.0f);
1498 acoshl(0.0l);
1499 asinh(0.0);
1500 asinhf(0.0f);
1501 asinhl(0.0l);
1502 atanh(0.0);
1503 atanhf(0.0f);
1504 atanhl(0.0l);
1505 cbrt(0.0);
1506 cbrtf(0.0f);
1507 cbrtl(0.0l);
1508 copysign(0.0, 0.0);
1509 copysignf(0.0f, 0.0f);
1510 copysignl(0.0l, 0.0l);
1511 erf(0.0);
1512 erff(0.0f);
1513 erfl(0.0l);
1514 erfc(0.0);
1515 erfcf(0.0f);
1516 erfcl(0.0l);
1517 exp2(0.0);
1518 exp2f(0.0f);
1519 exp2l(0.0l);
1520 expm1(0.0);
1521 expm1f(0.0f);
1522 expm1l(0.0l);
1523 fdim(0.0, 0.0);
1524 fdimf(0.0f, 0.0f);
1525 fdiml(0.0l, 0.0l);
1526 fma(0.0, 0.0, 0.0);
1527 fmaf(0.0f, 0.0f, 0.0f);
1528 fmal(0.0l, 0.0l, 0.0l);
1529 fmax(0.0, 0.0);
1530 fmaxf(0.0f, 0.0f);
1531 fmaxl(0.0l, 0.0l);
1532 fmin(0.0, 0.0);
1533 fminf(0.0f, 0.0f);
1534 fminl(0.0l, 0.0l);
1535 hypot(0.0, 0.0);
1536 hypotf(0.0f, 0.0f);
1537 hypotl(0.0l, 0.0l);
1538 ilogb(0.0);
1539 ilogbf(0.0f);
1540 ilogbl(0.0l);
1541 lgamma(0.0);
1542 lgammaf(0.0f);
1543 lgammal(0.0l);
1544 llrint(0.0);
1545 llrintf(0.0f);
1546 llrintl(0.0l);
1547 llround(0.0);
1548 llroundf(0.0f);
1549 llroundl(0.0l);
1550 log1p(0.0);
1551 log1pf(0.0f);
1552 log1pl(0.0l);
1553 log2(0.0);
1554 log2f(0.0f);
1555 log2l(0.0l);
1556 logb(0.0);
1557 logbf(0.0f);
1558 logbl(0.0l);
1559 lrint(0.0);
1560 lrintf(0.0f);
1561 lrintl(0.0l);
1562 lround(0.0);
1563 lroundf(0.0f);
1564 lroundl(0.0l);
1565 nan(0);
1566 nanf(0);
1567 nanl(0);
1568 nearbyint(0.0);
1569 nearbyintf(0.0f);
1570 nearbyintl(0.0l);
1571 nextafter(0.0, 0.0);
1572 nextafterf(0.0f, 0.0f);
1573 nextafterl(0.0l, 0.0l);
1574 nexttoward(0.0, 0.0);
1575 nexttowardf(0.0f, 0.0f);
1576 nexttowardl(0.0l, 0.0l);
1577 remainder(0.0, 0.0);
1578 remainderf(0.0f, 0.0f);
1579 remainderl(0.0l, 0.0l);
1580 remquo(0.0, 0.0, 0);
1581 remquof(0.0f, 0.0f, 0);
1582 remquol(0.0l, 0.0l, 0);
1583 rint(0.0);
1584 rintf(0.0f);
1585 rintl(0.0l);
1586 round(0.0);
1587 roundf(0.0f);
1588 roundl(0.0l);
1589 scalbln(0.0, 0l);
1590 scalblnf(0.0f, 0l);
1591 scalblnl(0.0l, 0l);
1592 scalbn(0.0, 0);
1593 scalbnf(0.0f, 0);
1594 scalbnl(0.0l, 0);
1595 tgamma(0.0);
1596 tgammaf(0.0f);
1597 tgammal(0.0l);
1598 trunc(0.0);
1599 truncf(0.0f);
1600 truncl(0.0l);
6d26724a 1601 ],[glibcxx_cv_c99_math_tr1=yes], [glibcxx_cv_c99_math_tr1=no])
4f0de5dd 1602 ])
6d26724a
RW
1603 AC_MSG_RESULT($glibcxx_cv_c99_math_tr1)
1604 if test x"$glibcxx_cv_c99_math_tr1" = x"yes"; then
4f0de5dd 1605 AC_DEFINE(_GLIBCXX_USE_C99_MATH_TR1, 1,
b329dd10
BK
1606 [Define if C99 functions or macros in <math.h> should be imported
1607 in <tr1/cmath> in namespace std::tr1.])
4f0de5dd
PC
1608 fi
1609
03bf3bc1 1610 # Check for the existence of <inttypes.h> functions (NB: doesn't make
a834e097 1611 # sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1).
03bf3bc1 1612 ac_c99_inttypes_tr1=no;
6d26724a 1613 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
03bf3bc1
PC
1614 AC_MSG_CHECKING([for ISO C99 support to TR1 in <inttypes.h>])
1615 AC_TRY_COMPILE([#include <inttypes.h>],
b329dd10
BK
1616 [intmax_t i, numer, denom, base;
1617 const char* s;
1618 char** endptr;
1619 intmax_t ret = imaxabs(i);
1620 imaxdiv_t dret = imaxdiv(numer, denom);
1621 ret = strtoimax(s, endptr, base);
1622 uintmax_t uret = strtoumax(s, endptr, base);
1623 ],[ac_c99_inttypes_tr1=yes], [ac_c99_inttypes_tr1=no])
03bf3bc1 1624 fi
52a64bd3
PC
1625 AC_MSG_RESULT($ac_c99_inttypes_tr1)
1626 if test x"$ac_c99_inttypes_tr1" = x"yes"; then
1627 AC_DEFINE(_GLIBCXX_USE_C99_INTTYPES_TR1, 1,
b329dd10
BK
1628 [Define if C99 functions in <inttypes.h> should be imported in
1629 <tr1/cinttypes> in namespace std::tr1.])
52a64bd3
PC
1630 fi
1631
a834e097
PC
1632 # Check for the existence of whcar_t <inttypes.h> functions (NB: doesn't
1633 # make sense if the glibcxx_cv_c99_stdint_tr1 check fails, per C99, 7.8/1).
1634 ac_c99_inttypes_wchar_t_tr1=no;
1635 if test x"$glibcxx_cv_c99_stdint_tr1" = x"yes"; then
1636 AC_MSG_CHECKING([for wchar_t ISO C99 support to TR1 in <inttypes.h>])
1637 AC_TRY_COMPILE([#include <inttypes.h>],
b329dd10 1638 [intmax_t base;
a834e097 1639 const wchar_t* s;
b329dd10
BK
1640 wchar_t** endptr;
1641 intmax_t ret = wcstoimax(s, endptr, base);
1642 uintmax_t uret = wcstoumax(s, endptr, base);
1643 ],[ac_c99_inttypes_wchar_t_tr1=yes],
a834e097
PC
1644 [ac_c99_inttypes_wchar_t_tr1=no])
1645 fi
1646 AC_MSG_RESULT($ac_c99_inttypes_wchar_t_tr1)
1647 if test x"$ac_c99_inttypes_wchar_t_tr1" = x"yes"; then
1648 AC_DEFINE(_GLIBCXX_USE_C99_INTTYPES_WCHAR_T_TR1, 1,
b329dd10 1649 [Define if wchar_t C99 functions in <inttypes.h> should be
a834e097
PC
1650 imported in <tr1/cinttypes> in namespace std::tr1.])
1651 fi
1652
b329dd10 1653 # Check for the existence of the <stdbool.h> header.
1e41a98c
PC
1654 AC_CHECK_HEADERS(stdbool.h)
1655
e0f0ee74
JW
1656 # Check for the existence of the <stdalign.h> header.
1657 AC_CHECK_HEADERS(stdalign.h)
1658
18f310b7 1659 CXXFLAGS="$ac_save_CXXFLAGS"
bd2bb1ea
PC
1660 AC_LANG_RESTORE
1661])
1662
d8bc9819 1663dnl
9ce0a22e 1664dnl Check whether "/dev/random" and "/dev/urandom" are available for the
d8bc9819
PC
1665dnl random_device of "TR1" (Chapter 5.1, "Random number generation").
1666dnl
1667AC_DEFUN([GLIBCXX_CHECK_RANDOM_TR1], [
1668
9ce0a22e 1669 AC_MSG_CHECKING([for "/dev/random" and "/dev/urandom" for TR1 random_device])
6d26724a 1670 AC_CACHE_VAL(glibcxx_cv_random_tr1, [
9ce0a22e
PC
1671 if test -r /dev/random && test -r /dev/urandom; then
1672 glibcxx_cv_random_tr1=yes;
1673 else
1674 glibcxx_cv_random_tr1=no;
1675 fi
d8bc9819 1676 ])
6d26724a 1677 AC_MSG_RESULT($glibcxx_cv_random_tr1)
9ce0a22e 1678
6d26724a 1679 if test x"$glibcxx_cv_random_tr1" = x"yes"; then
d8bc9819 1680 AC_DEFINE(_GLIBCXX_USE_RANDOM_TR1, 1,
b329dd10 1681 [Define if /dev/random and /dev/urandom are available for
d8bc9819
PC
1682 the random_device of TR1 (Chapter 5.1).])
1683 fi
1684
1685])
bd2bb1ea 1686
1814157e 1687dnl
ddc9c40d
PC
1688dnl Compute the EOF, SEEK_CUR, and SEEK_END integer constants.
1689dnl
1690AC_DEFUN([GLIBCXX_COMPUTE_STDIO_INTEGER_CONSTANTS], [
1691
9b04fa91 1692 AC_CACHE_CHECK([for the value of EOF], glibcxx_cv_stdio_eof, [
ddc9c40d 1693 AC_COMPUTE_INT([glibcxx_cv_stdio_eof], [[EOF]],
b329dd10
BK
1694 [#include <stdio.h>],
1695 [AC_MSG_ERROR([computing EOF failed])])
ddc9c40d 1696 ])
ddc9c40d 1697 AC_DEFINE_UNQUOTED(_GLIBCXX_STDIO_EOF, $glibcxx_cv_stdio_eof,
b329dd10 1698 [Define to the value of the EOF integer constant.])
ddc9c40d 1699
9b04fa91 1700 AC_CACHE_CHECK([for the value of SEEK_CUR], glibcxx_cv_stdio_seek_cur, [
ddc9c40d 1701 AC_COMPUTE_INT([glibcxx_cv_stdio_seek_cur], [[SEEK_CUR]],
b329dd10
BK
1702 [#include <stdio.h>],
1703 [AC_MSG_ERROR([computing SEEK_CUR failed])])
ddc9c40d 1704 ])
ddc9c40d 1705 AC_DEFINE_UNQUOTED(_GLIBCXX_STDIO_SEEK_CUR, $glibcxx_cv_stdio_seek_cur,
b329dd10 1706 [Define to the value of the SEEK_CUR integer constant.])
ddc9c40d 1707
9b04fa91 1708 AC_CACHE_CHECK([for the value of SEEK_END], glibcxx_cv_stdio_seek_end, [
ddc9c40d 1709 AC_COMPUTE_INT([glibcxx_cv_stdio_seek_end], [[SEEK_END]],
b329dd10
BK
1710 [#include <stdio.h>],
1711 [AC_MSG_ERROR([computing SEEK_END failed])])
ddc9c40d 1712 ])
ddc9c40d 1713 AC_DEFINE_UNQUOTED(_GLIBCXX_STDIO_SEEK_END, $glibcxx_cv_stdio_seek_end,
b329dd10 1714 [Define to the value of the SEEK_END integer constant.])
1814157e
PC
1715])
1716
09fae88d
RO
1717dnl
1718dnl Check whether required C++ overloads are present in <math.h>.
1719dnl
1720
1721AC_DEFUN([GLIBCXX_CHECK_MATH_PROTO], [
1722
1723 AC_LANG_SAVE
1724 AC_LANG_CPLUSPLUS
1725
1726 case "$host" in
1727 *-*-solaris2.*)
1728 # Solaris 8 FCS only had an overload for double std::abs(double) in
1729 # <iso/math_iso.h>. Patches 111721-04 (SPARC) and 112757-01 (x86)
1730 # introduced the full set also found from Solaris 9 onwards.
1731 AC_MSG_CHECKING([for float std::abs(float) overload])
1732 AC_CACHE_VAL(glibcxx_cv_abs_float, [
1733 AC_COMPILE_IFELSE([AC_LANG_SOURCE(
1734 [#include <math.h>
1735 namespace std {
1736 inline float abs(float __x)
1737 { return __builtin_fabsf(__x); }
1738 }
1739 ])],
2a5d011c
BK
1740 [glibcxx_cv_abs_float=no],
1741 [glibcxx_cv_abs_float=yes]
09fae88d
RO
1742 )])
1743
1744 # autoheader cannot handle indented templates.
1745 AH_VERBATIM([__CORRECT_ISO_CPP_MATH_H_PROTO1],
2a5d011c 1746 [/* Define if all C++ overloads are available in <math.h>. */
09fae88d
RO
1747#if __cplusplus >= 199711L
1748#undef __CORRECT_ISO_CPP_MATH_H_PROTO1
1749#endif])
1750 AH_VERBATIM([__CORRECT_ISO_CPP_MATH_H_PROTO2],
2a5d011c 1751 [/* Define if only double std::abs(double) is available in <math.h>. */
09fae88d
RO
1752#if __cplusplus >= 199711L
1753#undef __CORRECT_ISO_CPP_MATH_H_PROTO2
1754#endif])
1755
1756 if test $glibcxx_cv_abs_float = yes; then
2a5d011c 1757 AC_DEFINE(__CORRECT_ISO_CPP_MATH_H_PROTO1)
09fae88d 1758 else
2a5d011c 1759 AC_DEFINE(__CORRECT_ISO_CPP_MATH_H_PROTO2)
09fae88d
RO
1760 fi
1761 AC_MSG_RESULT($glibcxx_cv_abs_float)
1762 ;;
1763 esac
1764
1765 AC_LANG_RESTORE
1766])
1767
1768dnl
1769dnl Check whether required C++ overloads are present in <stdlib.h>.
1770dnl
1771
1772AC_DEFUN([GLIBCXX_CHECK_STDLIB_PROTO], [
1773
1774 AC_LANG_SAVE
1775 AC_LANG_CPLUSPLUS
1776
1777 case "$host" in
1778 *-*-solaris2.*)
1779 # Solaris 8 FCS lacked the overloads for long std::abs(long) and
1780 # ldiv_t std::div(long, long) in <iso/stdlib_iso.h>. Patches 109607-02
1781 # (SPARC) and 109608-02 (x86) introduced them.
1782 AC_MSG_CHECKING([for long std::abs(long) overload])
1783 AC_CACHE_VAL(glibcxx_cv_abs_long, [
1784 AC_COMPILE_IFELSE([AC_LANG_SOURCE(
1785 [#include <stdlib.h>
1786 namespace std {
1787 inline long
1788 abs(long __i) { return labs(__i); }
1789 }
2a5d011c
BK
1790 ])],
1791 [glibcxx_cv_abs_long=no],
1792 [glibcxx_cv_abs_long=yes]
09fae88d
RO
1793 )])
1794
1795 # autoheader cannot handle indented templates.
1796 AH_VERBATIM([__CORRECT_ISO_CPP_STDLIB_H_PROTO],
2a5d011c 1797 [/* Define if all C++ overloads are available in <stdlib.h>. */
09fae88d
RO
1798#if __cplusplus >= 199711L
1799#undef __CORRECT_ISO_CPP_STDLIB_H_PROTO
1800#endif])
1801 if test $glibcxx_cv_abs_long = yes; then
2a5d011c 1802 AC_DEFINE(__CORRECT_ISO_CPP_STDLIB_H_PROTO, 1)
09fae88d
RO
1803 fi
1804 AC_MSG_RESULT($glibcxx_cv_abs_long)
1805 ;;
1806 esac
1807
1808 AC_LANG_RESTORE
1809])
1810
0646d8a3
BK
1811dnl
1812dnl Check whether macros, etc are present for <system_error>
1813dnl
1814AC_DEFUN([GLIBCXX_CHECK_SYSTEM_ERROR], [
1815
6d26724a
RW
1816m4_pushdef([n_syserr], [1])dnl
1817m4_foreach([syserr], [EOWNERDEAD, ENOTRECOVERABLE, ENOLINK, EPROTO, ENODATA,
70593ad2 1818 ENOSR, ENOSTR, ETIME, EBADMSG, ECANCELED,
edf2239b
KT
1819 EOVERFLOW, ENOTSUP, EIDRM, ETXTBSY,
1820 ECHILD, ENOSPC, EPERM,
1821 ETIMEDOUT, EWOULDBLOCK],
6d26724a
RW
1822[m4_pushdef([SYSERR], m4_toupper(syserr))dnl
1823AC_MSG_CHECKING([for syserr])
1824AC_CACHE_VAL([glibcxx_cv_system_error[]n_syserr], [
1825AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[#include <errno.h>]],
1826 [int i = syserr;])],
1827 [glibcxx_cv_system_error[]n_syserr=yes],
1828 [glibcxx_cv_system_error[]n_syserr=no])
1829])
1830AC_MSG_RESULT([$glibcxx_cv_system_error[]n_syserr])
1831if test x"$glibcxx_cv_system_error[]n_syserr" = x"yes"; then
1832 AC_DEFINE([HAVE_]SYSERR, 1, [Define if ]syserr[ exists.])
1833fi
1834m4_define([n_syserr], m4_incr(n_syserr))dnl
1835m4_popdef([SYSERR])dnl
1836])
1837m4_popdef([n_syserr])dnl
0646d8a3
BK
1838])
1839
0214010c 1840dnl
ff66d28f
PE
1841dnl Check for what type of C headers to use.
1842dnl
1843dnl --enable-cheaders= [does stuff].
1844dnl --disable-cheaders [does not do anything, really].
1845dnl + Usage: GLIBCXX_ENABLE_CHEADERS[(DEFAULT)]
af13a7a6 1846dnl Where DEFAULT is either 'c' or 'c_std' or 'c_global'.
ff66d28f 1847dnl
f214923c 1848AC_DEFUN([GLIBCXX_ENABLE_CHEADERS], [
b453ace3 1849 GLIBCXX_ENABLE(cheaders,$1,[[[=KIND]]],
af13a7a6 1850 [construct "C" headers for g++], [permit c|c_std|c_global])
ff66d28f
PE
1851 AC_MSG_NOTICE("C" header strategy set to $enable_cheaders)
1852
1853 C_INCLUDE_DIR='${glibcxx_srcdir}/include/'$enable_cheaders
1854
af13a7a6
BK
1855 # Allow overrides to configure.host here.
1856 if test $enable_cheaders = c_global; then
1857 c_compatibility=yes
1858 fi
1859
ff66d28f 1860 AC_SUBST(C_INCLUDE_DIR)
92eabea2
PE
1861 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C, test $enable_cheaders = c)
1862 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C_STD, test $enable_cheaders = c_std)
af13a7a6 1863 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_C_GLOBAL, test $enable_cheaders = c_global)
92eabea2 1864 GLIBCXX_CONDITIONAL(GLIBCXX_C_HEADERS_COMPATIBILITY, test $c_compatibility = yes)
ff66d28f
PE
1865])
1866
1867
0214010c 1868dnl
ff66d28f
PE
1869dnl Check for which locale library to use. The choice is mapped to
1870dnl a subdirectory of config/locale.
37bc6ca2 1871dnl
ff66d28f 1872dnl Default is generic.
0214010c 1873dnl
f214923c 1874AC_DEFUN([GLIBCXX_ENABLE_CLOCALE], [
b453ace3 1875 GLIBCXX_ENABLE(clocale,auto,[[[=MODEL]]],
ff66d28f 1876 [use MODEL for target locale package],
aeb4926a 1877 [permit generic|gnu|ieee_1003.1-2001|newlib|yes|no|auto])
0258dc3a
BK
1878
1879 # Deal with gettext issues. Default to not using it (=no) until we detect
1880 # support for it later. Let the user turn it off via --e/d, but let that
1881 # default to on for easier handling.
1882 USE_NLS=no
1883 AC_ARG_ENABLE(nls,
1884 AC_HELP_STRING([--enable-nls],[use Native Language Support (default)]),
1885 [],
1886 [enable_nls=yes])
b329dd10 1887
aeb4926a 1888 # Either a known package, or "auto"
ff66d28f
PE
1889 if test $enable_clocale = no || test $enable_clocale = yes; then
1890 enable_clocale=auto
1891 fi
0214010c
BK
1892 enable_clocale_flag=$enable_clocale
1893
0258dc3a 1894 # Probe for locale model to use if none specified.
ff66d28f
PE
1895 # Default to "generic".
1896 if test $enable_clocale_flag = auto; then
7d3998a4
PE
1897 case ${target_os} in
1898 linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
b329dd10
BK
1899 enable_clocale_flag=gnu
1900 ;;
a7f7b334 1901 darwin* | freebsd*)
b329dd10 1902 enable_clocale_flag=darwin
f9686024 1903 ;;
56deb74c 1904 *)
aeb4926a
YZ
1905 if test x"$with_newlib" = x"yes"; then
1906 enable_clocale_flag=newlib
1907 else
1908 enable_clocale_flag=generic
1909 fi
b329dd10 1910 ;;
56deb74c
BK
1911 esac
1912 fi
1913
0258dc3a
BK
1914 # Sanity check model, and test for special functionality.
1915 if test $enable_clocale_flag = gnu; then
1916 AC_EGREP_CPP([_GLIBCXX_ok], [
1917 #include <features.h>
22b36782 1918 #if (__GLIBC__ > 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ >= 3)) && !defined(__UCLIBC__)
0258dc3a
BK
1919 _GLIBCXX_ok
1920 #endif
1921 ], enable_clocale_flag=gnu, enable_clocale_flag=generic)
1922
0258dc3a 1923 # Set it to scream when it hurts.
b329dd10 1924 ac_save_CFLAGS="$CFLAGS"
0258dc3a
BK
1925 CFLAGS="-Wimplicit-function-declaration -Werror"
1926
1927 # Use strxfrm_l if available.
1928 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1929 #include <string.h>
1930 #include <locale.h>],
b329dd10
BK
1931 [char s[128]; __locale_t loc; strxfrm_l(s, "C", 5, loc);],
1932 AC_DEFINE(HAVE_STRXFRM_L, 1,
1933 [Define if strxfrm_l is available in <string.h>.]),)
1934
0258dc3a
BK
1935 # Use strerror_l if available.
1936 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1937 #include <string.h>
1938 #include <locale.h>],
b329dd10
BK
1939 [__locale_t loc; strerror_l(5, loc);],
1940 AC_DEFINE(HAVE_STRERROR_L, 1,
1941 [Define if strerror_l is available in <string.h>.]),)
0258dc3a
BK
1942
1943 CFLAGS="$ac_save_CFLAGS"
1944 fi
1945
1946 # Perhaps use strerror_r if available, and strerror_l isn't.
b329dd10 1947 ac_save_CFLAGS="$CFLAGS"
0258dc3a
BK
1948 CFLAGS="-Wimplicit-function-declaration -Werror"
1949 AC_TRY_COMPILE([#define _GNU_SOURCE 1
1950 #include <string.h>
1951 #include <locale.h>],
b329dd10
BK
1952 [char s[128]; strerror_r(5, s, 128);],
1953 AC_DEFINE(HAVE_STRERROR_R, 1,
1954 [Define if strerror_r is available in <string.h>.]),)
0258dc3a 1955 CFLAGS="$ac_save_CFLAGS"
501e321e 1956
ff66d28f 1957 # Set configure bits for specified locale package
0258dc3a 1958 AC_MSG_CHECKING([for C locale to use])
ff66d28f
PE
1959 case ${enable_clocale_flag} in
1960 generic)
33590f13
BK
1961 AC_MSG_RESULT(generic)
1962
1fa4bed7
BK
1963 CLOCALE_H=config/locale/generic/c_locale.h
1964 CLOCALE_CC=config/locale/generic/c_locale.cc
38cca750 1965 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1fa4bed7
BK
1966 CCOLLATE_CC=config/locale/generic/collate_members.cc
1967 CCTYPE_CC=config/locale/generic/ctype_members.cc
1968 CMESSAGES_H=config/locale/generic/messages_members.h
1969 CMESSAGES_CC=config/locale/generic/messages_members.cc
1970 CMONEY_CC=config/locale/generic/monetary_members.cc
1971 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1c26d8fd 1972 CTIME_H=config/locale/generic/time_members.h
1fa4bed7 1973 CTIME_CC=config/locale/generic/time_members.cc
89671b70 1974 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
33590f13 1975 ;;
f9686024 1976 darwin)
a7f7b334 1977 AC_MSG_RESULT(darwin or freebsd)
f9686024
GK
1978
1979 CLOCALE_H=config/locale/generic/c_locale.h
1980 CLOCALE_CC=config/locale/generic/c_locale.cc
f9686024
GK
1981 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1982 CCOLLATE_CC=config/locale/generic/collate_members.cc
1983 CCTYPE_CC=config/locale/darwin/ctype_members.cc
1984 CMESSAGES_H=config/locale/generic/messages_members.h
1985 CMESSAGES_CC=config/locale/generic/messages_members.cc
1986 CMONEY_CC=config/locale/generic/monetary_members.cc
1987 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1988 CTIME_H=config/locale/generic/time_members.h
1989 CTIME_CC=config/locale/generic/time_members.cc
1990 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
1991 ;;
b329dd10 1992
ff66d28f 1993 gnu)
0214010c 1994 AC_MSG_RESULT(gnu)
33590f13
BK
1995
1996 # Declare intention to use gettext, and add support for specific
1997 # languages.
248a9163 1998 # For some reason, ALL_LINGUAS has to be before AM-GNU-GETTEXT
33590f13 1999 ALL_LINGUAS="de fr"
501e321e 2000
248a9163 2001 # Don't call AM-GNU-GETTEXT here. Instead, assume glibc.
501e321e
BK
2002 AC_CHECK_PROG(check_msgfmt, msgfmt, yes, no)
2003 if test x"$check_msgfmt" = x"yes" && test x"$enable_nls" = x"yes"; then
b329dd10 2004 USE_NLS=yes
501e321e 2005 fi
33590f13
BK
2006 # Export the build objects.
2007 for ling in $ALL_LINGUAS; do \
b329dd10
BK
2008 glibcxx_MOFILES="$glibcxx_MOFILES $ling.mo"; \
2009 glibcxx_POFILES="$glibcxx_POFILES $ling.po"; \
33590f13 2010 done
3d7c150e
BK
2011 AC_SUBST(glibcxx_MOFILES)
2012 AC_SUBST(glibcxx_POFILES)
33590f13 2013
1fa4bed7
BK
2014 CLOCALE_H=config/locale/gnu/c_locale.h
2015 CLOCALE_CC=config/locale/gnu/c_locale.cc
38cca750 2016 CCODECVT_CC=config/locale/gnu/codecvt_members.cc
1fa4bed7
BK
2017 CCOLLATE_CC=config/locale/gnu/collate_members.cc
2018 CCTYPE_CC=config/locale/gnu/ctype_members.cc
2019 CMESSAGES_H=config/locale/gnu/messages_members.h
2020 CMESSAGES_CC=config/locale/gnu/messages_members.cc
2021 CMONEY_CC=config/locale/gnu/monetary_members.cc
2022 CNUMERIC_CC=config/locale/gnu/numeric_members.cc
1c26d8fd 2023 CTIME_H=config/locale/gnu/time_members.h
1fa4bed7 2024 CTIME_CC=config/locale/gnu/time_members.cc
89671b70 2025 CLOCALE_INTERNAL_H=config/locale/gnu/c++locale_internal.h
0214010c 2026 ;;
ff66d28f 2027 ieee_1003.1-2001)
7f78b6ca 2028 AC_MSG_RESULT(IEEE 1003.1)
33590f13 2029
1fa4bed7
BK
2030 CLOCALE_H=config/locale/ieee_1003.1-2001/c_locale.h
2031 CLOCALE_CC=config/locale/ieee_1003.1-2001/c_locale.cc
38cca750 2032 CCODECVT_CC=config/locale/generic/codecvt_members.cc
1fa4bed7
BK
2033 CCOLLATE_CC=config/locale/generic/collate_members.cc
2034 CCTYPE_CC=config/locale/generic/ctype_members.cc
2035 CMESSAGES_H=config/locale/ieee_1003.1-2001/messages_members.h
2036 CMESSAGES_CC=config/locale/ieee_1003.1-2001/messages_members.cc
2037 CMONEY_CC=config/locale/generic/monetary_members.cc
2038 CNUMERIC_CC=config/locale/generic/numeric_members.cc
1c26d8fd 2039 CTIME_H=config/locale/generic/time_members.h
1fa4bed7 2040 CTIME_CC=config/locale/generic/time_members.cc
89671b70 2041 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
0214010c 2042 ;;
aeb4926a
YZ
2043 newlib)
2044 AC_MSG_RESULT(newlib)
2045
2046 CLOCALE_H=config/locale/generic/c_locale.h
2047 CLOCALE_CC=config/locale/generic/c_locale.cc
2048 CCODECVT_CC=config/locale/generic/codecvt_members.cc
2049 CCOLLATE_CC=config/locale/generic/collate_members.cc
2050 CCTYPE_CC=config/locale/newlib/ctype_members.cc
2051 CMESSAGES_H=config/locale/generic/messages_members.h
2052 CMESSAGES_CC=config/locale/generic/messages_members.cc
2053 CMONEY_CC=config/locale/generic/monetary_members.cc
2054 CNUMERIC_CC=config/locale/generic/numeric_members.cc
2055 CTIME_H=config/locale/generic/time_members.h
2056 CTIME_CC=config/locale/generic/time_members.cc
2057 CLOCALE_INTERNAL_H=config/locale/generic/c++locale_internal.h
2058 ;;
0214010c
BK
2059 esac
2060
33590f13
BK
2061 # This is where the testsuite looks for locale catalogs, using the
2062 # -DLOCALEDIR define during testsuite compilation.
3d7c150e
BK
2063 glibcxx_localedir=${glibcxx_builddir}/po/share/locale
2064 AC_SUBST(glibcxx_localedir)
33590f13 2065
7f78b6ca
PE
2066 # A standalone libintl (e.g., GNU libintl) may be in use.
2067 if test $USE_NLS = yes; then
c67528fe
PE
2068 AC_CHECK_HEADERS([libintl.h], [], USE_NLS=no)
2069 AC_SEARCH_LIBS(gettext, intl, [], USE_NLS=no)
2070 fi
2071 if test $USE_NLS = yes; then
b329dd10
BK
2072 AC_DEFINE(_GLIBCXX_USE_NLS, 1,
2073 [Define if NLS translations are to be used.])
7f78b6ca
PE
2074 fi
2075
4e10943d 2076 AC_SUBST(USE_NLS)
4a9d5109 2077 AC_SUBST(CLOCALE_H)
33590f13 2078 AC_SUBST(CMESSAGES_H)
6aa43d99
BK
2079 AC_SUBST(CCODECVT_CC)
2080 AC_SUBST(CCOLLATE_CC)
2081 AC_SUBST(CCTYPE_CC)
2082 AC_SUBST(CMESSAGES_CC)
2083 AC_SUBST(CMONEY_CC)
2084 AC_SUBST(CNUMERIC_CC)
1c26d8fd 2085 AC_SUBST(CTIME_H)
6aa43d99
BK
2086 AC_SUBST(CTIME_CC)
2087 AC_SUBST(CLOCALE_CC)
2088 AC_SUBST(CLOCALE_INTERNAL_H)
0214010c
BK
2089])
2090
2091
8b0d6051
BK
2092dnl
2093dnl Check for which std::allocator base class to use. The choice is
2094dnl mapped from a subdirectory of include/ext.
2095dnl
2096dnl Default is new.
2097dnl
2098AC_DEFUN([GLIBCXX_ENABLE_ALLOCATOR], [
347669a0 2099 AC_MSG_CHECKING([for std::allocator base class])
b453ace3 2100 GLIBCXX_ENABLE(libstdcxx-allocator,auto,[[[=KIND]]],
8b0d6051 2101 [use KIND for target std::allocator base],
29d4adf4 2102 [permit new|malloc|mt|bitmap|pool|yes|no|auto])
7d3998a4 2103
8b0d6051
BK
2104 # If they didn't use this option switch, or if they specified --enable
2105 # with no specific model, we'll have to look for one. If they
2106 # specified --disable (???), do likewise.
7d3998a4
PE
2107 if test $enable_libstdcxx_allocator = no ||
2108 test $enable_libstdcxx_allocator = yes;
2109 then
8b0d6051
BK
2110 enable_libstdcxx_allocator=auto
2111 fi
2112
780028b6
BK
2113 # Either a known package, or "auto". Auto implies the default choice
2114 # for a particular platform.
8b0d6051
BK
2115 enable_libstdcxx_allocator_flag=$enable_libstdcxx_allocator
2116
2117 # Probe for host-specific support if no specific model is specified.
2118 # Default to "new".
2119 if test $enable_libstdcxx_allocator_flag = auto; then
2120 case ${target_os} in
780028b6 2121 linux* | gnu* | kfreebsd*-gnu | knetbsd*-gnu)
b329dd10
BK
2122 enable_libstdcxx_allocator_flag=new
2123 ;;
8b0d6051 2124 *)
b329dd10
BK
2125 enable_libstdcxx_allocator_flag=new
2126 ;;
8b0d6051
BK
2127 esac
2128 fi
2129 AC_MSG_RESULT($enable_libstdcxx_allocator_flag)
b329dd10 2130
8b0d6051
BK
2131
2132 # Set configure bits for specified locale package
2133 case ${enable_libstdcxx_allocator_flag} in
2134 bitmap)
2135 ALLOCATOR_H=config/allocator/bitmap_allocator_base.h
2136 ALLOCATOR_NAME=__gnu_cxx::bitmap_allocator
2137 ;;
2138 malloc)
2139 ALLOCATOR_H=config/allocator/malloc_allocator_base.h
2140 ALLOCATOR_NAME=__gnu_cxx::malloc_allocator
2141 ;;
2142 mt)
2143 ALLOCATOR_H=config/allocator/mt_allocator_base.h
2144 ALLOCATOR_NAME=__gnu_cxx::__mt_alloc
2145 ;;
2146 new)
2147 ALLOCATOR_H=config/allocator/new_allocator_base.h
2148 ALLOCATOR_NAME=__gnu_cxx::new_allocator
2149 ;;
29d4adf4
PC
2150 pool)
2151 ALLOCATOR_H=config/allocator/pool_allocator_base.h
2152 ALLOCATOR_NAME=__gnu_cxx::__pool_alloc
b329dd10 2153 ;;
8b0d6051
BK
2154 esac
2155
2156 AC_SUBST(ALLOCATOR_H)
2157 AC_SUBST(ALLOCATOR_NAME)
2158])
2159
2160
b2dad0e3 2161dnl
ff66d28f
PE
2162dnl Check for whether the Boost-derived checks should be turned on.
2163dnl
2164dnl --enable-concept-checks turns them on.
2165dnl --disable-concept-checks leaves them off.
2166dnl + Usage: GLIBCXX_ENABLE_CONCEPT_CHECKS[(DEFAULT)]
2167dnl Where DEFAULT is either `yes' or `no'.
2168dnl
f214923c 2169AC_DEFUN([GLIBCXX_ENABLE_CONCEPT_CHECKS], [
ff66d28f
PE
2170 GLIBCXX_ENABLE(concept-checks,$1,,[use Boost-derived template checks])
2171 if test $enable_concept_checks = yes; then
4651e622 2172 AC_DEFINE(_GLIBCXX_CONCEPT_CHECKS, 1,
b329dd10 2173 [Define to use concept checking code from the boost libraries.])
ff66d28f
PE
2174 fi
2175])
2176
ed4f96af
BK
2177dnl
2178dnl Use extern templates.
2179dnl
2180dnl --enable-extern-template defines _GLIBCXX_EXTERN_TEMPLATE to 1
2181dnl --disable-extern-template defines _GLIBCXX_EXTERN_TEMPLATE to 0
2182
2183dnl + Usage: GLIBCXX_ENABLE_TEMPLATE[(DEFAULT)]
2184dnl Where DEFAULT is `yes' or `no'.
2185dnl
2186AC_DEFUN([GLIBCXX_ENABLE_EXTERN_TEMPLATE], [
2187
2188 GLIBCXX_ENABLE(extern-template,$1,,[enable extern template])
2189
2190 AC_MSG_CHECKING([for extern template support])
2191 AC_MSG_RESULT([$enable_extern_template])
2192
2193 GLIBCXX_CONDITIONAL(ENABLE_EXTERN_TEMPLATE, test $enable_extern_template = yes)
2194])
2195
c2ba9709
JS
2196dnl
2197dnl Check for parallel mode pre-requisites, including OpenMP support.
2198dnl
2199dnl + Usage: GLIBCXX_ENABLE_PARALLEL
2200dnl
2201AC_DEFUN([GLIBCXX_ENABLE_PARALLEL], [
2202
2203 enable_parallel=no;
6995087d 2204
0aec205c
BK
2205 # See if configured libgomp/omp.h exists. (libgomp may be in
2206 # noconfigdirs but not explicitly disabled.)
aae29963 2207 if echo " ${TARGET_CONFIGDIRS} " | grep " libgomp " > /dev/null 2>&1 ; then
0aec205c
BK
2208 enable_parallel=yes;
2209 else
aae29963 2210 AC_MSG_NOTICE([target-libgomp not built])
c2ba9709
JS
2211 fi
2212
2213 AC_MSG_CHECKING([for parallel mode support])
2214 AC_MSG_RESULT([$enable_parallel])
2215 GLIBCXX_CONDITIONAL(ENABLE_PARALLEL, test $enable_parallel = yes)
2216])
2217
ff66d28f 2218
b2dad0e3 2219dnl
ff66d28f 2220dnl Check for which I/O library to use: stdio, or something specific.
37bc6ca2 2221dnl
ff66d28f 2222dnl Default is stdio.
b2dad0e3 2223dnl
f214923c 2224AC_DEFUN([GLIBCXX_ENABLE_CSTDIO], [
ff66d28f 2225 AC_MSG_CHECKING([for underlying I/O to use])
b453ace3 2226 GLIBCXX_ENABLE(cstdio,stdio,[[[=PACKAGE]]],
ff66d28f
PE
2227 [use target-specific I/O package], [permit stdio])
2228
2229 # Now that libio has been removed, you can have any color you want as long
2230 # as it's black. This is one big no-op until other packages are added, but
2231 # showing the framework never hurts.
2232 case ${enable_cstdio} in
2233 stdio)
33590f13
BK
2234 CSTDIO_H=config/io/c_io_stdio.h
2235 BASIC_FILE_H=config/io/basic_file_stdio.h
2236 BASIC_FILE_CC=config/io/basic_file_stdio.cc
9717c75c 2237 AC_MSG_RESULT(stdio)
dd75251f 2238 ;;
b2dad0e3 2239 esac
cc5112c9 2240
4a9d5109
SW
2241 AC_SUBST(CSTDIO_H)
2242 AC_SUBST(BASIC_FILE_H)
6aa43d99 2243 AC_SUBST(BASIC_FILE_CC)
b2dad0e3
BK
2244])
2245
2246
9e57d5ca 2247dnl
ff66d28f 2248dnl Check for "unusual" flags to pass to the compiler while building.
9e57d5ca 2249dnl
ff66d28f
PE
2250dnl --enable-cxx-flags='-foo -bar -baz' is a general method for passing
2251dnl experimental flags such as -fpch, -fIMI, -Dfloat=char, etc.
2252dnl --disable-cxx-flags passes nothing.
2253dnl + See http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00131.html
2254dnl http://gcc.gnu.org/ml/libstdc++/2000-q2/msg00284.html
2255dnl http://gcc.gnu.org/ml/libstdc++/2000-q1/msg00035.html
2256dnl + Usage: GLIBCXX_ENABLE_CXX_FLAGS(default flags)
2257dnl If "default flags" is an empty string, the effect is the same
2258dnl as --disable or --enable=no.
44f0760e 2259dnl
f214923c 2260AC_DEFUN([GLIBCXX_ENABLE_CXX_FLAGS], [dnl
ff66d28f
PE
2261 AC_MSG_CHECKING([for extra compiler flags for building])
2262 GLIBCXX_ENABLE(cxx-flags,$1,[=FLAGS],
2263 [pass compiler FLAGS when building library],
2264 [case "x$enable_cxx_flags" in
2265 xno | x) enable_cxx_flags= ;;
2266 x-*) ;;
2267 *) AC_MSG_ERROR(_g_switch needs compiler flags as arguments) ;;
2268 esac])
2269
2270 # Run through flags (either default or command-line) and set anything
2271 # extra (e.g., #defines) that must accompany particular g++ options.
2272 if test -n "$enable_cxx_flags"; then
2273 for f in $enable_cxx_flags; do
2274 case "$f" in
b329dd10
BK
2275 -fhonor-std) ;;
2276 -*) ;;
2277 *) # and we're trying to pass /what/ exactly?
2278 AC_MSG_ERROR([compiler flags start with a -]) ;;
ff66d28f
PE
2279 esac
2280 done
44f0760e
BK
2281 fi
2282
ff66d28f
PE
2283 EXTRA_CXX_FLAGS="$enable_cxx_flags"
2284 AC_MSG_RESULT($EXTRA_CXX_FLAGS)
2285 AC_SUBST(EXTRA_CXX_FLAGS)
9e57d5ca
BK
2286])
2287
ff66d28f 2288
ff66d28f
PE
2289dnl
2290dnl Check to see if debugging libraries are to be built.
2291dnl
2292dnl --enable-libstdcxx-debug
2293dnl builds a separate set of debugging libraries in addition to the
2294dnl normal (shared, static) libstdc++ binaries.
2295dnl
2296dnl --disable-libstdcxx-debug
2297dnl builds only one (non-debug) version of libstdc++.
2298dnl
2299dnl --enable-libstdcxx-debug-flags=FLAGS
2300dnl iff --enable-debug == yes, then use FLAGS to build the debug library.
2301dnl
2302dnl + Usage: GLIBCXX_ENABLE_DEBUG[(DEFAULT)]
2303dnl Where DEFAULT is either `yes' or `no'.
2304dnl
f214923c 2305AC_DEFUN([GLIBCXX_ENABLE_DEBUG], [
ff66d28f
PE
2306 AC_MSG_CHECKING([for additional debug build])
2307 GLIBCXX_ENABLE(libstdcxx-debug,$1,,[build extra debug library])
2308 AC_MSG_RESULT($enable_libstdcxx_debug)
92eabea2 2309 GLIBCXX_CONDITIONAL(GLIBCXX_BUILD_DEBUG, test $enable_libstdcxx_debug = yes)
b2dad0e3
BK
2310])
2311
2312
52a11cbf 2313dnl
ff66d28f 2314dnl Check for explicit debug flags.
52a11cbf 2315dnl
ff66d28f
PE
2316dnl --enable-libstdcxx-debug-flags='-O1'
2317dnl is a general method for passing flags to be used when
2318dnl building debug libraries with --enable-debug.
52a11cbf 2319dnl
ff66d28f
PE
2320dnl --disable-libstdcxx-debug-flags does nothing.
2321dnl + Usage: GLIBCXX_ENABLE_DEBUG_FLAGS(default flags)
2322dnl If "default flags" is an empty string, the effect is the same
2323dnl as --disable or --enable=no.
2324dnl
f214923c 2325AC_DEFUN([GLIBCXX_ENABLE_DEBUG_FLAGS], [
ff66d28f
PE
2326 GLIBCXX_ENABLE(libstdcxx-debug-flags,[$1],[=FLAGS],
2327 [pass compiler FLAGS when building debug library],
2328 [case "x$enable_libstdcxx_debug_flags" in
2329 xno | x) enable_libstdcxx_debug_flags= ;;
2330 x-*) ;;
2331 *) AC_MSG_ERROR(_g_switch needs compiler flags as arguments) ;;
2332 esac])
2333
2334 # Option parsed, now set things appropriately
2335 DEBUG_FLAGS="$enable_libstdcxx_debug_flags"
2336 AC_SUBST(DEBUG_FLAGS)
2337
2338 AC_MSG_NOTICE([Debug build flags set to $DEBUG_FLAGS])
52a11cbf
RH
2339])
2340
2341
92eabea2
PE
2342dnl
2343dnl Check if the user only wants a freestanding library implementation.
2344dnl
2345dnl --disable-hosted-libstdcxx will turn off most of the library build,
2346dnl installing only the headers required by [17.4.1.3] and the language
2347dnl support library. More than that will be built (to keep the Makefiles
2348dnl conveniently clean), but not installed.
2349dnl
2350dnl Sets:
2351dnl is_hosted (yes/no)
2352dnl
3660e02f
PE
2353dnl Defines:
2354dnl _GLIBCXX_HOSTED (always defined, either to 1 or 0)
2355dnl
f214923c 2356AC_DEFUN([GLIBCXX_ENABLE_HOSTED], [
92eabea2
PE
2357 AC_ARG_ENABLE([hosted-libstdcxx],
2358 AC_HELP_STRING([--disable-hosted-libstdcxx],
b329dd10 2359 [only build freestanding C++ runtime support]),,
4c24b21a 2360 [case "$host" in
b329dd10 2361 arm*-*-symbianelf*)
4c24b21a
MM
2362 enable_hosted_libstdcxx=no
2363 ;;
b329dd10 2364 *)
4c24b21a
MM
2365 enable_hosted_libstdcxx=yes
2366 ;;
2367 esac])
92eabea2
PE
2368 if test "$enable_hosted_libstdcxx" = no; then
2369 AC_MSG_NOTICE([Only freestanding libraries will be built])
2370 is_hosted=no
3660e02f 2371 hosted_define=0
92eabea2
PE
2372 enable_abi_check=no
2373 enable_libstdcxx_pch=no
2374 else
2375 is_hosted=yes
3660e02f 2376 hosted_define=1
92eabea2
PE
2377 fi
2378 GLIBCXX_CONDITIONAL(GLIBCXX_HOSTED, test $is_hosted = yes)
3660e02f
PE
2379 AC_DEFINE_UNQUOTED(_GLIBCXX_HOSTED, $hosted_define,
2380 [Define to 1 if a full hosted library is built, or 0 if freestanding.])
92eabea2
PE
2381])
2382
2383
6c3a9f72 2384dnl
347669a0 2385dnl Check for template specializations for the 'long long' type.
22248545
PE
2386dnl The result determines only whether 'long long' I/O is enabled; things
2387dnl like numeric_limits<> specializations are always available.
6c3a9f72 2388dnl
3d7c150e
BK
2389dnl --enable-long-long defines _GLIBCXX_USE_LONG_LONG
2390dnl --disable-long-long leaves _GLIBCXX_USE_LONG_LONG undefined
2391dnl + Usage: GLIBCXX_ENABLE_LONG_LONG[(DEFAULT)]
ff66d28f 2392dnl Where DEFAULT is either `yes' or `no'.
6c3a9f72 2393dnl
f214923c 2394AC_DEFUN([GLIBCXX_ENABLE_LONG_LONG], [
347669a0 2395 GLIBCXX_ENABLE(long-long,$1,,[enable template specializations for 'long long'])
ff66d28f 2396 if test $enable_long_long = yes; then
b329dd10
BK
2397 AC_DEFINE(_GLIBCXX_USE_LONG_LONG, 1,
2398 [Define if code specialized for long long should be used.])
6c3a9f72 2399 fi
347669a0
BK
2400 AC_MSG_CHECKING([for enabled long long specializations])
2401 AC_MSG_RESULT([$enable_long_long])
2402])
2403
2404
4cdc8761
BK
2405dnl
2406dnl Check for decimal floating point.
2407dnl See:
2408dnl http://gcc.gnu.org/onlinedocs/gcc/Decimal-Float.html#Decimal-Float
2409dnl
2410dnl This checks to see if the host supports decimal floating point types.
2411dnl
2412dnl Defines:
2413dnl _GLIBCXX_USE_DECIMAL_FLOAT
2414dnl
2415AC_DEFUN([GLIBCXX_ENABLE_DECIMAL_FLOAT], [
2416
2417 # Fake what AC_TRY_COMPILE does, without linking as this is
2418 # unnecessary for this test.
2419
2420 cat > conftest.$ac_ext << EOF
2421[#]line __oline__ "configure"
2422int main()
2423{
2424 _Decimal32 d1;
2425 _Decimal64 d2;
2426 _Decimal128 d3;
2427 return 0;
2428}
2429EOF
2430
2431 AC_MSG_CHECKING([for ISO/IEC TR 24733 ])
2432 if AC_TRY_EVAL(ac_compile); then
2433 AC_DEFINE(_GLIBCXX_USE_DECIMAL_FLOAT, 1,
2434 [Define if ISO/IEC TR 24733 decimal floating point types are supported on this host.])
2435 enable_dfp=yes
2436 else
2437 enable_dfp=no
2438 fi
2439 AC_MSG_RESULT($enable_dfp)
2440 rm -f conftest*
2441])
2442
6d585f01
PC
2443dnl
2444dnl Check for GNU 128-bit integer and floating point types.
2445dnl
2446dnl Note: also checks that the types aren't standard types.
2447dnl
2448dnl Defines:
2449dnl _GLIBCXX_USE_INT128
2450dnl _GLIBCXX_USE_FLOAT128
2451dnl
2452AC_DEFUN([GLIBCXX_ENABLE_INT128_FLOAT128], [
2453
2454 AC_LANG_SAVE
2455 AC_LANG_CPLUSPLUS
2456
2457 # Fake what AC_TRY_COMPILE does, without linking as this is
2458 # unnecessary for this test.
2459
2460 cat > conftest.$ac_ext << EOF
2461[#]line __oline__ "configure"
2462template<typename T1, typename T2>
2463 struct same
2464 { typedef T2 type; };
2465
2466template<typename T>
2467 struct same<T, T>;
2468
2469int main()
2470{
fd1e62c2
PC
2471 typename same<long, __int128>::type i1;
2472 typename same<long long, __int128>::type i2;
6d585f01
PC
2473}
2474EOF
2475
fd1e62c2 2476 AC_MSG_CHECKING([for __int128])
6d585f01
PC
2477 if AC_TRY_EVAL(ac_compile); then
2478 AC_DEFINE(_GLIBCXX_USE_INT128, 1,
fd1e62c2 2479 [Define if __int128 is supported on this host.])
6d585f01
PC
2480 enable_int128=yes
2481 else
2482 enable_int128=no
2483 fi
2484 AC_MSG_RESULT($enable_int128)
2485 rm -f conftest*
2486
2487 cat > conftest.$ac_ext << EOF
2488[#]line __oline__ "configure"
2489template<typename T1, typename T2>
2490 struct same
2491 { typedef T2 type; };
2492
2493template<typename T>
2494 struct same<T, T>;
2495
2496int main()
2497{
2a5d011c 2498 typename same<double, __float128>::type f1;
6d585f01
PC
2499 typename same<long double, __float128>::type f2;
2500}
2501EOF
2502
2503 AC_MSG_CHECKING([for __float128])
2504 if AC_TRY_EVAL(ac_compile); then
2505 AC_DEFINE(_GLIBCXX_USE_FLOAT128, 1,
2506 [Define if __float128 is supported on this host.])
2507 enable_float128=yes
2508 else
2509 enable_float128=no
2510 fi
2511 AC_MSG_RESULT($enable_float128)
2512 rm -f conftest*
2513
2514 AC_LANG_RESTORE
2515])
2516
347669a0
BK
2517dnl
2518dnl Check for template specializations for the 'wchar_t' type.
2519dnl
2520dnl --enable-wchar_t defines _GLIBCXX_USE_WCHAR_T
2521dnl --disable-wchar_t leaves _GLIBCXX_USE_WCHAR_T undefined
2522dnl + Usage: GLIBCXX_ENABLE_WCHAR_T[(DEFAULT)]
2523dnl Where DEFAULT is either `yes' or `no'.
2524dnl
8a9b2875 2525dnl Necessary support must also be present.
347669a0
BK
2526dnl
2527AC_DEFUN([GLIBCXX_ENABLE_WCHAR_T], [
2528 GLIBCXX_ENABLE(wchar_t,$1,,[enable template specializations for 'wchar_t'])
8a9b2875
PC
2529
2530 # Test wchar.h for mbstate_t, which is needed for char_traits and fpos.
2531 AC_CHECK_HEADERS(wchar.h, ac_has_wchar_h=yes, ac_has_wchar_h=no)
2532 AC_MSG_CHECKING([for mbstate_t])
2533 AC_TRY_COMPILE([#include <wchar.h>],
2534 [mbstate_t teststate;],
2535 have_mbstate_t=yes, have_mbstate_t=no)
2536 AC_MSG_RESULT($have_mbstate_t)
2537 if test x"$have_mbstate_t" = xyes; then
2538 AC_DEFINE(HAVE_MBSTATE_T,1,[Define if mbstate_t exists in wchar.h.])
2539 fi
2540
d814595c
PC
2541 # Test it always, for use in GLIBCXX_ENABLE_C99, together with
2542 # ac_has_wchar_h.
2543 AC_CHECK_HEADERS(wctype.h, ac_has_wctype_h=yes, ac_has_wctype_h=no)
b329dd10 2544
8a9b2875
PC
2545 if test x"$enable_wchar_t" = x"yes"; then
2546
2547 AC_LANG_SAVE
2548 AC_LANG_CPLUSPLUS
b329dd10 2549
8a9b2875
PC
2550 if test x"$ac_has_wchar_h" = xyes &&
2551 test x"$ac_has_wctype_h" = xyes; then
2552 AC_TRY_COMPILE([#include <wchar.h>
b329dd10
BK
2553 #include <stddef.h>
2554 wint_t i;
8a9b2875
PC
2555 long l = WEOF;
2556 long j = WCHAR_MIN;
2557 long k = WCHAR_MAX;
b329dd10
BK
2558 namespace test
2559 {
8a9b2875
PC
2560 using ::btowc;
2561 using ::fgetwc;
2562 using ::fgetws;
2563 using ::fputwc;
2564 using ::fputws;
2565 using ::fwide;
b329dd10 2566 using ::fwprintf;
8a9b2875
PC
2567 using ::fwscanf;
2568 using ::getwc;
2569 using ::getwchar;
b329dd10
BK
2570 using ::mbrlen;
2571 using ::mbrtowc;
2572 using ::mbsinit;
2573 using ::mbsrtowcs;
8a9b2875
PC
2574 using ::putwc;
2575 using ::putwchar;
b329dd10
BK
2576 using ::swprintf;
2577 using ::swscanf;
8a9b2875 2578 using ::ungetwc;
b329dd10
BK
2579 using ::vfwprintf;
2580 using ::vswprintf;
2581 using ::vwprintf;
2582 using ::wcrtomb;
2583 using ::wcscat;
2584 using ::wcschr;
2585 using ::wcscmp;
2586 using ::wcscoll;
2587 using ::wcscpy;
2588 using ::wcscspn;
2589 using ::wcsftime;
8a9b2875 2590 using ::wcslen;
b329dd10
BK
2591 using ::wcsncat;
2592 using ::wcsncmp;
2593 using ::wcsncpy;
8a9b2875 2594 using ::wcspbrk;
b329dd10
BK
2595 using ::wcsrchr;
2596 using ::wcsrtombs;
2597 using ::wcsspn;
8a9b2875 2598 using ::wcsstr;
b329dd10
BK
2599 using ::wcstod;
2600 using ::wcstok;
8a9b2875 2601 using ::wcstol;
b329dd10
BK
2602 using ::wcstoul;
2603 using ::wcsxfrm;
2604 using ::wctob;
8a9b2875
PC
2605 using ::wmemchr;
2606 using ::wmemcmp;
2607 using ::wmemcpy;
2608 using ::wmemmove;
2609 using ::wmemset;
b329dd10
BK
2610 using ::wprintf;
2611 using ::wscanf;
8a9b2875
PC
2612 }
2613 ],[],[], [enable_wchar_t=no])
2614 else
2615 enable_wchar_t=no
2616 fi
2617
2618 AC_LANG_RESTORE
2619 fi
2620
2621 if test x"$enable_wchar_t" = x"yes"; then
4651e622 2622 AC_DEFINE(_GLIBCXX_USE_WCHAR_T, 1,
b329dd10 2623 [Define if code specialized for wchar_t should be used.])
347669a0 2624 fi
8a9b2875 2625
347669a0
BK
2626 AC_MSG_CHECKING([for enabled wchar_t specializations])
2627 AC_MSG_RESULT([$enable_wchar_t])
6c3a9f72
BK
2628])
2629
2630
99246c90 2631dnl
ff66d28f 2632dnl Check to see if building and using a C++ precompiled header can be done.
72ed2836 2633dnl
ff66d28f
PE
2634dnl --enable-libstdcxx-pch=yes
2635dnl default, this shows intent to use stdc++.h.gch If it looks like it
2636dnl may work, after some light-hearted attempts to puzzle out compiler
2637dnl support, flip bits on in include/Makefile.am
43ba4a58 2638dnl
ff66d28f
PE
2639dnl --disable-libstdcxx-pch
2640dnl turns off attempts to use or build stdc++.h.gch.
fe413112 2641dnl
ff66d28f
PE
2642dnl Substs:
2643dnl glibcxx_PCHFLAGS
fe413112 2644dnl
f214923c 2645AC_DEFUN([GLIBCXX_ENABLE_PCH], [
ff66d28f 2646 GLIBCXX_ENABLE(libstdcxx-pch,$1,,[build pre-compiled libstdc++ headers])
ff66d28f
PE
2647 if test $enable_libstdcxx_pch = yes; then
2648 AC_CACHE_CHECK([for compiler with PCH support],
2649 [glibcxx_cv_prog_CXX_pch],
2650 [ac_save_CXXFLAGS="$CXXFLAGS"
2651 CXXFLAGS="$CXXFLAGS -Werror -Winvalid-pch -Wno-deprecated"
2652 AC_LANG_SAVE
2653 AC_LANG_CPLUSPLUS
2654 echo '#include <math.h>' > conftest.h
2655 if $CXX $CXXFLAGS $CPPFLAGS -x c++-header conftest.h \
b329dd10
BK
2656 -o conftest.h.gch 1>&5 2>&1 &&
2657 echo '#error "pch failed"' > conftest.h &&
2658 echo '#include "conftest.h"' > conftest.cc &&
ff66d28f
PE
2659 $CXX -c $CXXFLAGS $CPPFLAGS conftest.cc 1>&5 2>&1 ;
2660 then
b329dd10 2661 glibcxx_cv_prog_CXX_pch=yes
ff66d28f 2662 else
b329dd10 2663 glibcxx_cv_prog_CXX_pch=no
ff66d28f
PE
2664 fi
2665 rm -f conftest*
2666 CXXFLAGS=$ac_save_CXXFLAGS
2667 AC_LANG_RESTORE
2668 ])
2669 enable_libstdcxx_pch=$glibcxx_cv_prog_CXX_pch
c4c064e7 2670 fi
747d0967 2671
797308b2
BK
2672 AC_MSG_CHECKING([for enabled PCH])
2673 AC_MSG_RESULT([$enable_libstdcxx_pch])
2674
92eabea2 2675 GLIBCXX_CONDITIONAL(GLIBCXX_BUILD_PCH, test $enable_libstdcxx_pch = yes)
ff66d28f 2676 if test $enable_libstdcxx_pch = yes; then
c2ba9709 2677 glibcxx_PCHFLAGS="-include bits/stdc++.h"
c4c064e7 2678 else
ff66d28f 2679 glibcxx_PCHFLAGS=""
bbacb998 2680 fi
ff66d28f 2681 AC_SUBST(glibcxx_PCHFLAGS)
bbacb998
PC
2682])
2683
7cda84dc 2684
701a3eee
BK
2685dnl
2686dnl Check for atomic builtins.
2687dnl See:
75cee7c6 2688dnl http://gcc.gnu.org/onlinedocs/gcc/_005f_005fatomic-Builtins.html
701a3eee
BK
2689dnl
2690dnl This checks to see if the host supports the compiler-generated
b329dd10 2691dnl builtins for atomic operations for various integral sizes. Note, this
35648b45
BK
2692dnl is intended to be an all-or-nothing switch, so all the atomic operations
2693dnl that are used should be checked.
701a3eee
BK
2694dnl
2695dnl Note:
2cd9cdcc 2696dnl libgomp and libgfortran use a link test, see CHECK_SYNC_FETCH_AND_ADD.
701a3eee 2697dnl
701a3eee 2698AC_DEFUN([GLIBCXX_ENABLE_ATOMIC_BUILTINS], [
701a3eee
BK
2699 AC_LANG_SAVE
2700 AC_LANG_CPLUSPLUS
35648b45 2701 old_CXXFLAGS="$CXXFLAGS"
2cd9cdcc
PC
2702
2703 # Do link tests if possible, instead asm tests, limited to some platforms
2704 # see discussion in PR target/40134, PR libstdc++/40133 and the thread
2705 # starting at http://gcc.gnu.org/ml/gcc-patches/2009-07/msg00322.html
2706 atomic_builtins_link_tests=no
2707 if test x$gcc_no_link != xyes; then
2708 # Can do link tests. Limit to some tested platforms
2709 case "$host" in
2710 *-*-linux* | *-*-uclinux* | *-*-kfreebsd*-gnu | *-*-gnu*)
2711 atomic_builtins_link_tests=yes
b329dd10 2712 ;;
2cd9cdcc
PC
2713 esac
2714 fi
2715
2716 if test x$atomic_builtins_link_tests = xyes; then
2717
2718 # Do link tests.
2719
2720 CXXFLAGS="$CXXFLAGS -fno-exceptions"
2721
2722 AC_MSG_CHECKING([for atomic builtins for bool])
2723 AC_CACHE_VAL(glibcxx_cv_atomic_bool, [
2724 AC_TRY_LINK(
2725 [ ],
2726 [typedef bool atomic_type;
2727 atomic_type c1;
2728 atomic_type c2;
75cee7c6
BK
2729 atomic_type c3(0);
2730 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2731 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2732 __ATOMIC_RELAXED);
75cee7c6
BK
2733 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2734 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2735 ],
2cd9cdcc
PC
2736 [glibcxx_cv_atomic_bool=yes],
2737 [glibcxx_cv_atomic_bool=no])
b329dd10 2738 ])
2cd9cdcc
PC
2739 AC_MSG_RESULT($glibcxx_cv_atomic_bool)
2740
2741 AC_MSG_CHECKING([for atomic builtins for short])
2742 AC_CACHE_VAL(glibcxx_cv_atomic_short, [
2743 AC_TRY_LINK(
2744 [ ],
2745 [typedef short atomic_type;
2746 atomic_type c1;
2747 atomic_type c2;
75cee7c6
BK
2748 atomic_type c3(0);
2749 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2750 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2751 __ATOMIC_RELAXED);
75cee7c6
BK
2752 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2753 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2754 ],
2cd9cdcc
PC
2755 [glibcxx_cv_atomic_short=yes],
2756 [glibcxx_cv_atomic_short=no])
b329dd10 2757 ])
2cd9cdcc
PC
2758 AC_MSG_RESULT($glibcxx_cv_atomic_short)
2759
2760 AC_MSG_CHECKING([for atomic builtins for int])
2761 AC_CACHE_VAL(glibcxx_cv_atomic_int, [
2762 AC_TRY_LINK(
2763 [ ],
2764 [typedef int atomic_type;
2765 atomic_type c1;
2766 atomic_type c2;
75cee7c6
BK
2767 atomic_type c3(0);
2768 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2769 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2770 __ATOMIC_RELAXED);
75cee7c6
BK
2771 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2772 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2773 ],
2cd9cdcc
PC
2774 [glibcxx_cv_atomic_int=yes],
2775 [glibcxx_cv_atomic_int=no])
b329dd10 2776 ])
2cd9cdcc
PC
2777 AC_MSG_RESULT($glibcxx_cv_atomic_int)
2778
2779 AC_MSG_CHECKING([for atomic builtins for long long])
2780 AC_CACHE_VAL(glibcxx_cv_atomic_long_long, [
2781 AC_TRY_LINK(
2782 [ ],
2783 [typedef long long atomic_type;
2784 atomic_type c1;
2785 atomic_type c2;
75cee7c6
BK
2786 atomic_type c3(0);
2787 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2788 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2789 __ATOMIC_RELAXED);
75cee7c6
BK
2790 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2791 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2792 ],
2cd9cdcc
PC
2793 [glibcxx_cv_atomic_long_long=yes],
2794 [glibcxx_cv_atomic_long_long=no])
b329dd10 2795 ])
2cd9cdcc
PC
2796 AC_MSG_RESULT($glibcxx_cv_atomic_long_long)
2797
2798 else
2799
2800 # Do asm tests.
2801
35648b45
BK
2802 # Compile unoptimized.
2803 CXXFLAGS='-O0 -S'
2804
2cd9cdcc 2805 # Fake what AC_TRY_COMPILE does.
701a3eee 2806
701a3eee
BK
2807 cat > conftest.$ac_ext << EOF
2808[#]line __oline__ "configure"
2809int main()
50ce8d3d
BK
2810{
2811 typedef bool atomic_type;
2812 atomic_type c1;
2813 atomic_type c2;
75cee7c6
BK
2814 atomic_type c3(0);
2815 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2816 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2817 __ATOMIC_RELAXED);
75cee7c6
BK
2818 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2819 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2a5d011c 2820
50ce8d3d
BK
2821 return 0;
2822}
2823EOF
2824
2825 AC_MSG_CHECKING([for atomic builtins for bool])
2826 if AC_TRY_EVAL(ac_compile); then
904bfee8 2827 if grep __atomic_ conftest.s >/dev/null 2>&1 ; then
b329dd10 2828 glibcxx_cv_atomic_bool=no
50ce8d3d 2829 else
b329dd10 2830 glibcxx_cv_atomic_bool=yes
50ce8d3d
BK
2831 fi
2832 fi
2cd9cdcc 2833 AC_MSG_RESULT($glibcxx_cv_atomic_bool)
50ce8d3d
BK
2834 rm -f conftest*
2835
2836 cat > conftest.$ac_ext << EOF
2837[#]line __oline__ "configure"
2838int main()
2839{
2840 typedef short atomic_type;
2841 atomic_type c1;
2842 atomic_type c2;
75cee7c6
BK
2843 atomic_type c3(0);
2844 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2845 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2846 __ATOMIC_RELAXED);
75cee7c6
BK
2847 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2848 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2849
50ce8d3d
BK
2850 return 0;
2851}
2852EOF
2853
2854 AC_MSG_CHECKING([for atomic builtins for short])
2855 if AC_TRY_EVAL(ac_compile); then
904bfee8 2856 if grep __atomic_ conftest.s >/dev/null 2>&1 ; then
b329dd10 2857 glibcxx_cv_atomic_short=no
50ce8d3d 2858 else
b329dd10 2859 glibcxx_cv_atomic_short=yes
50ce8d3d
BK
2860 fi
2861 fi
2cd9cdcc 2862 AC_MSG_RESULT($glibcxx_cv_atomic_short)
50ce8d3d
BK
2863 rm -f conftest*
2864
2865 cat > conftest.$ac_ext << EOF
2866[#]line __oline__ "configure"
2867int main()
701a3eee 2868{
b329dd10 2869 // NB: _Atomic_word not necessarily int.
701a3eee
BK
2870 typedef int atomic_type;
2871 atomic_type c1;
2872 atomic_type c2;
75cee7c6
BK
2873 atomic_type c3(0);
2874 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2875 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2876 __ATOMIC_RELAXED);
75cee7c6
BK
2877 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2878 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2879
35648b45
BK
2880 return 0;
2881}
2882EOF
2883
2884 AC_MSG_CHECKING([for atomic builtins for int])
2885 if AC_TRY_EVAL(ac_compile); then
904bfee8 2886 if grep __atomic_ conftest.s >/dev/null 2>&1 ; then
b329dd10 2887 glibcxx_cv_atomic_int=no
35648b45 2888 else
b329dd10 2889 glibcxx_cv_atomic_int=yes
35648b45
BK
2890 fi
2891 fi
2cd9cdcc 2892 AC_MSG_RESULT($glibcxx_cv_atomic_int)
35648b45
BK
2893 rm -f conftest*
2894
2895 cat > conftest.$ac_ext << EOF
2896[#]line __oline__ "configure"
2897int main()
2898{
50ce8d3d 2899 typedef long long atomic_type;
35648b45
BK
2900 atomic_type c1;
2901 atomic_type c2;
75cee7c6
BK
2902 atomic_type c3(0);
2903 __atomic_fetch_add(&c1, c2, __ATOMIC_RELAXED);
2904 __atomic_compare_exchange_n(&c1, &c2, c3, true, __ATOMIC_ACQ_REL,
2a5d011c 2905 __ATOMIC_RELAXED);
75cee7c6
BK
2906 __atomic_test_and_set(&c1, __ATOMIC_RELAXED);
2907 __atomic_load_n(&c1, __ATOMIC_RELAXED);
2908
35648b45 2909 return 0;
701a3eee
BK
2910}
2911EOF
35648b45 2912
50ce8d3d 2913 AC_MSG_CHECKING([for atomic builtins for long long])
701a3eee 2914 if AC_TRY_EVAL(ac_compile); then
904bfee8 2915 if grep __atomic_ conftest.s >/dev/null 2>&1 ; then
b329dd10 2916 glibcxx_cv_atomic_long_long=no
701a3eee 2917 else
b329dd10 2918 glibcxx_cv_atomic_long_long=yes
701a3eee
BK
2919 fi
2920 fi
2cd9cdcc 2921 AC_MSG_RESULT($glibcxx_cv_atomic_long_long)
701a3eee
BK
2922 rm -f conftest*
2923
2cd9cdcc 2924 fi
50ce8d3d 2925
35648b45
BK
2926 CXXFLAGS="$old_CXXFLAGS"
2927 AC_LANG_RESTORE
2928
75cee7c6
BK
2929 # Set atomicity_dir to builtins if all of above tests pass.
2930 if test $glibcxx_cv_atomic_bool = yes \
2931 && test $glibcxx_cv_atomic_short = yes \
2932 && test $glibcxx_cv_atomic_int = yes \
2933 && test $glibcxx_cv_atomic_long_long = yes ; then
a152e96f
BK
2934 AC_DEFINE(_GLIBCXX_ATOMIC_BUILTINS, 1,
2935 [Define if the compiler supports C++11 atomics.])
35648b45
BK
2936 atomicity_dir=cpu/generic/atomicity_builtins
2937 fi
2938
2939 # If still generic, set to mutex.
701a3eee 2940 if test $atomicity_dir = "cpu/generic" ; then
35648b45 2941 atomicity_dir=cpu/generic/atomicity_mutex
6995087d 2942 AC_MSG_WARN([No native atomic operations are provided for this platform.])
dd88bc97 2943 if test "x$target_thread_file" = xsingle; then
b329dd10
BK
2944 AC_MSG_WARN([They cannot be faked when thread support is disabled.])
2945 AC_MSG_WARN([Thread-safety of certain classes is not guaranteed.])
6995087d 2946 else
b329dd10
BK
2947 AC_MSG_WARN([They will be faked using a mutex.])
2948 AC_MSG_WARN([Performance of certain classes will degrade as a result.])
6995087d 2949 fi
701a3eee 2950 fi
35648b45 2951
701a3eee
BK
2952])
2953
2954
bda243ec 2955dnl
ff66d28f
PE
2956dnl Check for exception handling support. If an explicit enable/disable
2957dnl sjlj exceptions is given, we don't have to detect. Otherwise the
2958dnl target may or may not support call frame exceptions.
bda243ec 2959dnl
ff66d28f
PE
2960dnl --enable-sjlj-exceptions forces the use of builtin setjmp.
2961dnl --disable-sjlj-exceptions forces the use of call frame unwinding.
1260d70f 2962dnl Neither one forces an attempt at detection.
4d16bdbb 2963dnl
ff66d28f
PE
2964dnl Defines:
2965dnl _GLIBCXX_SJLJ_EXCEPTIONS if the compiler is configured for it
4d16bdbb 2966dnl
f214923c 2967AC_DEFUN([GLIBCXX_ENABLE_SJLJ_EXCEPTIONS], [
ff66d28f
PE
2968 AC_MSG_CHECKING([for exception model to use])
2969 AC_LANG_SAVE
2970 AC_LANG_CPLUSPLUS
1260d70f 2971 GLIBCXX_ENABLE(sjlj-exceptions,auto,,
ff66d28f 2972 [force use of builtin_setjmp for exceptions],
1260d70f
PE
2973 [permit yes|no|auto])
2974
2975 if test $enable_sjlj_exceptions = auto; then
2976 # Botheration. Now we've got to detect the exception model. Link tests
2977 # against libgcc.a are problematic since we've not been given proper -L
2978 # bits for single-tree newlib and libgloss.
2979 #
2980 # Fake what AC_TRY_COMPILE does. XXX Look at redoing this new-style.
2981 cat > conftest.$ac_ext << EOF
ff66d28f
PE
2982[#]line __oline__ "configure"
2983struct S { ~S(); };
2984void bar();
2985void foo()
2986{
2987 S s;
2988 bar();
2989}
2990EOF
1260d70f
PE
2991 old_CXXFLAGS="$CXXFLAGS"
2992 CXXFLAGS=-S
2993 if AC_TRY_EVAL(ac_compile); then
2994 if grep _Unwind_SjLj_Resume conftest.s >/dev/null 2>&1 ; then
b329dd10 2995 enable_sjlj_exceptions=yes
1260d70f 2996 elif grep _Unwind_Resume conftest.s >/dev/null 2>&1 ; then
b329dd10 2997 enable_sjlj_exceptions=no
617a1b71 2998 elif grep __cxa_end_cleanup conftest.s >/dev/null 2>&1 ; then
b329dd10 2999 enable_sjlj_exceptions=no
1260d70f
PE
3000 fi
3001 fi
3002 CXXFLAGS="$old_CXXFLAGS"
3003 rm -f conftest*
3004 fi
3005
cddfb1c7
BK
3006 # This is a tad weird, for hysterical raisins. We have to map
3007 # enable/disable to two different models.
1260d70f
PE
3008 case $enable_sjlj_exceptions in
3009 yes)
3010 AC_DEFINE(_GLIBCXX_SJLJ_EXCEPTIONS, 1,
b329dd10 3011 [Define if the compiler is configured for setjmp/longjmp exceptions.])
1260d70f
PE
3012 ac_exception_model_name=sjlj
3013 ;;
3014 no)
3015 ac_exception_model_name="call frame"
3016 ;;
3017 *)
3018 AC_MSG_ERROR([unable to detect exception model])
3019 ;;
3020 esac
ff66d28f
PE
3021 AC_LANG_RESTORE
3022 AC_MSG_RESULT($ac_exception_model_name)
4d16bdbb
PE
3023])
3024
3025
98e615b4
BK
3026dnl
3027dnl Allow visibility attributes to be used on namespaces, objects, etc.
3028dnl
dbe17524
PC
3029dnl --enable-libstdcxx-visibility enables attempt to use visibility attributes.
3030dnl --disable-libstdcxx-visibility turns off all use of visibility attributes.
3031dnl + Usage: GLIBCXX_ENABLE_LIBSTDCXX_VISIBILITY[(DEFAULT)]
98e615b4
BK
3032dnl Where DEFAULT is 'yes'.
3033dnl
dbe17524
PC
3034AC_DEFUN([GLIBCXX_ENABLE_LIBSTDCXX_VISIBILITY], [
3035GLIBCXX_ENABLE(libstdcxx-visibility,$1,,[enables visibility safe usage])
98e615b4 3036
dbe17524 3037if test x$enable_libstdcxx_visibility = xyes ; then
98e615b4
BK
3038 dnl all hail libgfortran
3039 dnl Check whether the target supports hidden visibility.
3040 AC_CACHE_CHECK([whether the target supports hidden visibility],
6d26724a 3041 glibcxx_cv_have_attribute_visibility, [
98e615b4
BK
3042 save_CFLAGS="$CFLAGS"
3043 CFLAGS="$CFLAGS -Werror"
3044 AC_TRY_COMPILE([void __attribute__((visibility("hidden"))) foo(void) { }],
6d26724a
RW
3045 [], glibcxx_cv_have_attribute_visibility=yes,
3046 glibcxx_cv_have_attribute_visibility=no)
98e615b4 3047 CFLAGS="$save_CFLAGS"])
6d26724a 3048 if test $glibcxx_cv_have_attribute_visibility = no; then
dbe17524 3049 enable_libstdcxx_visibility=no
98e615b4
BK
3050 fi
3051fi
3052
dbe17524
PC
3053GLIBCXX_CONDITIONAL(ENABLE_VISIBILITY, test $enable_libstdcxx_visibility = yes)
3054AC_MSG_NOTICE([visibility supported: $enable_libstdcxx_visibility])
98e615b4
BK
3055])
3056
3057
530539d9
PE
3058dnl
3059dnl Add version tags to symbols in shared library (or not), additionally
3060dnl marking other symbols as private/local (or not).
3061dnl
2799d972
BK
3062dnl Sets libtool_VERSION, and determines shared library SONAME.
3063dnl
3064dnl This depends on GLIBCXX CHECK_LINKER_FEATURES, but without it assumes no.
3065dnl
c98b201b
PE
3066dnl --enable-symvers=style adds a version script to the linker call when
3067dnl creating the shared library. The choice of version script is
3068dnl controlled by 'style'.
530539d9 3069dnl --disable-symvers does not.
2799d972 3070dnl
3d7c150e 3071dnl + Usage: GLIBCXX_ENABLE_SYMVERS[(DEFAULT)]
ff66d28f
PE
3072dnl Where DEFAULT is either 'yes' or 'no'. Passing `yes' tries to
3073dnl choose a default style based on linker characteristics. Passing
3074dnl 'no' disables versioning.
3075dnl
f214923c 3076AC_DEFUN([GLIBCXX_ENABLE_SYMVERS], [
ff66d28f 3077
b453ace3 3078GLIBCXX_ENABLE(symvers,$1,[[[=STYLE]]],
ff66d28f 3079 [enables symbol versioning of the shared library],
c18dc5cc 3080 [permit yes|no|gnu|gnu-versioned-namespace|darwin|darwin-export|sun])
c98b201b 3081
3d7c150e 3082# If we never went through the GLIBCXX_CHECK_LINKER_FEATURES macro, then we
37bc6ca2 3083# don't know enough about $LD to do tricks...
ff66d28f 3084AC_REQUIRE([GLIBCXX_CHECK_LINKER_FEATURES])
c18dc5cc
RO
3085# Sun style symbol versions needs GNU c++filt for make_sunver.pl to work
3086# with extern "C++" in version scripts.
3087AC_REQUIRE([GCC_PROG_GNU_CXXFILT])
a9fdd472
GK
3088
3089# Turn a 'yes' into a suitable default.
3090if test x$enable_symvers = xyes ; then
4bd726d0 3091 if test $enable_shared = no || test "x$LD" = x || test x$gcc_no_link = xyes; then
a9fdd472 3092 enable_symvers=no
a9fdd472 3093 else
fb5c309d 3094 if test $with_gnu_ld = yes ; then
d89f0ad6 3095 case ${target_os} in
b329dd10
BK
3096 hpux*)
3097 enable_symvers=no ;;
3098 *)
3099 enable_symvers=gnu ;;
d89f0ad6 3100 esac
fb5c309d
BK
3101 else
3102 case ${target_os} in
b329dd10 3103 darwin*)
fb5c309d 3104 enable_symvers=darwin ;;
c18dc5cc
RO
3105 # Sun symbol versioning exists since Solaris 2.5.
3106 solaris2.[[5-9]]* | solaris2.1[[0-9]]*)
3107 # make_sunver.pl needs GNU c++filt to support extern "C++" in
3108 # version scripts, so disable symbol versioning if none can be
3109 # found.
3110 if test -z "$ac_cv_path_CXXFILT"; then
3111 AC_MSG_WARN([=== You have requested Sun symbol versioning, but])
3112 AC_MSG_WARN([=== no GNU c++filt could be found.])
3113 AC_MSG_WARN([=== Symbol versioning will be disabled.])
3114 enable_symvers=no
3115 else
3116 enable_symvers=sun
3117 fi
3118 ;;
b329dd10
BK
3119 *)
3120 enable_symvers=no ;;
fb5c309d
BK
3121 esac
3122 fi
a9fdd472 3123 fi
530539d9 3124fi
c98b201b 3125
fb5c309d
BK
3126# Check to see if 'darwin' or 'darwin-export' can win.
3127if test x$enable_symvers = xdarwin-export ; then
3128 enable_symvers=darwin
3129fi
3130
c18dc5cc
RO
3131# Check if 'sun' was requested on non-Solaris 2 platforms.
3132if test x$enable_symvers = xsun ; then
3133 case ${target_os} in
3134 solaris2*)
3135 # All fine.
3136 ;;
3137 *)
3138 # Unlikely to work.
3139 AC_MSG_WARN([=== You have requested Sun symbol versioning, but])
3140 AC_MSG_WARN([=== you are not targetting Solaris 2.])
3141 AC_MSG_WARN([=== Symbol versioning will be disabled.])
3142 enable_symvers=no
3143 ;;
3144 esac
3145fi
3146
f47bddec 3147# Check to see if 'gnu' can win.
b329dd10
BK
3148if test $enable_symvers = gnu ||
3149 test $enable_symvers = gnu-versioned-namespace ||
c18dc5cc 3150 test $enable_symvers = sun; then
f47bddec 3151 # Check to see if libgcc_s exists, indicating that shared libgcc is possible.
2c839a4e
PE
3152 AC_MSG_CHECKING([for shared libgcc])
3153 ac_save_CFLAGS="$CFLAGS"
3154 CFLAGS=' -lgcc_s'
ff66d28f 3155 AC_TRY_LINK(, [return 0;], glibcxx_shared_libgcc=yes, glibcxx_shared_libgcc=no)
2c839a4e 3156 CFLAGS="$ac_save_CFLAGS"
d5325238
JJ
3157 if test $glibcxx_shared_libgcc = no; then
3158 cat > conftest.c <<EOF
3159int main (void) { return 0; }
3160EOF
3161changequote(,)dnl
3162 glibcxx_libgcc_s_suffix=`${CC-cc} $CFLAGS $CPPFLAGS $LDFLAGS \
3163 -shared -shared-libgcc -o conftest.so \
3164 conftest.c -v 2>&1 >/dev/null \
3165 | sed -n 's/^.* -lgcc_s\([^ ]*\) .*$/\1/p'`
3166changequote([,])dnl
3167 rm -f conftest.c conftest.so
3168 if test x${glibcxx_libgcc_s_suffix+set} = xset; then
3169 CFLAGS=" -lgcc_s$glibcxx_libgcc_s_suffix"
3170 AC_TRY_LINK(, [return 0;], glibcxx_shared_libgcc=yes)
3171 CFLAGS="$ac_save_CFLAGS"
3172 fi
3173 fi
3d7c150e 3174 AC_MSG_RESULT($glibcxx_shared_libgcc)
a9fdd472 3175
a9fdd472
GK
3176 # For GNU ld, we need at least this version. The format is described in
3177 # GLIBCXX_CHECK_LINKER_FEATURES above.
3178 glibcxx_min_gnu_ld_version=21400
c98b201b 3179
f47bddec
GK
3180 # If no shared libgcc, can't win.
3181 if test $glibcxx_shared_libgcc != yes; then
3182 AC_MSG_WARN([=== You have requested GNU symbol versioning, but])
3183 AC_MSG_WARN([=== you are not building a shared libgcc_s.])
3184 AC_MSG_WARN([=== Symbol versioning will be disabled.])
3185 enable_symvers=no
c18dc5cc
RO
3186 elif test $with_gnu_ld != yes && test $enable_symvers = sun; then
3187 : All interesting versions of Sun ld support sun style symbol versioning.
f47bddec 3188 elif test $with_gnu_ld != yes ; then
ab3bc736 3189 # just fail for now
a9fdd472
GK
3190 AC_MSG_WARN([=== You have requested GNU symbol versioning, but])
3191 AC_MSG_WARN([=== you are not using the GNU linker.])
3192 AC_MSG_WARN([=== Symbol versioning will be disabled.])
3193 enable_symvers=no
d60a2d4d
ILT
3194 elif test $glibcxx_ld_is_gold = yes ; then
3195 : All versions of gold support symbol versioning.
a9fdd472
GK
3196 elif test $glibcxx_gnu_ld_version -lt $glibcxx_min_gnu_ld_version ; then
3197 # The right tools, the right setup, but too old. Fallbacks?
3198 AC_MSG_WARN(=== Linker version $glibcxx_gnu_ld_version is too old for)
3199 AC_MSG_WARN(=== full symbol versioning support in this release of GCC.)
3200 AC_MSG_WARN(=== You would need to upgrade your binutils to version)
3201 AC_MSG_WARN(=== $glibcxx_min_gnu_ld_version or later and rebuild GCC.)
58579a27 3202 AC_MSG_WARN([=== Symbol versioning will be disabled.])
ab3bc736
BK
3203 enable_symvers=no
3204 fi
3205fi
3206
2799d972
BK
3207# For libtool versioning info, format is CURRENT:REVISION:AGE
3208libtool_VERSION=6:17:0
3209
3210# Everything parsed; figure out what files and settings to use.
c98b201b 3211case $enable_symvers in
ab3bc736 3212 no)
fb5c309d 3213 SYMVER_FILE=config/abi/pre/none.ver
ff66d28f 3214 ;;
c98b201b 3215 gnu)
fb5c309d 3216 SYMVER_FILE=config/abi/pre/gnu.ver
b329dd10
BK
3217 AC_DEFINE(_GLIBCXX_SYMVER_GNU, 1,
3218 [Define to use GNU versioning in the shared library.])
a9fdd472 3219 ;;
3cbc7af0 3220 gnu-versioned-namespace)
2799d972 3221 libtool_VERSION=7:0:0
3cbc7af0 3222 SYMVER_FILE=config/abi/pre/gnu-versioned-namespace.ver
b329dd10
BK
3223 AC_DEFINE(_GLIBCXX_SYMVER_GNU_NAMESPACE, 1,
3224 [Define to use GNU namespace versioning in the shared library.])
3cbc7af0 3225 ;;
fb5c309d
BK
3226 darwin)
3227 SYMVER_FILE=config/abi/pre/gnu.ver
b329dd10
BK
3228 AC_DEFINE(_GLIBCXX_SYMVER_DARWIN, 1,
3229 [Define to use darwin versioning in the shared library.])
ff66d28f 3230 ;;
c18dc5cc
RO
3231 sun)
3232 SYMVER_FILE=config/abi/pre/gnu.ver
b329dd10
BK
3233 AC_DEFINE(_GLIBCXX_SYMVER_SUN, 1,
3234 [Define to use Sun versioning in the shared library.])
c18dc5cc 3235 ;;
c98b201b
PE
3236esac
3237
fb5c309d
BK
3238if test x$enable_symvers != xno ; then
3239 AC_DEFINE(_GLIBCXX_SYMVER, 1,
3240 [Define to use symbol versioning in the shared library.])
3241fi
3242
1f93f687
JJ
3243AC_CACHE_CHECK([whether the target supports .symver directive],
3244 glibcxx_cv_have_as_symver_directive, [
3245 AC_TRY_COMPILE([void foo (void); __asm (".symver foo, bar@SYMVER");],
3246 [], glibcxx_cv_have_as_symver_directive=yes,
3247 glibcxx_cv_have_as_symver_directive=no)])
3248if test $glibcxx_cv_have_as_symver_directive = yes; then
3249 AC_DEFINE(HAVE_AS_SYMVER_DIRECTIVE, 1,
3250 [Define to 1 if the target assembler supports .symver directive.])
3251fi
3252
fb5c309d
BK
3253AC_SUBST(SYMVER_FILE)
3254AC_SUBST(port_specific_symbol_files)
3255GLIBCXX_CONDITIONAL(ENABLE_SYMVERS, test $enable_symvers != no)
3256GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU, test $enable_symvers = gnu)
3cbc7af0 3257GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_GNU_NAMESPACE, test $enable_symvers = gnu-versioned-namespace)
fb5c309d 3258GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_DARWIN, test $enable_symvers = darwin)
c18dc5cc 3259GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_SUN, test $enable_symvers = sun)
fb5c309d
BK
3260AC_MSG_NOTICE(versioning on shared library symbols is $enable_symvers)
3261
c18dc5cc
RO
3262if test $enable_symvers != no ; then
3263 case ${target_os} in
3264 # The Solaris 2 runtime linker doesn't support the GNU extension of
3265 # binding the same symbol to different versions
3266 solaris2*)
3267 symvers_renaming=no ;;
3268 # Other platforms with GNU symbol versioning (GNU/Linux, more?) do.
3269 *)
8198d541 3270 AC_DEFINE(HAVE_SYMVER_SYMBOL_RENAMING_RUNTIME_SUPPORT, 1,
b329dd10 3271 [Define to 1 if the target runtime linker supports binding the same symbol to different versions.])
8198d541 3272 symvers_renaming=yes ;;
c18dc5cc 3273 esac
c0f9d583
RO
3274else
3275 symvers_renaming=no
c18dc5cc
RO
3276fi
3277GLIBCXX_CONDITIONAL(ENABLE_SYMVERS_SOL2, test $symvers_renaming = no)
3278
fb5c309d 3279# Now, set up compatibility support, if any.
bb2b2a24
BK
3280# In addition, need this to deal with std::size_t mangling in
3281# src/compatibility.cc. In a perfect world, could use
3282# typeid(std::size_t).name()[0] to do direct substitution.
3283AC_MSG_CHECKING([for size_t as unsigned int])
3284ac_save_CFLAGS="$CFLAGS"
3285CFLAGS="-Werror"
b329dd10
BK
3286AC_TRY_COMPILE(, [__SIZE_TYPE__* stp; unsigned int* uip; stp = uip;],
3287 [glibcxx_size_t_is_i=yes], [glibcxx_size_t_is_i=no])
bb2b2a24
BK
3288CFLAGS=$ac_save_CFLAGS
3289if test "$glibcxx_size_t_is_i" = yes; then
3290 AC_DEFINE(_GLIBCXX_SIZE_T_IS_UINT, 1, [Define if size_t is unsigned int.])
3291fi
3292AC_MSG_RESULT([$glibcxx_size_t_is_i])
3293
3294AC_MSG_CHECKING([for ptrdiff_t as int])
3295ac_save_CFLAGS="$CFLAGS"
3296CFLAGS="-Werror"
b329dd10
BK
3297AC_TRY_COMPILE(, [__PTRDIFF_TYPE__* ptp; int* ip; ptp = ip;],
3298 [glibcxx_ptrdiff_t_is_i=yes], [glibcxx_ptrdiff_t_is_i=no])
bb2b2a24
BK
3299CFLAGS=$ac_save_CFLAGS
3300if test "$glibcxx_ptrdiff_t_is_i" = yes; then
3301 AC_DEFINE(_GLIBCXX_PTRDIFF_T_IS_INT, 1, [Define if ptrdiff_t is int.])
3302fi
3303AC_MSG_RESULT([$glibcxx_ptrdiff_t_is_i])
ff66d28f
PE
3304])
3305
3306
3307dnl
3308dnl Setup to use the gcc gthr.h thread-specific memory and mutex model.
3309dnl We must stage the required headers so that they will be installed
3310dnl with the library (unlike libgcc, the STL implementation is provided
3311dnl solely within headers). Since we must not inject random user-space
3312dnl macro names into user-provided C++ code, we first stage into <file>-in
3313dnl and process to <file> with an output command. The reason for a two-
3314dnl stage process here is to correctly handle $srcdir!=$objdir without
3315dnl having to write complex code (the sed commands to clean the macro
3316dnl namespace are complex and fragile enough as it is). We must also
3317dnl add a relative path so that -I- is supported properly.
3318dnl
f214923c 3319AC_DEFUN([GLIBCXX_ENABLE_THREADS], [
ff66d28f 3320 AC_MSG_CHECKING([for thread model used by GCC])
fbe057bb 3321 target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'`
ff66d28f 3322 AC_MSG_RESULT([$target_thread_file])
ff66d28f
PE
3323])
3324
3325
b8c41c8e
CF
3326dnl
3327dnl Check if gthread implementation defines the types and functions
3328dnl required by the c++0x thread library. Conforming gthread
3329dnl implementations can define __GTHREADS_CXX0X to enable use with c++0x.
3330dnl
bae868fb
RO
3331dnl GLIBCXX_ENABLE_SYMVERS must be done before this.
3332dnl
b8c41c8e 3333AC_DEFUN([GLIBCXX_CHECK_GTHREADS], [
bae868fb
RO
3334 GLIBCXX_ENABLE(libstdcxx-threads,auto,,[enable C++11 threads support])
3335
3336 if test x$enable_libstdcxx_threads = xauto ||
3337 test x$enable_libstdcxx_threads = xyes; then
3338
b8c41c8e
CF
3339 AC_LANG_SAVE
3340 AC_LANG_CPLUSPLUS
3341
3342 ac_save_CXXFLAGS="$CXXFLAGS"
5d1c8e77
RO
3343 CXXFLAGS="$CXXFLAGS -fno-exceptions \
3344 -I${toplevel_srcdir}/libgcc -I${toplevel_builddir}/libgcc"
b8c41c8e 3345
3b2eeb43
JW
3346 target_thread_file=`$CXX -v 2>&1 | sed -n 's/^Thread model: //p'`
3347 case $target_thread_file in
3348 posix)
3349 CXXFLAGS="$CXXFLAGS -DSUPPORTS_WEAK -DGTHREAD_USE_WEAK -D_PTHREADS"
3350 esac
3351
3352 AC_MSG_CHECKING([whether it can be safely assumed that mutex_timedlock is available])
6545e33e
PC
3353
3354 AC_TRY_COMPILE([#include <unistd.h>],
3355 [
3b2eeb43
JW
3356 // In case of POSIX threads check _POSIX_TIMEOUTS.
3357 #if (defined(_PTHREADS) \
2a5d011c 3358 && (!defined(_POSIX_TIMEOUTS) || _POSIX_TIMEOUTS <= 0))
6545e33e
PC
3359 #error
3360 #endif
3361 ], [ac_gthread_use_mutex_timedlock=1], [ac_gthread_use_mutex_timedlock=0])
3362
3363 AC_DEFINE_UNQUOTED(_GTHREAD_USE_MUTEX_TIMEDLOCK, $ac_gthread_use_mutex_timedlock,
2a5d011c 3364 [Define to 1 if mutex_timedlock is available.])
6545e33e
PC
3365
3366 if test $ac_gthread_use_mutex_timedlock = 1 ; then res_mutex_timedlock=yes ;
3367 else res_mutex_timedlock=no ; fi
3368 AC_MSG_RESULT([$res_mutex_timedlock])
3369
b8c41c8e
CF
3370 AC_MSG_CHECKING([for gthreads library])
3371
3b2eeb43 3372 AC_TRY_COMPILE([#include "gthr.h"],
b8c41c8e 3373 [
a1c5742d
PC
3374 #ifndef __GTHREADS_CXX0X
3375 #error
3376 #endif
bae868fb
RO
3377 ], [case $target_os in
3378 # gthreads support breaks symbol versioning on Solaris 8/9 (PR
3379 # libstdc++/52189).
3380 solaris2.[[89]]*)
3381 if test x$enable_symvers = xno; then
3382 ac_has_gthreads=yes
3383 elif test x$enable_libstdcxx_threads = xyes; then
3384 AC_MSG_WARN([You have requested C++11 threads support, but])
3385 AC_MSG_WARN([this breaks symbol versioning.])
3386 ac_has_gthreads=yes
3387 else
3388 ac_has_gthreads=no
3389 fi
3390 ;;
3391 *)
3392 ac_has_gthreads=yes
3393 ;;
3394 esac],
3395 [ac_has_gthreads=no])
3396 else
3397 ac_has_gthreads=no
3398 fi
b8c41c8e
CF
3399
3400 AC_MSG_RESULT([$ac_has_gthreads])
3401
3402 if test x"$ac_has_gthreads" = x"yes"; then
3403 AC_DEFINE(_GLIBCXX_HAS_GTHREADS, 1,
b329dd10 3404 [Define if gthreads library is available.])
b8c41c8e
CF
3405 fi
3406
3407 CXXFLAGS="$ac_save_CXXFLAGS"
3408 AC_LANG_RESTORE
3409])
3410
3411
ff66d28f
PE
3412# Check whether LC_MESSAGES is available in <locale.h>.
3413# Ulrich Drepper <drepper@cygnus.com>, 1995.
3414#
3415# This file file be copied and used freely without restrictions. It can
3416# be used in projects which are not available under the GNU Public License
3417# but which still want to provide support for the GNU gettext functionality.
3418# Please note that the actual code is *not* freely available.
f214923c 3419AC_DEFUN([AC_LC_MESSAGES], [
ff66d28f
PE
3420 AC_CHECK_HEADER(locale.h, [
3421 AC_CACHE_CHECK([for LC_MESSAGES], ac_cv_val_LC_MESSAGES,
99bf8d16 3422 [AC_TRY_COMPILE([#include <locale.h>], [return LC_MESSAGES],
ff66d28f
PE
3423 ac_cv_val_LC_MESSAGES=yes, ac_cv_val_LC_MESSAGES=no)])
3424 if test $ac_cv_val_LC_MESSAGES = yes; then
b329dd10
BK
3425 AC_DEFINE(HAVE_LC_MESSAGES, 1,
3426 [Define if LC_MESSAGES is available in <locale.h>.])
ff66d28f
PE
3427 fi
3428 ])
3429])
3430
43653c33
JW
3431dnl
3432dnl Check whether get_nprocs is available in <sys/sysinfo.h>, and define _GLIBCXX_USE_GET_NPROCS.
3433dnl
3434AC_DEFUN([GLIBCXX_CHECK_GET_NPROCS], [
3435
3436 AC_LANG_SAVE
3437 AC_LANG_CPLUSPLUS
3438 ac_save_CXXFLAGS="$CXXFLAGS"
3439 CXXFLAGS="$CXXFLAGS -fno-exceptions"
3440
3441 AC_MSG_CHECKING([for get_nprocs])
3442 AC_CACHE_VAL(glibcxx_cv_GET_NPROCS, [
3443 GCC_TRY_COMPILE_OR_LINK(
3444 [#include <sys/sysinfo.h>],
3445 [int n = get_nprocs();],
3446 [glibcxx_cv_GET_NPROCS=yes],
3447 [glibcxx_cv_GET_NPROCS=no])
3448 ])
3449 if test $glibcxx_cv_GET_NPROCS = yes; then
3450 AC_DEFINE(_GLIBCXX_USE_GET_NPROCS, 1, [Define if get_nprocs is available in <sys/sysinfo.h>.])
3451 fi
3452 AC_MSG_RESULT($glibcxx_cv_GET_NPROCS)
3453
3454 CXXFLAGS="$ac_save_CXXFLAGS"
3455 AC_LANG_RESTORE
3456])
3457
3458dnl
3459dnl Check whether sysconf(_SC_NPROCESSORS_ONLN) is available in <unistd.h>, and define _GLIBCXX_USE_SC_NPROCESSORS_ONLN.
3460dnl
3461AC_DEFUN([GLIBCXX_CHECK_SC_NPROCESSORS_ONLN], [
3462
3463 AC_LANG_SAVE
3464 AC_LANG_CPLUSPLUS
3465 ac_save_CXXFLAGS="$CXXFLAGS"
3466 CXXFLAGS="$CXXFLAGS -fno-exceptions"
3467
3468 AC_MSG_CHECKING([for _SC_NPROCESSORS_ONLN])
3469 AC_CACHE_VAL(glibcxx_cv_SC_NPROCESSORS_ONLN, [
3470 GCC_TRY_COMPILE_OR_LINK(
3471 [#include <unistd.h>],
3472 [int n = sysconf(_SC_NPROCESSORS_ONLN);],
3473 [glibcxx_cv_SC_NPROCESSORS_ONLN=yes],
3474 [glibcxx_cv_SC_NPROCESSORS_ONLN=no])
3475 ])
3476 if test $glibcxx_cv_SC_NPROCESSORS_ONLN = yes; then
3477 AC_DEFINE(_GLIBCXX_USE_SC_NPROCESSORS_ONLN, 1, [Define if _SC_NPROCESSORS_ONLN is available in <unistd.h>.])
3478 fi
3479 AC_MSG_RESULT($glibcxx_cv_SC_NPROCESSORS_ONLN)
3480
3481 CXXFLAGS="$ac_save_CXXFLAGS"
3482 AC_LANG_RESTORE
3483])
3484
5ee360d0
JW
3485dnl
3486dnl Check whether sysconf(_SC_NPROC_ONLN) is available in <unistd.h>, and define _GLIBCXX_USE_SC_NPROC_ONLN.
3487dnl
3488AC_DEFUN([GLIBCXX_CHECK_SC_NPROC_ONLN], [
3489
3490 AC_LANG_SAVE
3491 AC_LANG_CPLUSPLUS
3492 ac_save_CXXFLAGS="$CXXFLAGS"
3493 CXXFLAGS="$CXXFLAGS -fno-exceptions"
3494
3495 AC_MSG_CHECKING([for _SC_NPROC_ONLN])
3496 AC_CACHE_VAL(glibcxx_cv_SC_NPROC_ONLN, [
3497 GCC_TRY_COMPILE_OR_LINK(
3498 [#include <unistd.h>],
3499 [int n = sysconf(_SC_NPROC_ONLN);],
3500 [glibcxx_cv_SC_NPROC_ONLN=yes],
3501 [glibcxx_cv_SC_NPROC_ONLN=no])
3502 ])
3503 if test $glibcxx_cv_SC_NPROC_ONLN = yes; then
3504 AC_DEFINE(_GLIBCXX_USE_SC_NPROC_ONLN, 1, [Define if _SC_NPROC_ONLN is available in <unistd.h>.])
3505 fi
3506 AC_MSG_RESULT($glibcxx_cv_SC_NPROC_ONLN)
3507
3508 CXXFLAGS="$ac_save_CXXFLAGS"
3509 AC_LANG_RESTORE
3510])
3511
3512dnl
3513dnl Check whether pthread_num_processors_np is available in <pthread.h>, and define _GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP.
3514dnl
3515AC_DEFUN([GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP], [
3516
3517 AC_LANG_SAVE
3518 AC_LANG_CPLUSPLUS
3519 ac_save_CXXFLAGS="$CXXFLAGS"
3520 CXXFLAGS="$CXXFLAGS -fno-exceptions"
3521
3522 AC_MSG_CHECKING([for pthreads_num_processors_np])
3523 AC_CACHE_VAL(glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP, [
3524 GCC_TRY_COMPILE_OR_LINK(
3525 [#include <pthread.h>],
3526 [int n = pthread_num_processors_np();],
3527 [glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=yes],
3528 [glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP=no])
3529 ])
3530 if test $glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP = yes; then
3531 AC_DEFINE(_GLIBCXX_USE_PTHREADS_NUM_PROCESSORS_NP, 1, [Define if pthreads_num_processors_np is available in <pthread.h>.])
3532 fi
3533 AC_MSG_RESULT($glibcxx_cv_PTHREADS_NUM_PROCESSORS_NP)
3534
3535 CXXFLAGS="$ac_save_CXXFLAGS"
3536 AC_LANG_RESTORE
3537])
3538
3539dnl
3540dnl Check whether sysctl is available in <pthread.h>, and define _GLIBCXX_USE_SYSCTL_HW_NCPU.
3541dnl
3542AC_DEFUN([GLIBCXX_CHECK_SYSCTL_HW_NCPU], [
3543
3544 AC_LANG_SAVE
3545 AC_LANG_CPLUSPLUS
3546 ac_save_CXXFLAGS="$CXXFLAGS"
3547 CXXFLAGS="$CXXFLAGS -fno-exceptions"
3548
3549 AC_MSG_CHECKING([for hw.ncpu sysctl])
3550 AC_CACHE_VAL(glibcxx_cv_SYSCTL_HW_NCPU, [
3551 GCC_TRY_COMPILE_OR_LINK(
3552 [
3553 #include <stddef.h>
3554 #include <sys/sysctl.h>
3555 ],
3556 [
3557 int count;
3558 size_t size = sizeof(count);
3559 int mib[] = { CTL_HW, HW_NCPU };
3560 sysctl(mib, 2, &count, &size, NULL, 0);
3561 ],
3562 [glibcxx_cv_SYSCTL_HW_NCPU=yes],
3563 [glibcxx_cv_SYSCTL_HW_NCPU=no])
3564 ])
3565 if test $glibcxx_cv_SYSCTL_HW_NCPU = yes; then
3566 AC_DEFINE(_GLIBCXX_USE_SYSCTL_HW_NCPU, 1, [Define if sysctl(), CTL_HW and HW_NCPU are available in <sys/sysctl.h>.])
3567 fi
3568 AC_MSG_RESULT($glibcxx_cv_SYSCTL_HW_NCPU)
3569
3570 CXXFLAGS="$ac_save_CXXFLAGS"
3571 AC_LANG_RESTORE
3572])
43653c33 3573
2a5d011c
BK
3574dnl
3575dnl Check to see if python pretty printing can be activated.
3576dnl
3577dnl --with-python-dir=dir
3578dnl installs directory into $prefix/dir
3579AC_DEFUN([GLIBCXX_ENABLE_PYTHON], [
3580
3581AC_MSG_CHECKING([for custom python install directory])
3582AC_ARG_WITH([python-dir],
3583 AS_HELP_STRING([--with-python-dir],
3584 [the location to install Python modules. This path is relative starting from the prefix.]),
3585 [with_python_dir=$withval], [with_python_dir="no"])
3586AC_MSG_RESULT(${with_python_dir})
3587
3588# Needed for installing Python modules during make install.
3589python_mod_dir="${with_python_dir}"
3590AC_SUBST(python_mod_dir)
3591GLIBCXX_CONDITIONAL(ENABLE_PYTHONDIR, test $python_mod_dir != no)
3592])
3593
b124c5c4
BK
3594dnl
3595dnl Check to see if -Werror is disabled.
3596dnl
3597dnl --enable-werror/--disable-werror
3598AC_DEFUN([GLIBCXX_ENABLE_WERROR], [
3599 AC_MSG_CHECKING([for -Werror])
3600 GLIBCXX_ENABLE(werror,$1,,[turns on -Werror])
3601 AC_MSG_RESULT($enable_werror)
3602 GLIBCXX_CONDITIONAL(ENABLE_WERROR, test $enable_werror = yes)
3603])
3604
2a5d011c 3605
cddfb1c7 3606# Macros from the top-level gcc directory.
c18dc5cc 3607m4_include([../config/gc++filt.m4])
cddfb1c7 3608m4_include([../config/tls.m4])