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