re PR c++/57638 (warning container: 'integer_cst’ not supported by dump_type#<type...
[gcc.git] / libstdc++-v3 / configure.ac
1 # Process this file with autoreconf to produce a configure script.
2
3 AC_PREREQ(2.64)
4 AC_INIT(package-unused, version-unused,, libstdc++)
5 AC_CONFIG_SRCDIR(src/shared/hashtable-aux.cc)
6 AC_CONFIG_HEADER(config.h)
7
8 # This works around the fact that libtool configuration may change LD
9 # for this particular configuration, but some shells, instead of
10 # keeping the changes in LD private, export them just because LD is
11 # exported. Only used at the end of this file.
12 ### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
13
14 # Find the rest of the source tree framework.
15 AM_ENABLE_MULTILIB(, ..)
16
17 # Gets build, host, target, *_vendor, *_cpu, *_os, etc.
18 #
19 # You will slowly go insane if you do not grok the following fact: when
20 # building v3 as part of the compiler, the top-level /target/ becomes the
21 # library's /host/. configure then causes --target to default to --host,
22 # exactly like any other package using autoconf. Therefore, 'target' and
23 # 'host' will always be the same. This makes sense both for native and
24 # cross compilers, just think about it for a little while. :-)
25 #
26 # Also, if v3 is being configured as part of a cross compiler, the top-level
27 # configure script will pass the "real" host as $with_cross_host.
28 #
29 # Do not delete or change the following two lines. For why, see
30 # http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
31 AC_CANONICAL_SYSTEM
32 target_alias=${target_alias-$host_alias}
33
34 # Handy for debugging:
35 #AC_MSG_NOTICE($build / $host / $target / $host_alias / $target_alias); sleep 5
36
37 if test "$build" != "$host"; then
38 # We are being configured with some form of cross compiler.
39 GLIBCXX_IS_NATIVE=false
40 case "$host","$target" in
41 # Darwin crosses can use the host system's libraries and headers,
42 # because of the fat library support. Of course, it must be the
43 # same version of Darwin on both sides. Allow the user to
44 # just say --target=foo-darwin without a version number to mean
45 # "the version on this system".
46 *-*-darwin*,*-*-darwin*)
47 hostos=`echo $host | sed 's/.*-darwin/darwin/'`
48 targetos=`echo $target | sed 's/.*-darwin/darwin/'`
49 if test $hostos = $targetos -o $targetos = darwin ; then
50 GLIBCXX_IS_NATIVE=true
51 fi
52 ;;
53
54 *)
55 GCC_NO_EXECUTABLES
56 ;;
57 esac
58 else
59 GLIBCXX_IS_NATIVE=true
60 fi
61
62 # Sets up automake. Must come after AC_CANONICAL_SYSTEM. Each of the
63 # following is magically included in AUTOMAKE_OPTIONS in each Makefile.am.
64 # 1.x: minimum required version
65 # no-define: PACKAGE and VERSION will not be #define'd in config.h (a bunch
66 # of other PACKAGE_* variables will, however, and there's nothing
67 # we can do about that; they come from AC_INIT).
68 # foreign: we don't follow the normal rules for GNU packages (no COPYING
69 # file in the top srcdir, etc, etc), so stop complaining.
70 # no-dependencies: turns off auto dependency generation (just for now)
71 # no-dist: we don't want 'dist' and related rules.
72 # -Wall: turns on all automake warnings...
73 # -Wno-portability: ...except this one, since GNU make is now required.
74 AM_INIT_AUTOMAKE([1.9.3 no-define foreign no-dependencies no-dist -Wall -Wno-portability -Wno-override])
75 AH_TEMPLATE(PACKAGE, [Name of package])
76 AH_TEMPLATE(VERSION, [Version number of package])
77
78 # -fno-builtin must be present here so that a non-conflicting form of
79 # std::exit can be guessed by AC_PROG_CXX, and used in later tests.
80
81 save_CXXFLAGS="$CXXFLAGS"
82 CXXFLAGS="$CXXFLAGS -fno-builtin"
83 AC_PROG_CC
84 AC_PROG_CXX
85 CXXFLAGS="$save_CXXFLAGS"
86
87 # Runs configure.host, and assorted other critical bits. Sets
88 # up critical shell variables.
89 GLIBCXX_CONFIGURE
90
91 # Libtool setup.
92 if test "x${with_newlib}" != "xyes"; then
93 AC_LIBTOOL_DLOPEN
94 fi
95 AM_PROG_LIBTOOL
96 ACX_LT_HOST_FLAGS
97 AC_SUBST(enable_shared)
98 AC_SUBST(enable_static)
99
100 # libtool variables for C++ shared and position-independent compiles.
101 #
102 # Use glibcxx_lt_pic_flag to designate the automake variable
103 # used to encapsulate the default libtool approach to creating objects
104 # with position-independent code. Default: -prefer-pic.
105 #
106 # Use glibcxx_compiler_shared_flag to designate a compile-time flags for
107 # creating shared objects. Default: -D_GLIBCXX_SHARED.
108 #
109 # Use glibcxx_compiler_pic_flag to designate a compile-time flags for
110 # creating position-independent objects. This varies with the target
111 # hardware and operating system, but is often: -DPIC -fPIC.
112 if test "$enable_shared" = yes; then
113 glibcxx_lt_pic_flag="-prefer-pic"
114 glibcxx_compiler_pic_flag="$lt_prog_compiler_pic_CXX"
115 glibcxx_compiler_shared_flag="-D_GLIBCXX_SHARED"
116
117 else
118 glibcxx_lt_pic_flag=
119 glibcxx_compiler_pic_flag=
120 glibcxx_compiler_shared_flag=
121 fi
122 AC_SUBST(glibcxx_lt_pic_flag)
123 AC_SUBST(glibcxx_compiler_pic_flag)
124 AC_SUBST(glibcxx_compiler_shared_flag)
125
126 # Override the libtool's pic_flag and pic_mode.
127 # Do this step after AM_PROG_LIBTOOL, but before AC_OUTPUT.
128 # NB: this impacts --with-pic and --without-pic.
129 lt_prog_compiler_pic_CXX="$glibcxx_compiler_pic_flag $glibcxx_compiler_shared_flag"
130 pic_mode='default'
131
132 # Eliminate -lstdc++ addition to postdeps for cross compiles.
133 postdeps_CXX=`echo " $postdeps_CXX " | sed 's, -lstdc++ ,,g'`
134
135 # Possibly disable most of the library.
136 ## TODO: Consider skipping unncessary tests altogether in this case, rather
137 ## than just ignoring the results. Faster /and/ more correct, win win.
138 GLIBCXX_ENABLE_HOSTED
139
140 # Enable descriptive messages to standard output on termination.
141 GLIBCXX_ENABLE_VERBOSE
142
143 # Enable compiler support that doesn't require linking.
144 GLIBCXX_ENABLE_SJLJ_EXCEPTIONS
145 GLIBCXX_ENABLE_PCH($is_hosted)
146 GLIBCXX_ENABLE_THREADS
147 GLIBCXX_ENABLE_ATOMIC_BUILTINS
148 GLIBCXX_ENABLE_DECIMAL_FLOAT
149 GLIBCXX_ENABLE_INT128_FLOAT128
150
151 # Checks for compiler support that doesn't require linking.
152 GLIBCXX_CHECK_COMPILER_FEATURES
153
154 # Enable all the variable C++ runtime options that don't require linking.
155 GLIBCXX_ENABLE_CSTDIO
156 GLIBCXX_ENABLE_CLOCALE
157 GLIBCXX_ENABLE_ALLOCATOR
158 GLIBCXX_ENABLE_CHEADERS($c_model) dnl c_model from configure.host
159 GLIBCXX_ENABLE_LONG_LONG([yes])
160 GLIBCXX_ENABLE_WCHAR_T([yes])
161 GLIBCXX_ENABLE_C99([yes])
162 GLIBCXX_ENABLE_CONCEPT_CHECKS([no])
163 GLIBCXX_ENABLE_DEBUG_FLAGS(["-gdwarf-4 -g3 -O0"])
164 GLIBCXX_ENABLE_DEBUG([no])
165 GLIBCXX_ENABLE_PARALLEL([yes])
166 GLIBCXX_ENABLE_CXX_FLAGS
167 GLIBCXX_ENABLE_FULLY_DYNAMIC_STRING([no])
168 GLIBCXX_ENABLE_EXTERN_TEMPLATE([yes])
169 GLIBCXX_ENABLE_PYTHON
170 GLIBCXX_ENABLE_WERROR([yes])
171
172 # Checks for operating systems support that doesn't require linking.
173 GLIBCXX_CHECK_STDIO_PROTO
174 GLIBCXX_CHECK_SYSTEM_ERROR
175
176 # For the streamoff typedef.
177 GLIBCXX_CHECK_INT64_T
178
179 # For LFS support.
180 GLIBCXX_CHECK_LFS
181
182 # For showmanyc_helper().
183 AC_CHECK_HEADERS(sys/ioctl.h sys/filio.h)
184 GLIBCXX_CHECK_POLL
185 GLIBCXX_CHECK_S_ISREG_OR_S_IFREG
186
187 # For xsputn_2().
188 AC_CHECK_HEADERS(sys/uio.h)
189 GLIBCXX_CHECK_WRITEV
190
191 # For C99 support to TR1.
192 GLIBCXX_CHECK_C99_TR1
193
194 # For the EOF, SEEK_CUR, and SEEK_END integer constants.
195 GLIBCXX_COMPUTE_STDIO_INTEGER_CONSTANTS
196
197 # For gettimeofday support.
198 GLIBCXX_CHECK_GETTIMEOFDAY
199
200 # For clock_gettime, nanosleep and sched_yield support.
201 GLIBCXX_ENABLE_LIBSTDCXX_TIME
202
203 AC_LC_MESSAGES
204
205 # For hardware_concurrency
206 AC_CHECK_HEADERS(sys/sysinfo.h)
207 GLIBCXX_CHECK_GET_NPROCS
208 AC_CHECK_HEADERS(unistd.h)
209 GLIBCXX_CHECK_SC_NPROCESSORS_ONLN
210 GLIBCXX_CHECK_SC_NPROC_ONLN
211 GLIBCXX_CHECK_PTHREADS_NUM_PROCESSORS_NP
212 GLIBCXX_CHECK_SYSCTL_HW_NCPU
213 GLIBCXX_CHECK_SDT_H
214
215 # Check for available headers.
216 AC_CHECK_HEADERS([endian.h execinfo.h float.h fp.h ieeefp.h inttypes.h \
217 locale.h machine/endian.h machine/param.h nan.h stdint.h stdlib.h string.h \
218 strings.h sys/ipc.h sys/isa_defs.h sys/machine.h sys/param.h \
219 sys/resource.h sys/sem.h sys/stat.h sys/time.h sys/types.h unistd.h \
220 wchar.h wctype.h])
221
222 # Only do link tests if native. Else, hardcode.
223 if $GLIBCXX_IS_NATIVE; then
224
225 # We can do more elaborate tests that assume a working linker.
226 CANADIAN=no
227
228 GLIBCXX_CHECK_LINKER_FEATURES
229 GLIBCXX_CHECK_MATH_SUPPORT
230 GLIBCXX_CHECK_STDLIB_SUPPORT
231
232 # For /dev/random and /dev/urandom for TR1.
233 GLIBCXX_CHECK_RANDOM_TR1
234
235 # For TLS support.
236 GCC_CHECK_TLS
237
238 AC_CHECK_FUNCS(__cxa_thread_atexit_impl)
239
240 # For iconv support.
241 AM_ICONV
242
243 else
244
245 # This lets us hard-code the functionality we know we'll have in the cross
246 # target environment. "Let" is a sugar-coated word placed on an especially
247 # dull and tedious hack, actually.
248 #
249 # Here's why GLIBCXX_CHECK_MATH_SUPPORT, and other autoconf macros
250 # that involve linking, can't be used:
251 # "cannot open sim-crt0.o"
252 # "cannot open crt0.o"
253 # etc. All this is because there currently exists no unified, consistent
254 # way for top level CC information to be passed down to target directories:
255 # newlib includes, newlib linking info, libgloss versus newlib crt0.o, etc.
256 # When all of that is done, all of this hokey, excessive AC_DEFINE junk for
257 # crosses can be removed.
258
259 # If Canadian cross, then don't pick up tools from the build directory.
260 # Used only in GLIBCXX_EXPORT_INCLUDES.
261 if test -n "$with_cross_host" &&
262 test x"$build_alias" != x"$with_cross_host" &&
263 test x"$build" != x"$target";
264 then
265 CANADIAN=yes
266 else
267 CANADIAN=no
268 fi
269
270 # Construct crosses by hand, eliminating bits that need ld...
271 # GLIBCXX_CHECK_MATH_SUPPORT
272
273 # First, test for "known" system libraries. We may be using newlib even
274 # on a hosted environment.
275 if test "x${with_newlib}" = "xyes"; then
276 os_include_dir="os/newlib"
277 AC_DEFINE(HAVE_HYPOT)
278
279 # GLIBCXX_CHECK_STDLIB_SUPPORT
280 AC_DEFINE(HAVE_STRTOF)
281
282 AC_DEFINE(HAVE_ACOSF)
283 AC_DEFINE(HAVE_ASINF)
284 AC_DEFINE(HAVE_ATAN2F)
285 AC_DEFINE(HAVE_ATANF)
286 AC_DEFINE(HAVE_CEILF)
287 AC_DEFINE(HAVE_COSF)
288 AC_DEFINE(HAVE_COSHF)
289 AC_DEFINE(HAVE_EXPF)
290 AC_DEFINE(HAVE_FABSF)
291 AC_DEFINE(HAVE_FLOORF)
292 AC_DEFINE(HAVE_FMODF)
293 AC_DEFINE(HAVE_FREXPF)
294 AC_DEFINE(HAVE_LDEXPF)
295 AC_DEFINE(HAVE_LOG10F)
296 AC_DEFINE(HAVE_LOGF)
297 AC_DEFINE(HAVE_MODFF)
298 AC_DEFINE(HAVE_POWF)
299 AC_DEFINE(HAVE_SINF)
300 AC_DEFINE(HAVE_SINHF)
301 AC_DEFINE(HAVE_SQRTF)
302 AC_DEFINE(HAVE_TANF)
303 AC_DEFINE(HAVE_TANHF)
304
305 AC_DEFINE(HAVE_ICONV)
306 else
307 GLIBCXX_CROSSCONFIG
308 fi
309
310 # At some point, we should differentiate between architectures
311 # like x86, which have long double versions, and alpha/powerpc/etc.,
312 # which don't. For the time being, punt.
313 if test x"long_double_math_on_this_cpu" = x"yes"; then
314 AC_DEFINE(HAVE_ACOSL)
315 AC_DEFINE(HAVE_ASINL)
316 AC_DEFINE(HAVE_ATAN2L)
317 AC_DEFINE(HAVE_ATANL)
318 AC_DEFINE(HAVE_CEILL)
319 AC_DEFINE(HAVE_COSL)
320 AC_DEFINE(HAVE_COSHL)
321 AC_DEFINE(HAVE_EXPL)
322 AC_DEFINE(HAVE_FABSL)
323 AC_DEFINE(HAVE_FLOORL)
324 AC_DEFINE(HAVE_FMODL)
325 AC_DEFINE(HAVE_FREXPL)
326 AC_DEFINE(HAVE_LDEXPL)
327 AC_DEFINE(HAVE_LOG10L)
328 AC_DEFINE(HAVE_LOGL)
329 AC_DEFINE(HAVE_MODFL)
330 AC_DEFINE(HAVE_POWL)
331 AC_DEFINE(HAVE_SINCOSL)
332 AC_DEFINE(HAVE_SINL)
333 AC_DEFINE(HAVE_SINHL)
334 AC_DEFINE(HAVE_SQRTL)
335 AC_DEFINE(HAVE_TANL)
336 AC_DEFINE(HAVE_TANHL)
337 fi
338 fi
339
340 # Check for _Unwind_GetIPInfo.
341 GCC_CHECK_UNWIND_GETIPINFO
342
343 GCC_LINUX_FUTEX([AC_DEFINE(HAVE_LINUX_FUTEX, 1, [Define if futex syscall is available.])])
344
345 GCC_HEADER_STDINT(include/gstdint.h)
346
347 GLIBCXX_ENABLE_SYMVERS([yes])
348 AC_SUBST(libtool_VERSION)
349
350 GLIBCXX_ENABLE_LIBSTDCXX_VISIBILITY([yes])
351
352 ac_ldbl_compat=no
353 case "$target" in
354 powerpc*-*-linux* | \
355 sparc*-*-linux* | \
356 s390*-*-linux* | \
357 alpha*-*-linux*)
358 AC_TRY_COMPILE(, [
359 #if !defined __LONG_DOUBLE_128__ || (defined(__sparc__) && defined(__arch64__))
360 #error no need for long double compatibility
361 #endif
362 ], [ac_ldbl_compat=yes], [ac_ldbl_compat=no])
363 if test "$ac_ldbl_compat" = yes; then
364 AC_DEFINE([_GLIBCXX_LONG_DOUBLE_COMPAT],1,
365 [Define if compatibility should be provided for -mlong-double-64.])
366 port_specific_symbol_files="\$(top_srcdir)/config/os/gnu-linux/ldbl-extra.ver"
367 fi
368 esac
369 GLIBCXX_CONDITIONAL(GLIBCXX_LDBL_COMPAT, test $ac_ldbl_compat = yes)
370
371 # Check if assembler supports disabling hardware capability support.
372 GLIBCXX_CHECK_ASSEMBLER_HWCAP
373
374 # Check if assembler supports rdrand opcode.
375 GLIBCXX_CHECK_X86_RDRAND
376
377 # This depends on GLIBCXX_ENABLE_SYMVERS and GLIBCXX_IS_NATIVE.
378 GLIBCXX_CONFIGURE_TESTSUITE
379
380 # For gthread support. Depends on GLIBCXX_ENABLE_SYMVERS.
381 GLIBCXX_CHECK_GTHREADS
382
383 # Define documentation rules conditionally.
384
385 # See if makeinfo has been installed and is modern enough
386 # that we can use it.
387 ACX_CHECK_PROG_VER([MAKEINFO], [makeinfo], [--version],
388 [GNU texinfo.* \([0-9][0-9.]*\)],
389 [4.[4-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*])
390 AM_CONDITIONAL(BUILD_INFO, test $gcc_cv_prog_makeinfo_modern = "yes")
391
392 # Check for doxygen
393 AC_CHECK_PROG([DOXYGEN], doxygen, yes, no)
394 AC_CHECK_PROG([DOT], dot, yes, no)
395
396 # Check for docbook
397 AC_CHECK_PROG([XSLTPROC], xsltproc, yes, no)
398 AC_CHECK_PROG([XMLLINT], xmllint, yes, no)
399 GLIBCXX_CONFIGURE_DOCBOOK
400
401 # Check for xml/html dependencies.
402 AM_CONDITIONAL(BUILD_XML,
403 test $ac_cv_prog_DOXYGEN = "yes" &&
404 test $ac_cv_prog_DOT = "yes" &&
405 test $ac_cv_prog_XSLTPROC = "yes" &&
406 test $ac_cv_prog_XMLLINT = "yes" &&
407 test $glibcxx_stylesheets = "yes")
408
409 AM_CONDITIONAL(BUILD_HTML,
410 test $ac_cv_prog_DOXYGEN = "yes" &&
411 test $ac_cv_prog_DOT = "yes" &&
412 test $ac_cv_prog_XSLTPROC = "yes" &&
413 test $ac_cv_prog_XMLLINT = "yes" &&
414 test $glibcxx_stylesheets = "yes")
415
416 # Check for man dependencies.
417 AM_CONDITIONAL(BUILD_MAN,
418 test $ac_cv_prog_DOXYGEN = "yes" &&
419 test $ac_cv_prog_DOT = "yes")
420
421 # Check for pdf dependencies.
422 AC_CHECK_PROG([DBLATEX], dblatex, yes, no)
423 AC_CHECK_PROG([PDFLATEX], pdflatex, yes, no)
424 AM_CONDITIONAL(BUILD_PDF,
425 test $ac_cv_prog_DBLATEX = "yes" &&
426 test $ac_cv_prog_PDFLATEX = "yes")
427
428
429 # Propagate the target-specific source directories through the build chain.
430 ATOMICITY_SRCDIR=config/${atomicity_dir}
431 ATOMIC_WORD_SRCDIR=config/${atomic_word_dir}
432 ATOMIC_FLAGS=${atomic_flags}
433 CPU_DEFINES_SRCDIR=config/${cpu_defines_dir}
434 OS_INC_SRCDIR=config/${os_include_dir}
435 ERROR_CONSTANTS_SRCDIR=config/${error_constants_dir}
436 ABI_TWEAKS_SRCDIR=config/${abi_tweaks_dir}
437 CPU_OPT_EXT_RANDOM=config/${cpu_opt_ext_random}
438 CPU_OPT_BITS_RANDOM=config/${cpu_opt_bits_random}
439 AC_SUBST(ATOMICITY_SRCDIR)
440 AC_SUBST(ATOMIC_WORD_SRCDIR)
441 AC_SUBST(ATOMIC_FLAGS)
442 AC_SUBST(CPU_DEFINES_SRCDIR)
443 AC_SUBST(ABI_TWEAKS_SRCDIR)
444 AC_SUBST(OS_INC_SRCDIR)
445 AC_SUBST(ERROR_CONSTANTS_SRCDIR)
446 AC_SUBST(CPU_OPT_EXT_RANDOM)
447 AC_SUBST(CPU_OPT_BITS_RANDOM)
448
449
450 # Determine cross-compile flags and AM_CONDITIONALs.
451 #AC_SUBST(GLIBCXX_IS_NATIVE)
452 #AM_CONDITIONAL(CANADIAN, test $CANADIAN = yes)
453 GLIBCXX_EVALUATE_CONDITIONALS
454
455 AC_CACHE_SAVE
456
457 if test ${multilib} = yes; then
458 multilib_arg="--enable-multilib"
459 else
460 multilib_arg=
461 fi
462
463 # Export all the install information.
464 GLIBCXX_EXPORT_INSTALL_INFO
465
466 # Export all the include and flag information to Makefiles.
467 GLIBCXX_EXPORT_INCLUDES
468 GLIBCXX_EXPORT_FLAGS
469
470 dnl In autoconf 2.5x, AC_OUTPUT is replaced by four AC_CONFIG_* macros,
471 dnl which can all be called multiple times as needed, plus one (different)
472 dnl AC_OUTPUT macro. This one lists the files to be created:
473 AC_CONFIG_FILES(Makefile)
474 AC_CONFIG_FILES([scripts/testsuite_flags],[chmod +x scripts/testsuite_flags])
475 AC_CONFIG_FILES([scripts/extract_symvers],[chmod +x scripts/extract_symvers])
476 AC_CONFIG_FILES([doc/xsl/customization.xsl])
477
478 # Multilibs need MULTISUBDIR defined correctly in certain makefiles so
479 # that multilib installs will end up installed in the correct place.
480 # The testsuite needs it for multilib-aware ABI baseline files.
481 # To work around this not being passed down from config-ml.in ->
482 # srcdir/Makefile.am -> srcdir/{src,libsupc++,...}/Makefile.am, manually
483 # append it here. Only modify Makefiles that have just been created.
484 #
485 # Also, get rid of this simulated-VPATH thing that automake does.
486 AC_CONFIG_FILES(AC_FOREACH([DIR], glibcxx_SUBDIRS, [DIR/Makefile ]),
487 [cat > vpsed$$ << \_EOF
488 s!`test -f '$<' || echo '$(srcdir)/'`!!
489 _EOF
490 sed -f vpsed$$ $ac_file > tmp$$
491 mv tmp$$ $ac_file
492 rm vpsed$$
493 echo 'MULTISUBDIR =' >> $ac_file
494 ml_norecursion=yes
495 . ${multi_basedir}/config-ml.in
496 AS_UNSET([ml_norecursion])
497 ])
498
499 AC_CONFIG_COMMANDS([generate-headers],
500 [(cd include && ${MAKE-make} pch_build= )])
501
502 dnl And this actually makes things happen:
503 AC_OUTPUT