* config/rs6000/t-spe (MULTILIB_EXCEPTIONS): Allow isel without SPE.
[official-gcc.git] / libgfortran / configure.ac
blobbe4b7beba04acb3e1a0c5cd884f60ebe7b492be3
1 # Process this file with autoconf to produce a configure script, like so:
2 # aclocal && autoconf && autoheader && automake
4 AC_PREREQ(2.64)
5 AC_INIT([GNU Fortran Runtime Library], 0.3,,[libgfortran])
6 AC_CONFIG_HEADER(config.h)
7 GCC_TOPLEV_SUBDIRS
9 # -------
10 # Options
11 # -------
13 AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
14 AC_ARG_ENABLE(version-specific-runtime-libs,
15 AS_HELP_STRING([--enable-version-specific-runtime-libs],
16   [specify that runtime libraries should be installed in a compiler-specific directory]),
17 [case "$enableval" in
18  yes) version_specific_libs=yes ;;
19  no)  version_specific_libs=no ;;
20  *)   AC_MSG_ERROR([Unknown argument to enable/disable version-specific libs]);;
21  esac],
22 [version_specific_libs=no])
23 AC_MSG_RESULT($version_specific_libs)
25 # Build with intermodule optimisations
26 AC_MSG_CHECKING([for --enable-intermodule])
27 AC_ARG_ENABLE(intermodule,
28 AS_HELP_STRING([--enable-intermodule],[build the library in one step]),
29 [case "$enable_intermodule" in
30   yes) onestep="-onestep";;
31     *) onestep="";;
32 esac],
33 [onestep=""])
34 AC_MSG_RESULT($enable_intermodule)
35 AM_CONDITIONAL(onestep,[test x$onestep = x-onestep])
36 AC_SUBST(onestep)
38 # Gets build, host, target, *_vendor, *_cpu, *_os, etc.
40 # You will slowly go insane if you do not grok the following fact:  when
41 # building this library, the top-level /target/ becomes the library's /host/.
43 # configure then causes --target to default to --host, exactly like any
44 # other package using autoconf.  Therefore, 'target' and 'host' will
45 # always be the same.  This makes sense both for native and cross compilers
46 # just think about it for a little while.  :-)
48 # Also, if this library is being configured as part of a cross compiler, the
49 # top-level configure script will pass the "real" host as $with_cross_host.
51 # Do not delete or change the following two lines.  For why, see
52 # http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
53 AC_CANONICAL_SYSTEM
54 ACX_NONCANONICAL_TARGET
56 target_alias=${target_alias-$host_alias}
57 AC_SUBST(target_alias)
59 # Sets up automake.  Must come after AC_CANONICAL_SYSTEM.  Each of the
60 # following is magically included in AUTOMAKE_OPTIONS in each Makefile.am.
61 #  1.9.6:  minimum required version
62 #  no-define:  PACKAGE and VERSION will not be #define'd in config.h (a bunch
63 #              of other PACKAGE_* variables will, however, and there's nothing
64 #              we can do about that; they come from AC_INIT).
65 #  foreign:  we don't follow the normal rules for GNU packages (no COPYING
66 #            file in the top srcdir, etc, etc), so stop complaining.
67 #  no-dist:  we don't want 'dist' and related rules.
68 #  -Wall:  turns on all automake warnings...
69 #  -Wno-portability:  ...except this one, since GNU make is required.
70 AM_INIT_AUTOMAKE([1.9.6 no-define foreign no-dist -Wall -Wno-portability])
72 AM_MAINTAINER_MODE
73 AM_ENABLE_MULTILIB(, ..)
75 # Handy for debugging:
76 #AC_MSG_NOTICE($build / $host / $target / $host_alias / $target_alias); sleep 5
78 # Are we being configured with some form of cross compiler?
79 # NB: We don't actually need to know this just now, but when, say, a test
80 #     suite is included, we'll have to know.
81 if test "$build" != "$host"; then
82   LIBGFOR_IS_NATIVE=false
83   GCC_NO_EXECUTABLES
84 else
85   LIBGFOR_IS_NATIVE=true
88 AC_USE_SYSTEM_EXTENSIONS
90 # Calculate toolexeclibdir
91 # Also toolexecdir, though it's only used in toolexeclibdir
92 case ${version_specific_libs} in
93   yes)
94     # Need the gcc compiler version to know where to install libraries
95     # and header files if --enable-version-specific-runtime-libs option
96     # is selected.
97     toolexecdir='$(libdir)/gcc/$(target_alias)'
98     toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
99     ;;
100   no)
101     if test -n "$with_cross_host" &&
102        test x"$with_cross_host" != x"no"; then
103       # Install a library built with a cross compiler in tooldir, not libdir.
104       toolexecdir='$(exec_prefix)/$(target_alias)'
105       toolexeclibdir='$(toolexecdir)/lib'
106     else
107       toolexecdir='$(libdir)/gcc-lib/$(target_alias)'
108       toolexeclibdir='$(libdir)'
109     fi
110     multi_os_directory=`$CC -print-multi-os-directory`
111     case $multi_os_directory in
112       .) ;; # Avoid trailing /.
113       *) toolexeclibdir=$toolexeclibdir/$multi_os_directory ;;
114     esac
115     ;;
116 esac
117 AC_SUBST(toolexecdir)
118 AC_SUBST(toolexeclibdir)
120 # Create a spec file, so that compile/link tests don't fail
121 test -f libgfortran.spec || touch libgfortran.spec
123 AC_LANG_C
124 # Check the compiler.
125 # The same as in boehm-gc and libstdc++. Have to borrow it from there.
126 # We must force CC to /not/ be precious variables; otherwise
127 # the wrong, non-multilib-adjusted value will be used in multilibs.
128 # As a side effect, we have to subst CFLAGS ourselves.
130 m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
131 m4_define([_AC_ARG_VAR_PRECIOUS],[])
132 AC_PROG_CC
133 m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
135 AC_SUBST(CFLAGS)
137 AM_PROG_CC_C_O
139 # Add -Wall -fno-repack-arrays -fno-underscoring if we are using GCC.
140 if test "x$GCC" = "xyes"; then
141   AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring"
142   ## We like to use C11 and C99 routines when available.  This makes
143   ## sure that
144   ## __STDC_VERSION__ is set such that libc includes make them available.
145   AM_CFLAGS="-std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings"
146   ## Compile the following tests with the same system header contents
147   ## that we'll encounter when compiling our own source files.
148   CFLAGS="-std=gnu11 $CFLAGS"
150 AC_SUBST(AM_FCFLAGS)
151 AC_SUBST(AM_CFLAGS)
152 AC_SUBST(CFLAGS)
154 # Check for symbol versioning (copied from libssp).
155 AC_MSG_CHECKING([whether symbol versioning is supported])
156 AC_ARG_ENABLE(symvers,
157 AS_HELP_STRING([--disable-symvers],
158   [disable symbol versioning for libgfortran]),
159 gfortran_use_symver=$enableval,
160 gfortran_use_symver=yes)
161 if test "x$gfortran_use_symver" != xno; then
162   save_LDFLAGS="$LDFLAGS"
163   LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
164   cat > conftest.map <<EOF
165 FOO_1.0 {
166   global: *foo*; bar; local: *;
169   AC_LINK_IFELSE([AC_LANG_PROGRAM([[int foo;]],[[]])],[gfortran_use_symver=gnu],[gfortran_use_symver=no])
170   if test x$gfortran_use_symver = xno; then
171     case "$target_os" in
172       solaris2*)
173         LDFLAGS="$save_LDFLAGS"
174         LDFLAGS="$LDFLAGS -fPIC -shared -Wl,-M,./conftest.map"
175         # Sun ld cannot handle wildcards and treats all entries as undefined.
176         cat > conftest.map <<EOF
177 FOO_1.0 {
178   global: foo; local: *;
181         AC_LINK_IFELSE([AC_LANG_PROGRAM([[int foo;]],[[]])],[gfortran_use_symver=sun],[gfortran_use_symver=no])
182         ;;
183     esac
184   fi
185   LDFLAGS="$save_LDFLAGS"
187 AC_MSG_RESULT($gfortran_use_symver)
188 AM_CONDITIONAL(LIBGFOR_USE_SYMVER, [test "x$gfortran_use_symver" != xno])
189 AM_CONDITIONAL(LIBGFOR_USE_SYMVER_GNU, [test "x$gfortran_use_symver" = xgnu])
190 AM_CONDITIONAL(LIBGFOR_USE_SYMVER_SUN, [test "x$gfortran_use_symver" = xsun])
192 # Figure out whether the compiler supports "-ffunction-sections -fdata-sections",
193 # similarly to how libstdc++ does it
194 ac_test_CFLAGS="${CFLAGS+set}"
195 ac_save_CFLAGS="$CFLAGS"
197 # Check for -ffunction-sections -fdata-sections
198 AC_MSG_CHECKING([for gcc that supports -ffunction-sections -fdata-sections])
199 CFLAGS='-Werror -ffunction-sections -fdata-sections'
200 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int foo;]])], [ac_fdsections=yes], [ac_fdsections=no])
201 if test "$ac_test_CFLAGS" = set; then
202   CFLAGS="$ac_save_CFLAGS"
203 else
204   # this is the suspicious part
205   CFLAGS=""
207 if test x"$ac_fdsections" = x"yes"; then
208   SECTION_FLAGS='-ffunction-sections -fdata-sections'
210 AC_MSG_RESULT($ac_fdsections)
211 AC_SUBST(SECTION_FLAGS)
213 # Find other programs we need.
214 AC_CHECK_TOOL(AS, as)
215 AC_CHECK_TOOL(AR, ar)
216 AC_CHECK_TOOL(RANLIB, ranlib, ranlib-not-found-in-path-error)
217 AC_PROG_MAKE_SET
218 AC_PROG_INSTALL
220 # Configure libtool
221 #AC_MSG_NOTICE([====== Starting libtool configuration])
222 AC_LIBTOOL_DLOPEN
223 AM_PROG_LIBTOOL
224 ACX_LT_HOST_FLAGS
225 AC_SUBST(enable_shared)
226 AC_SUBST(enable_static)
227 #AC_MSG_NOTICE([====== Finished libtool configuration]) ; sleep 10
229 # We need gfortran to compile parts of the library
230 #AC_PROG_FC(gfortran)
231 FC="$GFORTRAN"
232 AC_PROG_FC(gfortran)
234 # extra LD Flags which are required for targets
235 case "${host}" in
236   *-darwin*)
237     # Darwin needs -single_module when linking libgfortran
238     extra_ldflags_libgfortran=-Wl,-single_module
239     ;;
240 esac
241 AC_SUBST(extra_ldflags_libgfortran)
243 # We need a working compiler at that point, otherwise give a clear
244 # error message and bail out.
245 LIBGFOR_WORKING_GFORTRAN
247 AC_SYS_LARGEFILE
249 # Types
250 AC_TYPE_OFF_T
251 AC_TYPE_INTPTR_T
252 AC_TYPE_UINTPTR_T
253 AC_CHECK_TYPES([ptrdiff_t])
255 # check header files (we assume C89 is available, so don't check for that)
256 AC_CHECK_HEADERS_ONCE(unistd.h sys/time.h sys/times.h sys/resource.h \
257 sys/types.h sys/stat.h sys/wait.h floatingpoint.h ieeefp.h fenv.h fptrap.h \
258 fpxcp.h pwd.h complex.h) 
260 GCC_HEADER_STDINT(gstdint.h)
262 AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct stat.st_rdev])
264 # Check for library functions.
265 if test "x${with_newlib}" = "xyes"; then
266    # We are being configured with a cross compiler.  AC_REPLACE_FUNCS
267    # may not work correctly, because the compiler may not be able to
268    # link executables.
269    AC_DEFINE(HAVE_MKSTEMP, 1, [Define if you have mkstemp.])
270    AC_DEFINE(HAVE_STRTOF, 1, [Define if you have strtof.])
271    AC_DEFINE(HAVE_SNPRINTF, 1, [Define if you have snprintf.])
272    AC_DEFINE(HAVE_STRCASESTR, 1, [Define if you have strcasestr.])
273    AC_DEFINE(HAVE_VSNPRINTF, 1, [Define if you have vsnprintf.])
274    AC_DEFINE(HAVE_LOCALTIME_R, 1, [Define if you have localtime_r.])
275    AC_DEFINE(HAVE_GMTIME_R, 1, [Define if you have gmtime_r.])
276    AC_DEFINE(HAVE_STRNLEN, 1, [Define if you have strnlen.])
277    AC_DEFINE(HAVE_STRNDUP, 1, [Define if you have strndup.])
279    # At some point, we should differentiate between architectures
280    # like x86, which have long double versions, and alpha/powerpc/etc.,
281    # which don't. For the time being, punt.
282    if test x"long_double_math_on_this_cpu" = x"yes"; then
283      AC_DEFINE(HAVE_STRTOLD, 1, [Define if you have strtold.])
284    fi
285 else
286    AC_CHECK_FUNCS_ONCE(getrusage times mkstemp strtof strtold snprintf \
287    ftruncate chsize chdir getlogin gethostname kill link symlink sleep ttyname \
288    alarm access fork execl wait setmode execve pipe dup2 close fcntl \
289    strcasestr getrlimit gettimeofday stat fstat lstat getpwuid vsnprintf dup \
290    getcwd localtime_r gmtime_r getpwuid_r ttyname_r clock_gettime \
291    readlink getgid getpid getppid getuid geteuid umask getegid \
292    secure_getenv __secure_getenv mkostemp strnlen strndup)
295 # Check strerror_r, cannot be above as versions with two and three arguments exist
296 LIBGFOR_CHECK_STRERROR_R
298 # Check for C99 (and other IEEE) math functions
299 GCC_CHECK_MATH_FUNC([acosf])
300 GCC_CHECK_MATH_FUNC([acos])
301 GCC_CHECK_MATH_FUNC([acosl])
302 GCC_CHECK_MATH_FUNC([acoshf])
303 GCC_CHECK_MATH_FUNC([acosh])
304 GCC_CHECK_MATH_FUNC([acoshl])
305 GCC_CHECK_MATH_FUNC([asinf])
306 GCC_CHECK_MATH_FUNC([asin])
307 GCC_CHECK_MATH_FUNC([asinl])
308 GCC_CHECK_MATH_FUNC([asinhf])
309 GCC_CHECK_MATH_FUNC([asinh])
310 GCC_CHECK_MATH_FUNC([asinhl])
311 GCC_CHECK_MATH_FUNC([atan2f])
312 GCC_CHECK_MATH_FUNC([atan2])
313 GCC_CHECK_MATH_FUNC([atan2l])
314 GCC_CHECK_MATH_FUNC([atanf])
315 GCC_CHECK_MATH_FUNC([atan])
316 GCC_CHECK_MATH_FUNC([atanl])
317 GCC_CHECK_MATH_FUNC([atanhf])
318 GCC_CHECK_MATH_FUNC([atanh])
319 GCC_CHECK_MATH_FUNC([atanhl])
320 GCC_CHECK_MATH_FUNC([cargf])
321 GCC_CHECK_MATH_FUNC([carg])
322 GCC_CHECK_MATH_FUNC([cargl])
323 GCC_CHECK_MATH_FUNC([ceilf])
324 GCC_CHECK_MATH_FUNC([ceil])
325 GCC_CHECK_MATH_FUNC([ceill])
326 GCC_CHECK_MATH_FUNC([copysignf])
327 GCC_CHECK_MATH_FUNC([copysign])
328 GCC_CHECK_MATH_FUNC([copysignl])
329 GCC_CHECK_MATH_FUNC([cosf])
330 GCC_CHECK_MATH_FUNC([cos])
331 GCC_CHECK_MATH_FUNC([cosl])
332 GCC_CHECK_MATH_FUNC([ccosf])
333 GCC_CHECK_MATH_FUNC([ccos])
334 GCC_CHECK_MATH_FUNC([ccosl])
335 GCC_CHECK_MATH_FUNC([coshf])
336 GCC_CHECK_MATH_FUNC([cosh])
337 GCC_CHECK_MATH_FUNC([coshl])
338 GCC_CHECK_MATH_FUNC([ccoshf])
339 GCC_CHECK_MATH_FUNC([ccosh])
340 GCC_CHECK_MATH_FUNC([ccoshl])
341 GCC_CHECK_MATH_FUNC([expf])
342 GCC_CHECK_MATH_FUNC([exp])
343 GCC_CHECK_MATH_FUNC([expl])
344 GCC_CHECK_MATH_FUNC([cexpf])
345 GCC_CHECK_MATH_FUNC([cexp])
346 GCC_CHECK_MATH_FUNC([cexpl])
347 GCC_CHECK_MATH_FUNC([fabsf])
348 GCC_CHECK_MATH_FUNC([fabs])
349 GCC_CHECK_MATH_FUNC([fabsl])
350 GCC_CHECK_MATH_FUNC([cabsf])
351 GCC_CHECK_MATH_FUNC([cabs])
352 GCC_CHECK_MATH_FUNC([cabsl])
353 GCC_CHECK_MATH_FUNC([floorf])
354 GCC_CHECK_MATH_FUNC([floor])
355 GCC_CHECK_MATH_FUNC([floorl])
356 GCC_CHECK_MATH_FUNC([fmodf])
357 GCC_CHECK_MATH_FUNC([fmod])
358 GCC_CHECK_MATH_FUNC([fmodl])
359 GCC_CHECK_MATH_FUNC([frexpf])
360 GCC_CHECK_MATH_FUNC([frexp])
361 GCC_CHECK_MATH_FUNC([frexpl])
362 GCC_CHECK_MATH_FUNC([hypotf])
363 GCC_CHECK_MATH_FUNC([hypot])
364 GCC_CHECK_MATH_FUNC([hypotl])
365 GCC_CHECK_MATH_FUNC([ldexpf])
366 GCC_CHECK_MATH_FUNC([ldexp])
367 GCC_CHECK_MATH_FUNC([ldexpl])
368 GCC_CHECK_MATH_FUNC([logf])
369 GCC_CHECK_MATH_FUNC([log])
370 GCC_CHECK_MATH_FUNC([logl])
371 GCC_CHECK_MATH_FUNC([clogf])
372 GCC_CHECK_MATH_FUNC([clog])
373 GCC_CHECK_MATH_FUNC([clogl])
374 GCC_CHECK_MATH_FUNC([log10f])
375 GCC_CHECK_MATH_FUNC([log10])
376 GCC_CHECK_MATH_FUNC([log10l])
377 GCC_CHECK_MATH_FUNC([clog10f])
378 GCC_CHECK_MATH_FUNC([clog10])
379 GCC_CHECK_MATH_FUNC([clog10l])
380 GCC_CHECK_MATH_FUNC([nextafterf])
381 GCC_CHECK_MATH_FUNC([nextafter])
382 GCC_CHECK_MATH_FUNC([nextafterl])
383 GCC_CHECK_MATH_FUNC([powf])
384 GCC_CHECK_MATH_FUNC([pow])
385 GCC_CHECK_MATH_FUNC([powl])
386 GCC_CHECK_MATH_FUNC([cpowf])
387 GCC_CHECK_MATH_FUNC([cpow])
388 GCC_CHECK_MATH_FUNC([cpowl])
389 GCC_CHECK_MATH_FUNC([roundf])
390 GCC_CHECK_MATH_FUNC([round])
391 GCC_CHECK_MATH_FUNC([roundl])
392 GCC_CHECK_MATH_FUNC([lroundf])
393 GCC_CHECK_MATH_FUNC([lround])
394 GCC_CHECK_MATH_FUNC([lroundl])
395 GCC_CHECK_MATH_FUNC([llroundf])
396 GCC_CHECK_MATH_FUNC([llround])
397 GCC_CHECK_MATH_FUNC([llroundl])
398 GCC_CHECK_MATH_FUNC([scalbnf])
399 GCC_CHECK_MATH_FUNC([scalbn])
400 GCC_CHECK_MATH_FUNC([scalbnl])
401 GCC_CHECK_MATH_FUNC([sinf])
402 GCC_CHECK_MATH_FUNC([sin])
403 GCC_CHECK_MATH_FUNC([sinl])
404 GCC_CHECK_MATH_FUNC([csinf])
405 GCC_CHECK_MATH_FUNC([csin])
406 GCC_CHECK_MATH_FUNC([csinl])
407 GCC_CHECK_MATH_FUNC([sinhf])
408 GCC_CHECK_MATH_FUNC([sinh])
409 GCC_CHECK_MATH_FUNC([sinhl])
410 GCC_CHECK_MATH_FUNC([csinhf])
411 GCC_CHECK_MATH_FUNC([csinh])
412 GCC_CHECK_MATH_FUNC([csinhl])
413 GCC_CHECK_MATH_FUNC([sqrtf])
414 GCC_CHECK_MATH_FUNC([sqrt])
415 GCC_CHECK_MATH_FUNC([sqrtl])
416 GCC_CHECK_MATH_FUNC([csqrtf])
417 GCC_CHECK_MATH_FUNC([csqrt])
418 GCC_CHECK_MATH_FUNC([csqrtl])
419 GCC_CHECK_MATH_FUNC([tanf])
420 GCC_CHECK_MATH_FUNC([tan])
421 GCC_CHECK_MATH_FUNC([tanl])
422 GCC_CHECK_MATH_FUNC([ctanf])
423 GCC_CHECK_MATH_FUNC([ctan])
424 GCC_CHECK_MATH_FUNC([ctanl])
425 GCC_CHECK_MATH_FUNC([tanhf])
426 GCC_CHECK_MATH_FUNC([tanh])
427 GCC_CHECK_MATH_FUNC([tanhl])
428 GCC_CHECK_MATH_FUNC([ctanhf])
429 GCC_CHECK_MATH_FUNC([ctanh])
430 GCC_CHECK_MATH_FUNC([ctanhl])
431 GCC_CHECK_MATH_FUNC([truncf])
432 GCC_CHECK_MATH_FUNC([trunc])
433 GCC_CHECK_MATH_FUNC([truncl])
434 GCC_CHECK_MATH_FUNC([erff])
435 GCC_CHECK_MATH_FUNC([erf])
436 GCC_CHECK_MATH_FUNC([erfl])
437 GCC_CHECK_MATH_FUNC([erfcf])
438 GCC_CHECK_MATH_FUNC([erfc])
439 GCC_CHECK_MATH_FUNC([erfcl])
440 GCC_CHECK_MATH_FUNC([j0f])
441 GCC_CHECK_MATH_FUNC([j0])
442 GCC_CHECK_MATH_FUNC([j0l])
443 GCC_CHECK_MATH_FUNC([j1f])
444 GCC_CHECK_MATH_FUNC([j1])
445 GCC_CHECK_MATH_FUNC([j1l])
446 GCC_CHECK_MATH_FUNC([jnf])
447 GCC_CHECK_MATH_FUNC([jn])
448 GCC_CHECK_MATH_FUNC([jnl])
449 GCC_CHECK_MATH_FUNC([y0f])
450 GCC_CHECK_MATH_FUNC([y0])
451 GCC_CHECK_MATH_FUNC([y0l])
452 GCC_CHECK_MATH_FUNC([y1f])
453 GCC_CHECK_MATH_FUNC([y1])
454 GCC_CHECK_MATH_FUNC([y1l])
455 GCC_CHECK_MATH_FUNC([ynf])
456 GCC_CHECK_MATH_FUNC([yn])
457 GCC_CHECK_MATH_FUNC([ynl])
458 GCC_CHECK_MATH_FUNC([tgamma])
459 GCC_CHECK_MATH_FUNC([tgammaf])
460 GCC_CHECK_MATH_FUNC([tgammal])
461 GCC_CHECK_MATH_FUNC([lgamma])
462 GCC_CHECK_MATH_FUNC([lgammaf])
463 GCC_CHECK_MATH_FUNC([lgammal])
465 # Check for GFORTRAN_C99_1.1 funcs
466 GCC_CHECK_MATH_FUNC([cacos])
467 GCC_CHECK_MATH_FUNC([cacosf])
468 GCC_CHECK_MATH_FUNC([cacosh])
469 GCC_CHECK_MATH_FUNC([cacoshf])
470 GCC_CHECK_MATH_FUNC([cacoshl])
471 GCC_CHECK_MATH_FUNC([cacosl])
472 GCC_CHECK_MATH_FUNC([casin])
473 GCC_CHECK_MATH_FUNC([casinf])
474 GCC_CHECK_MATH_FUNC([casinh])
475 GCC_CHECK_MATH_FUNC([casinhf])
476 GCC_CHECK_MATH_FUNC([casinhl])
477 GCC_CHECK_MATH_FUNC([casinl])
478 GCC_CHECK_MATH_FUNC([catan])
479 GCC_CHECK_MATH_FUNC([catanf])
480 GCC_CHECK_MATH_FUNC([catanh])
481 GCC_CHECK_MATH_FUNC([catanhf])
482 GCC_CHECK_MATH_FUNC([catanhl])
483 GCC_CHECK_MATH_FUNC([catanl])
485 # On AIX, clog is present in libm as __clog
486 AC_CHECK_LIB([m],[__clog],[AC_DEFINE([HAVE_CLOG],[1],[libm includes clog])])
488 # Check whether the system has a working stat()
489 LIBGFOR_CHECK_WORKING_STAT
491 # Check whether __mingw_snprintf() is present
492 LIBGFOR_CHECK_MINGW_SNPRINTF
494 # Check whether libquadmath should be used
495 AC_ARG_ENABLE(libquadmath-support,
496 AS_HELP_STRING([--disable-libquadmath-support],
497   [disable libquadmath support for Fortran]),
498 ENABLE_LIBQUADMATH_SUPPORT=$enableval,
499 ENABLE_LIBQUADMATH_SUPPORT=yes)
500 enable_libquadmath_support=
501 if test "${ENABLE_LIBQUADMATH_SUPPORT}" = "no" ; then
502   enable_libquadmath_support=no
505 # Check whether we have a __float128 type, depends on enable_libquadmath_support
506 LIBGFOR_CHECK_FLOAT128
508 # Check for GNU libc feenableexcept
509 AC_CHECK_LIB([m],[feenableexcept],[have_feenableexcept=yes AC_DEFINE([HAVE_FEENABLEEXCEPT],[1],[libm includes feenableexcept])])
511 # At least for glibc, clock_gettime is in librt.  But don't
512 # pull that in if it still doesn't give us the function we want.  This
513 # test is copied from libgomp, and modified to not link in -lrt as
514 # libgfortran calls clock_gettime via a weak reference if it's found
515 # in librt.
516 if test "$ac_cv_func_clock_gettime" = no; then
517   AC_CHECK_LIB(rt, clock_gettime,
518     [AC_DEFINE(HAVE_CLOCK_GETTIME_LIBRT, 1,
519                [Define to 1 if you have the `clock_gettime' function in librt.])])
522 # Check for SysV fpsetmask
523 LIBGFOR_CHECK_FPSETMASK
524 AC_CHECK_TYPES([fp_except,fp_except_t], [], [], [[
525 #include <ieeefp.h>
526 #include <math.h>
528 AC_CHECK_TYPES([fp_rnd,fp_rnd_t], [], [], [[
529 #include <ieeefp.h>
530 #include <math.h>
533 # Check whether we have fpsetsticky or fpresetsticky
534 AC_CHECK_FUNC([fpsetsticky],[have_fpsetsticky=yes AC_DEFINE([HAVE_FPSETSTICKY],[1],[fpsetsticky is present])])
535 AC_CHECK_FUNC([fpresetsticky],[have_fpresetsticky=yes AC_DEFINE([HAVE_FPRESETSTICKY],[1],[fpresetsticky is present])])
537 # Check for AIX fp_trap and fp_enable
538 AC_CHECK_FUNC([fp_trap],[have_fp_trap=yes AC_DEFINE([HAVE_FP_TRAP],[1],[fp_trap is present])])
539 AC_CHECK_FUNC([fp_enable],[have_fp_enable=yes AC_DEFINE([HAVE_FP_ENABLE],[1],[fp_enable is present])])
541 # Runs configure.host to set up necessary host-dependent shell variables.
542 # We then display a message about it, and propagate them through the
543 # build chain.
544 . ${srcdir}/configure.host
545 AC_MSG_NOTICE([FPU dependent file will be ${fpu_host}.h])
546 AC_MSG_NOTICE([Support for IEEE modules: ${ieee_support}])
547 FPU_HOST_HEADER=config/${fpu_host}.h
548 AC_SUBST(FPU_HOST_HEADER)
550 # Whether we will build the IEEE modules
551 AM_CONDITIONAL(IEEE_SUPPORT,[test x${ieee_support} = xyes])
552 AC_SUBST(IEEE_SUPPORT)
554 # Some targets require additional compiler options for IEEE compatibility.
555 IEEE_FLAGS="${ieee_flags}"
556 AC_SUBST(IEEE_FLAGS)
559 # Check for POSIX getpwuid_r 
561 # There are two versions of getpwuid_r, the POSIX one with 5
562 # arguments, and another one with 4 arguments used by at least HP-UX
563 # 10.2.
564 if test "$ac_cv_func_getpwuid_r" = "yes"; then
565    AC_CACHE_CHECK([POSIX version of getpwuid_r with 5 arguments], libgfor_cv_posix_getpwuid_r, [
566    AC_LINK_IFELSE([AC_LANG_PROGRAM([
567 #include <stdio.h>
568 #include <sys/types.h>
569 #include <pwd.h>], [
570     getpwuid_r(0, NULL, NULL, 0, NULL);
571     ])],  [libgfor_cv_posix_getpwuid_r="yes"], [libgfor_cv_posix_getpwuid_r="no"])])
573 if test "$libgfor_cv_posix_getpwuid_r" = "yes"; then
574     AC_DEFINE([HAVE_POSIX_GETPWUID_R], [1], [Define to 1 if we have POSIX getpwuid_r which takes 5 arguments.])
578 # Check out attribute support.
579 LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY
580 LIBGFOR_CHECK_ATTRIBUTE_DLLEXPORT
581 LIBGFOR_CHECK_ATTRIBUTE_ALIAS
583 # Check out sync builtins support.
584 LIBGFOR_CHECK_SYNC_FETCH_AND_ADD
586 # Check out #pragma weak.
587 LIBGFOR_GTHREAD_WEAK
589 # Various other checks on target
590 LIBGFOR_CHECK_UNLINK_OPEN_FILE
592 # Check whether line terminator is LF or CRLF
593 LIBGFOR_CHECK_CRLF
595 # Check whether we have _Unwind_GetIPInfo for backtrace
596 GCC_CHECK_UNWIND_GETIPINFO
598 AC_CACHE_SAVE
600 if test ${multilib} = yes; then
601   multilib_arg="--enable-multilib"
602 else
603   multilib_arg=
606 # Write our Makefile and spec file.
607 AC_CONFIG_FILES([
608 Makefile
609 libgfortran.spec
611 AC_OUTPUT