1 # Process this file with autoconf to produce a configure script, like so:
2 # aclocal && autoconf && autoheader && automake
4 AC_INIT([GCC Quad-precision Math Library], 0.1,,[libquadmath])
5 AC_CONFIG_HEADER(config.h)
7 # Gets build, host, target, *_vendor, *_cpu, *_os, etc.
9 # You will slowly go insane if you do not grok the following fact: when
10 # building this library, the top-level /target/ becomes the library's /host/.
12 # configure then causes --target to default to --host, exactly like any
13 # other package using autoconf. Therefore, 'target' and 'host' will
14 # always be the same. This makes sense both for native and cross compilers
15 # just think about it for a little while. :-)
17 # Also, if this library is being configured as part of a cross compiler, the
18 # top-level configure script will pass the "real" host as $with_cross_host.
20 # Do not delete or change the following two lines. For why, see
21 # http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
23 ACX_NONCANONICAL_TARGET
25 AM_ENABLE_MULTILIB(, ..)
27 target_alias=${target_alias-$host_alias}
28 AC_SUBST(target_alias)
30 AM_INIT_AUTOMAKE([1.9.0 foreign subdir-objects no-dist -Wall -Wno-override -Werror])
32 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
33 AC_ARG_ENABLE(version-specific-runtime-libs,
34 AS_HELP_STRING([--enable-version-specific-runtime-libs],
35 [specify that runtime libraries should be installed in a compiler-specific directory]),
37 yes) version_specific_libs=yes ;;
38 no) version_specific_libs=no ;;
39 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
41 [version_specific_libs=no])
42 AC_MSG_RESULT($version_specific_libs)
46 AC_USE_SYSTEM_EXTENSIONS
48 # See if makeinfo has been installed and is modern enough
50 ACX_CHECK_PROG_VER([MAKEINFO], [makeinfo], [--version],
51 [GNU texinfo.* \([0-9][0-9.]*\)],
52 [4.[4-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*])
53 AM_CONDITIONAL(BUILD_INFO, test $gcc_cv_prog_makeinfo_modern = "yes")
55 ACX_BUGURL([https://gcc.gnu.org/bugs/])
60 AC_SUBST(enable_shared)
61 AC_SUBST(enable_static)
62 AM_CONDITIONAL([ENABLE_DARWIN_AT_RPATH], [test x$enable_darwin_at_rpath = xyes])
67 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
68 # We must force CC to /not/ be precious variables; otherwise
69 # the wrong, non-multilib-adjusted value will be used in multilibs.
70 # As a side effect, we have to subst CFLAGS ourselves.
72 m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
73 m4_define([_AC_ARG_VAR_PRECIOUS],[])
75 m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
81 if test "x$GCC" != "xyes"; then
82 AC_MSG_ERROR([libquadmath must be built with GCC])
86 GCC_WITH_TOOLEXECLIBDIR
88 # Calculate toolexeclibdir
89 # Also toolexecdir, though it's only used in toolexeclibdir
90 case ${version_specific_libs} in
92 # Need the gcc compiler version to know where to install libraries
93 # and header files if --enable-version-specific-runtime-libs option
95 toolexecdir='$(libdir)/gcc/$(target_alias)'
96 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
99 if test -n "$with_cross_host" &&
100 test x"$with_cross_host" != x"no"; then
101 # Install a library built with a cross compiler in tooldir, not libdir.
102 toolexecdir='$(exec_prefix)/$(target_alias)'
103 case ${with_toolexeclibdir} in
105 toolexeclibdir='$(toolexecdir)/lib'
108 toolexeclibdir=${with_toolexeclibdir}
112 toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
113 toolexeclibdir='$(libdir)'
115 multi_os_directory=`$CC -print-multi-os-directory`
116 case $multi_os_directory in
117 .) ;; # Avoid trailing /.
118 *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
122 AC_SUBST(toolexecdir)
123 AC_SUBST(toolexeclibdir)
125 AC_CHECK_HEADERS(fenv.h langinfo.h locale.h wchar.h wctype.h limits.h ctype.h printf.h errno.h)
126 LIBQUAD_CHECK_MATH_H_SIGNGAM
128 # If available, sqrtl and cbrtl speed up the calculation -
129 # but they are not required
130 if test x$gcc_no_link != xyes; then
131 AC_CHECK_LIB([m],[sqrtl],[AC_DEFINE([HAVE_SQRTL],[1],[libm includes sqrtl])])
132 AC_CHECK_LIB([m],[cbrtl],[AC_DEFINE([HAVE_CBRTL],[1],[libm includes cbrtl])])
133 AC_CHECK_LIB([m],[feholdexcept],[AC_DEFINE([HAVE_FEHOLDEXCEPT],[1],[libm includes feholdexcept])])
134 AC_CHECK_LIB([m],[fesetround],[AC_DEFINE([HAVE_FESETROUND],[1],[libm includes fesetround])])
135 AC_CHECK_LIB([m],[feupdateenv],[AC_DEFINE([HAVE_FEUPDATEENV],[1],[libm includes feupdateenv])])
136 AC_CHECK_LIB([m],[fesetenv],[AC_DEFINE([HAVE_FESETENV],[1],[libm includes fesetenv])])
137 AC_CHECK_LIB([m],[fetestexcept],[AC_DEFINE([HAVE_FETESTEXCEPT],[1],[libm includes fetestexcept])])
138 AC_CHECK_FUNCS(strtoull)
140 if test "x$ac_cv_lib_m_sqrtl" = x""yes; then
141 AC_DEFINE([HAVE_SQRTL],[1],[libm includes sqrtl])
143 if test "x$ac_cv_lib_m_cbrtl" = x""yes; then
144 AC_DEFINE([HAVE_CBRTL],[1],[libm includes cbrtl])
146 if test "x$ac_cv_lib_m_feholdexcept" = x""yes; then
147 AC_DEFINE([HAVE_FEHOLDEXCEPT],[1],[libm includes feholdexcept])
149 if test "x$ac_cv_lib_m_fesetround" = x""yes; then
150 AC_DEFINE([HAVE_FESETROUND],[1],[libm includes fesetround])
152 if test "x$ac_cv_lib_m_feupdateenv" = x""yes; then
153 AC_DEFINE([HAVE_FEUPDATEENV],[1],[libm includes feupdateenv])
155 if test "x$ac_cv_lib_m_fesetenv" = x""yes; then
156 AC_DEFINE([HAVE_FESETENV],[1],[libm includes fesetenv])
158 if test "x$ac_cv_lib_m_fetestexcept" = x""yes; then
159 AC_DEFINE([HAVE_FETESTEXCEPT],[1],[libm includes fetestexcept])
163 # Check for hidden visibility (copied from libssp).
164 saved_CFLAGS="$CFLAGS"
165 CFLAGS="$CFLAGS -Werror"
166 AC_MSG_CHECKING([whether hidden visibility is supported])
168 void __attribute__((visibility ("hidden"))) bar (void) {}],,
169 [quadmath_hidden=yes],[quadmath_hidden=no])
170 AC_MSG_RESULT($quadmath_hidden)
171 if test x$quadmath_hidden = xyes; then
172 AC_DEFINE([HAVE_HIDDEN_VISIBILITY],[1],[__attribute__((visibility ("hidden"))) supported])
174 CFLAGS="$saved_CFLAGS"
176 # Check for symbol versioning (copied from libssp).
177 AC_MSG_CHECKING([whether symbol versioning is supported])
178 AC_ARG_ENABLE(symvers,
179 AS_HELP_STRING([--disable-symvers],
180 [disable symbol versioning for libquadmath]),
181 quadmath_use_symver=$enableval,
182 quadmath_use_symver=yes)
183 if test "x$quadmath_use_symver" != xno; then
184 if test x$gcc_no_link = xyes; then
185 # If we cannot link, we cannot build shared libraries, so do not use
187 quadmath_use_symver=no
189 save_LDFLAGS="$LDFLAGS"
190 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
191 cat > conftest.map <<EOF
193 global: *foo*; bar; local: *;
196 AC_TRY_LINK([int foo;],[],[quadmath_use_symver=gnu],[quadmath_use_symver=no])
197 if test x$quadmath_use_symver = xno; then
200 LDFLAGS="$save_LDFLAGS"
201 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,-M,./conftest.map"
202 # Sun ld cannot handle wildcards and treats all entries as undefined.
203 cat > conftest.map <<EOF
205 global: foo; local: *;
208 AC_TRY_LINK([int foo;],[],[quadmath_use_symver=sun],[quadmath_use_symver=no])
212 LDFLAGS="$save_LDFLAGS"
215 AC_MSG_RESULT($quadmath_use_symver)
216 AM_CONDITIONAL(LIBQUAD_USE_SYMVER, [test "x$quadmath_use_symver" != xno])
217 AM_CONDITIONAL(LIBQUAD_USE_SYMVER_GNU, [test "x$quadmath_use_symver" = xgnu])
218 AM_CONDITIONAL(LIBQUAD_USE_SYMVER_SUN, [test "x$quadmath_use_symver" = xsun])
220 AC_CACHE_CHECK([whether __float128 is supported], [libquad_cv_have_float128],
221 [GCC_TRY_COMPILE_OR_LINK([
222 #if (!defined(_ARCH_PPC)) || defined(__LONG_DOUBLE_IEEE128__)
223 typedef _Complex float __attribute__((mode(TC))) __complex128;
225 typedef _Complex float __attribute__((mode(KC))) __complex128;
228 __float128 foo (__float128 x)
237 return (__float128) z2;
240 __float128 bar (__float128 x)
242 return x * __builtin_huge_valq ();
248 libquad_cv_have_float128=yes
250 libquad_cv_have_float128=no
252 AM_CONDITIONAL(BUILD_LIBQUADMATH, [test "x$libquad_cv_have_float128" = xyes])
254 # Check for printf hook support.
255 AC_MSG_CHECKING([whether printf hooks are supported])
260 extern void flt128_va (void *, va_list *);
261 extern int flt128_ais (const struct printf_info *, size_t, int *, int *);
262 extern int flt128_printf_fp (FILE *, const struct printf_info *, const void *const *);
264 int pa_flt128 = register_printf_type (flt128_va);
265 int mod_Q = register_printf_modifier (L"Q");
266 int res = register_printf_specifier ('f', flt128_printf_fp, flt128_ais);
267 struct printf_info info = { .user = -1 };
269 [quadmath_printf_hooks=yes],[quadmath_printf_hooks=no])
270 AC_MSG_RESULT($quadmath_printf_hooks)
271 if test x$quadmath_printf_hooks = xyes; then
272 AC_DEFINE([HAVE_PRINTF_HOOKS],[1],[GNU C Library stype printf hooks supported])
275 # Check for whether locale support for quadmath_snprintf or Q printf hooks
276 # should be provided.
277 AC_MSG_CHECKING([whether nl_langinfo should be used])
278 AC_TRY_COMPILE([#include <langinfo.h>],[
280 s = nl_langinfo (DECIMAL_POINT);
281 s = nl_langinfo (MON_DECIMAL_POINT);
282 s = nl_langinfo (GROUPING);
283 s = nl_langinfo (MON_GROUPING);
284 s = nl_langinfo (THOUSANDS_SEP);
285 s = nl_langinfo (MON_THOUSANDS_SEP);
288 [quadmath_use_nl_langinfo=yes],[quadmath_use_nl_langinfo=no])
289 AC_MSG_RESULT($quadmath_use_nl_langinfo)
290 if test x$quadmath_use_nl_langinfo = xyes; then
291 AC_DEFINE([USE_NL_LANGINFO],[1],[whether nl_langinfo should be used])
294 AC_MSG_CHECKING([whether nl_langinfo should be used for wide char locale info])
295 AC_TRY_COMPILE([#include <langinfo.h>],[
297 s = nl_langinfo (_NL_NUMERIC_DECIMAL_POINT_WC);
298 s = nl_langinfo (_NL_MONETARY_DECIMAL_POINT_WC);
299 s = nl_langinfo (_NL_NUMERIC_THOUSANDS_SEP_WC);
300 s = nl_langinfo (_NL_MONETARY_THOUSANDS_SEP_WC);
303 [quadmath_use_nl_langinfo_wc=yes],[quadmath_use_nl_langinfo_wc=no])
304 AC_MSG_RESULT($quadmath_use_nl_langinfo_wc)
305 if test x$quadmath_use_nl_langinfo_wc = xyes; then
306 AC_DEFINE([USE_NL_LANGINFO_WC],[1],[whether nl_langinfo should be used for wide char locale info])
309 AC_MSG_CHECKING([whether localeconv should be used])
310 AC_TRY_COMPILE([#include <locale.h>],[
311 const struct lconv *l = localeconv ();
313 s = l->decimal_point;
314 s = l->mon_decimal_point;
317 s = l->thousands_sep;
318 s = l->mon_thousands_sep;
321 [quadmath_use_localeconv=yes],[quadmath_use_localeconv=no])
322 AC_MSG_RESULT($quadmath_use_localeconv)
323 if test x$quadmath_use_localeconv = xyes; then
324 AC_DEFINE([USE_LOCALECONV],[1],[whether localeconv should be used])
327 # Check for whether i18n number rewriting support for quadmath_snprintf
328 # or Q printf hooks should be provided.
329 AC_MSG_CHECKING([whether i18n number rewriting support for quadmath_snprintf should be added])
330 AC_TRY_COMPILE([#include <langinfo.h>
334 #include <wctype.h>],[
336 char decimal[MB_LEN_MAX];
337 wctrans_t map = wctrans ("to_outpunct");
338 wint_t wdecimal = towctrans (L'.', map);
340 memset (&state, '\0', sizeof (state));
341 wcrtomb (decimal, wdecimal, &state);
342 s = nl_langinfo (_NL_CTYPE_OUTDIGIT0_MB);
343 s = nl_langinfo (_NL_CTYPE_OUTDIGIT0_WC);
344 s = nl_langinfo (_NL_CTYPE_MB_CUR_MAX);
347 [quadmath_use_i18n_number_h=yes],[quadmath_use_i18n_number_h=no])
348 AC_MSG_RESULT($quadmath_use_i18n_number_h)
349 if test x$quadmath_use_i18n_number_h = xyes; then
350 AC_DEFINE([USE_I18N_NUMBER_H],[1],[whether i18n number rewriting can be supported])
353 # Add CET specific flags if CET is enabled
354 GCC_CET_FLAGS(CET_FLAGS)
355 XCFLAGS="$XCFLAGS $CET_FLAGS"
358 xpowerpc64le*-linux*)
360 [AC_LANG_PROGRAM([[#if __SIZEOF_LONG_DOUBLE__ != 16
361 #error long double is double
364 [XCFLAGS="$XCFLAGS -mno-gnu-attribute"])
373 if test ${multilib} = yes; then
374 multilib_arg="--enable-multilib"
380 # We would like our source tree to be readonly. However when releases or
381 # pre-releases are generated, the flex/bison generated files as well as the
382 # various formats of manuals need to be included along with the rest of the
383 # sources. Therefore we have --enable-generated-files-in-srcdir to do
385 AC_MSG_CHECKING(generated-files-in-srcdir)
386 AC_ARG_ENABLE(generated-files-in-srcdir,
387 AS_HELP_STRING([--enable-generated-files-in-srcdir],
388 [put copies of generated files in source dir intended for creating source tarballs for users without texinfo bison or flex]),
389 [case "$enableval" in
390 yes) enable_generated_files_in_srcdir=yes ;;
391 no) enable_generated_files_in_srcdir=no ;;
392 *) AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
394 [enable_generated_files_in_srcdir=no])
395 AC_MSG_RESULT($enable_generated_files_in_srcdir)
396 AM_CONDITIONAL(GENINSRC, test "$enable_generated_files_in_srcdir" = yes)
398 # Determine what GCC version number to use in filesystem paths.
401 AC_CONFIG_FILES(Makefile)