]> git.ipfire.org Git - thirdparty/gcc.git/blame - libgfortran/configure.ac
re PR rtl-optimization/78669 (ICE: in combine_and_move_insns, at ira.c:3665 with...
[thirdparty/gcc.git] / libgfortran / configure.ac
CommitLineData
96b8a615
AJ
1# Process this file with autoconf to produce a configure script, like so:
2# aclocal && autoconf && autoheader && automake
3
df58e648 4AC_PREREQ(2.64)
0dce3ca1 5AC_INIT([GNU Fortran Runtime Library], 0.3,,[libgfortran])
96b8a615 6AC_CONFIG_HEADER(config.h)
891c05b1 7GCC_TOPLEV_SUBDIRS
96b8a615 8
96b8a615
AJ
9# -------
10# Options
11# -------
12
13AC_MSG_CHECKING([for --enable-version-specific-runtime-libs])
14AC_ARG_ENABLE(version-specific-runtime-libs,
87e6d9dc
TB
15AS_HELP_STRING([--enable-version-specific-runtime-libs],
16 [specify that runtime libraries should be installed in a compiler-specific directory]),
96b8a615
AJ
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])
23AC_MSG_RESULT($version_specific_libs)
24
b808ac33
BF
25# Build with intermodule optimisations
26AC_MSG_CHECKING([for --enable-intermodule])
27AC_ARG_ENABLE(intermodule,
87e6d9dc 28AS_HELP_STRING([--enable-intermodule],[build the library in one step]),
b808ac33
BF
29[case "$enable_intermodule" in
30 yes) onestep="-onestep";;
31 *) onestep="";;
32esac],
33[onestep=""])
34AC_MSG_RESULT($enable_intermodule)
35AM_CONDITIONAL(onestep,[test x$onestep = x-onestep])
36AC_SUBST(onestep)
96b8a615
AJ
37
38# Gets build, host, target, *_vendor, *_cpu, *_os, etc.
39#
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/.
42#
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. :-)
47#
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.
50#
51# Do not delete or change the following two lines. For why, see
52# http://gcc.gnu.org/ml/libstdc++/2003-07/msg00451.html
53AC_CANONICAL_SYSTEM
60858d8a
TB
54ACX_NONCANONICAL_TARGET
55
96b8a615 56target_alias=${target_alias-$host_alias}
60858d8a 57AC_SUBST(target_alias)
96b8a615
AJ
58
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.
679c0f9a 61# 1.9.6: minimum required version
96b8a615
AJ
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.
13917ae3 67# no-dist: we don't want 'dist' and related rules.
96b8a615
AJ
68# -Wall: turns on all automake warnings...
69# -Wno-portability: ...except this one, since GNU make is required.
13917ae3 70AM_INIT_AUTOMAKE([1.9.6 no-define foreign no-dist -Wall -Wno-portability])
96b8a615
AJ
71
72AM_MAINTAINER_MODE
73AM_ENABLE_MULTILIB(, ..)
74
75# Handy for debugging:
76#AC_MSG_NOTICE($build / $host / $target / $host_alias / $target_alias); sleep 5
77
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.
81if test "$build" != "$host"; then
82 LIBGFOR_IS_NATIVE=false
83 GCC_NO_EXECUTABLES
84else
85 LIBGFOR_IS_NATIVE=true
86fi
87
21be0a5a
JB
88AC_USE_SYSTEM_EXTENSIONS
89
96b8a615
AJ
90# Calculate toolexeclibdir
91# Also toolexecdir, though it's only used in toolexeclibdir
92case ${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)'
140e859c 98 toolexeclibdir='$(toolexecdir)/$(gcc_version)$(MULTISUBDIR)'
96b8a615
AJ
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 ;;
116esac
117AC_SUBST(toolexecdir)
118AC_SUBST(toolexeclibdir)
119
1ec601bf
FXC
120# Create a spec file, so that compile/link tests don't fail
121test -f libgfortran.spec || touch libgfortran.spec
122
60858d8a 123AC_LANG_C
96b8a615
AJ
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.
129
130m4_rename([_AC_ARG_VAR_PRECIOUS],[real_PRECIOUS])
131m4_define([_AC_ARG_VAR_PRECIOUS],[])
132AC_PROG_CC
1b3b24c2 133m4_rename_force([real_PRECIOUS],[_AC_ARG_VAR_PRECIOUS])
96b8a615 134
60858d8a
TB
135AC_SUBST(CFLAGS)
136
137AM_PROG_CC_C_O
138
17109ecb 139# Add -Wall -fno-repack-arrays -fno-underscoring if we are using GCC.
96b8a615 140if test "x$GCC" = "xyes"; then
c3e9b6ab 141 AM_FCFLAGS="-I . -Wall -Werror -fimplicit-none -fno-repack-arrays -fno-underscoring"
f7b6856f
JB
142 ## We like to use C11 and C99 routines when available. This makes
143 ## sure that
e606fb39 144 ## __STDC_VERSION__ is set such that libc includes make them available.
581d2326 145 AM_CFLAGS="-std=gnu11 -Wall -Wstrict-prototypes -Wmissing-prototypes -Wold-style-definition -Wextra -Wwrite-strings -Werror=implicit-function-declaration -Werror=vla"
d1f37bc6
RS
146 ## Compile the following tests with the same system header contents
147 ## that we'll encounter when compiling our own source files.
f7b6856f 148 CFLAGS="-std=gnu11 $CFLAGS"
96b8a615 149fi
e606fb39
AJ
150AC_SUBST(AM_FCFLAGS)
151AC_SUBST(AM_CFLAGS)
3d22e001 152AC_SUBST(CFLAGS)
96b8a615 153
c0e7e2bf
JB
154# Check for symbol versioning (copied from libssp).
155AC_MSG_CHECKING([whether symbol versioning is supported])
bf382f5f
RO
156AC_ARG_ENABLE(symvers,
157AS_HELP_STRING([--disable-symvers],
158 [disable symbol versioning for libgfortran]),
159gfortran_use_symver=$enableval,
160gfortran_use_symver=yes)
19af62db 161if test "x$gfortran_use_symver" != xno; then
bf382f5f
RO
162 save_LDFLAGS="$LDFLAGS"
163 LDFLAGS="$LDFLAGS -fPIC -shared -Wl,--version-script,./conftest.map"
164 cat > conftest.map <<EOF
c0e7e2bf
JB
165FOO_1.0 {
166 global: *foo*; bar; local: *;
167};
168EOF
bf382f5f
RO
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
49ea7a0e
RO
177FOO_1.0 {
178 global: foo; local: *;
179};
180EOF
bf382f5f
RO
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"
49ea7a0e 186fi
c0e7e2bf 187AC_MSG_RESULT($gfortran_use_symver)
49ea7a0e
RO
188AM_CONDITIONAL(LIBGFOR_USE_SYMVER, [test "x$gfortran_use_symver" != xno])
189AM_CONDITIONAL(LIBGFOR_USE_SYMVER_GNU, [test "x$gfortran_use_symver" = xgnu])
190AM_CONDITIONAL(LIBGFOR_USE_SYMVER_SUN, [test "x$gfortran_use_symver" = xsun])
c0e7e2bf 191
ee95f928
BS
192# For GPU offloading, not everything in libfortran can be supported.
193# Currently, the only target that has this problem is nvptx. The
194# following is a (partial) list of features that are unsupportable on
195# this particular target:
196# * Constructors
197# * alloca
198# * C library support for I/O, with printf as the one notable exception
199# * C library support for other features such as signal, environment
200# variables, time functions
201
202AM_CONDITIONAL(LIBGFOR_MINIMAL, [test "x${target_cpu}" = xnvptx])
203
c049309d
UW
204# Figure out whether the compiler supports "-ffunction-sections -fdata-sections",
205# similarly to how libstdc++ does it
206ac_test_CFLAGS="${CFLAGS+set}"
207ac_save_CFLAGS="$CFLAGS"
208
209# Check for -ffunction-sections -fdata-sections
210AC_MSG_CHECKING([for gcc that supports -ffunction-sections -fdata-sections])
211CFLAGS='-Werror -ffunction-sections -fdata-sections'
de15ea94 212AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[int foo;]])], [ac_fdsections=yes], [ac_fdsections=no])
c049309d
UW
213if test "$ac_test_CFLAGS" = set; then
214 CFLAGS="$ac_save_CFLAGS"
215else
216 # this is the suspicious part
217 CFLAGS=""
218fi
219if test x"$ac_fdsections" = x"yes"; then
220 SECTION_FLAGS='-ffunction-sections -fdata-sections'
221fi
222AC_MSG_RESULT($ac_fdsections)
223AC_SUBST(SECTION_FLAGS)
224
96b8a615
AJ
225# Find other programs we need.
226AC_CHECK_TOOL(AS, as)
227AC_CHECK_TOOL(AR, ar)
228AC_CHECK_TOOL(RANLIB, ranlib, ranlib-not-found-in-path-error)
229AC_PROG_MAKE_SET
230AC_PROG_INSTALL
231
232# Configure libtool
233#AC_MSG_NOTICE([====== Starting libtool configuration])
234AC_LIBTOOL_DLOPEN
235AM_PROG_LIBTOOL
7de6ba7a 236ACX_LT_HOST_FLAGS
96b8a615
AJ
237AC_SUBST(enable_shared)
238AC_SUBST(enable_static)
239#AC_MSG_NOTICE([====== Finished libtool configuration]) ; sleep 10
240
241# We need gfortran to compile parts of the library
c7a35fe9
AS
242#AC_PROG_FC(gfortran)
243FC="$GFORTRAN"
244AC_PROG_FC(gfortran)
96b8a615 245
e87045f3
AP
246# extra LD Flags which are required for targets
247case "${host}" in
248 *-darwin*)
249 # Darwin needs -single_module when linking libgfortran
250 extra_ldflags_libgfortran=-Wl,-single_module
251 ;;
252esac
253AC_SUBST(extra_ldflags_libgfortran)
254
15e92535
FXC
255# We need a working compiler at that point, otherwise give a clear
256# error message and bail out.
257LIBGFOR_WORKING_GFORTRAN
258
9cdc381b 259AC_SYS_LARGEFILE
44720bef
JB
260
261# Types
96b8a615 262AC_TYPE_OFF_T
44720bef
JB
263AC_TYPE_INTPTR_T
264AC_TYPE_UINTPTR_T
265AC_CHECK_TYPES([ptrdiff_t])
96b8a615 266
74544378
JB
267# check header files (we assume C89 is available, so don't check for that)
268AC_CHECK_HEADERS_ONCE(unistd.h sys/time.h sys/times.h sys/resource.h \
269sys/types.h sys/stat.h sys/wait.h floatingpoint.h ieeefp.h fenv.h fptrap.h \
9cbecd06 270fpxcp.h pwd.h complex.h xlocale.h)
74544378 271
4c4b3eb0 272GCC_HEADER_STDINT(gstdint.h)
96b8a615 273
74544378 274AC_CHECK_MEMBERS([struct stat.st_blksize, struct stat.st_blocks, struct stat.st_rdev])
df65f093 275
bd459d0b
JG
276case "${host}--x${with_newlib}" in
277 mips*--xyes)
278 hardwire_newlib=1;;
d3ca2257
NS
279 nvptx*--xyes)
280 hardwire_newlib=1;;
bd459d0b
JG
281esac
282
96b8a615 283# Check for library functions.
bd459d0b 284if test "${hardwire_newlib:-0}" -eq 1; then
b4005c71
SE
285 # We are being configured with a cross compiler. AC_REPLACE_FUNCS
286 # may not work correctly, because the compiler may not be able to
287 # link executables.
288 AC_DEFINE(HAVE_MKSTEMP, 1, [Define if you have mkstemp.])
289 AC_DEFINE(HAVE_STRTOF, 1, [Define if you have strtof.])
b4005c71 290 AC_DEFINE(HAVE_SNPRINTF, 1, [Define if you have snprintf.])
b4005c71
SE
291 AC_DEFINE(HAVE_VSNPRINTF, 1, [Define if you have vsnprintf.])
292 AC_DEFINE(HAVE_LOCALTIME_R, 1, [Define if you have localtime_r.])
293 AC_DEFINE(HAVE_GMTIME_R, 1, [Define if you have gmtime_r.])
ebfedee6
HPN
294 AC_DEFINE(HAVE_STRNLEN, 1, [Define if you have strnlen.])
295 AC_DEFINE(HAVE_STRNDUP, 1, [Define if you have strndup.])
cb83df66
SE
296
297 # At some point, we should differentiate between architectures
298 # like x86, which have long double versions, and alpha/powerpc/etc.,
299 # which don't. For the time being, punt.
300 if test x"long_double_math_on_this_cpu" = x"yes"; then
301 AC_DEFINE(HAVE_STRTOLD, 1, [Define if you have strtold.])
302 fi
b4005c71
SE
303else
304 AC_CHECK_FUNCS_ONCE(getrusage times mkstemp strtof strtold snprintf \
305 ftruncate chsize chdir getlogin gethostname kill link symlink sleep ttyname \
4879fba9
FXC
306 alarm access fork setmode fcntl \
307 gettimeofday stat fstat lstat getpwuid vsnprintf dup \
b4005c71 308 getcwd localtime_r gmtime_r getpwuid_r ttyname_r clock_gettime \
4879fba9 309 getgid getpid getuid geteuid umask getegid \
ad4f95e3 310 secure_getenv __secure_getenv mkostemp strnlen strndup newlocale \
9cbecd06 311 freelocale uselocale strerror_l)
b4005c71 312fi
4c0c6b9f 313
4179e59a
TB
314# Check strerror_r, cannot be above as versions with two and three arguments exist
315LIBGFOR_CHECK_STRERROR_R
316
453310d8 317# Check for C99 (and other IEEE) math functions
f38a14ca
TG
318GCC_CHECK_MATH_FUNC([acosf])
319GCC_CHECK_MATH_FUNC([acos])
320GCC_CHECK_MATH_FUNC([acosl])
321GCC_CHECK_MATH_FUNC([acoshf])
322GCC_CHECK_MATH_FUNC([acosh])
323GCC_CHECK_MATH_FUNC([acoshl])
324GCC_CHECK_MATH_FUNC([asinf])
325GCC_CHECK_MATH_FUNC([asin])
326GCC_CHECK_MATH_FUNC([asinl])
327GCC_CHECK_MATH_FUNC([asinhf])
328GCC_CHECK_MATH_FUNC([asinh])
329GCC_CHECK_MATH_FUNC([asinhl])
330GCC_CHECK_MATH_FUNC([atan2f])
331GCC_CHECK_MATH_FUNC([atan2])
332GCC_CHECK_MATH_FUNC([atan2l])
333GCC_CHECK_MATH_FUNC([atanf])
334GCC_CHECK_MATH_FUNC([atan])
335GCC_CHECK_MATH_FUNC([atanl])
336GCC_CHECK_MATH_FUNC([atanhf])
337GCC_CHECK_MATH_FUNC([atanh])
338GCC_CHECK_MATH_FUNC([atanhl])
339GCC_CHECK_MATH_FUNC([cargf])
340GCC_CHECK_MATH_FUNC([carg])
341GCC_CHECK_MATH_FUNC([cargl])
342GCC_CHECK_MATH_FUNC([ceilf])
343GCC_CHECK_MATH_FUNC([ceil])
344GCC_CHECK_MATH_FUNC([ceill])
345GCC_CHECK_MATH_FUNC([copysignf])
346GCC_CHECK_MATH_FUNC([copysign])
347GCC_CHECK_MATH_FUNC([copysignl])
348GCC_CHECK_MATH_FUNC([cosf])
349GCC_CHECK_MATH_FUNC([cos])
350GCC_CHECK_MATH_FUNC([cosl])
351GCC_CHECK_MATH_FUNC([ccosf])
352GCC_CHECK_MATH_FUNC([ccos])
353GCC_CHECK_MATH_FUNC([ccosl])
354GCC_CHECK_MATH_FUNC([coshf])
355GCC_CHECK_MATH_FUNC([cosh])
356GCC_CHECK_MATH_FUNC([coshl])
357GCC_CHECK_MATH_FUNC([ccoshf])
358GCC_CHECK_MATH_FUNC([ccosh])
359GCC_CHECK_MATH_FUNC([ccoshl])
360GCC_CHECK_MATH_FUNC([expf])
361GCC_CHECK_MATH_FUNC([exp])
362GCC_CHECK_MATH_FUNC([expl])
363GCC_CHECK_MATH_FUNC([cexpf])
364GCC_CHECK_MATH_FUNC([cexp])
365GCC_CHECK_MATH_FUNC([cexpl])
366GCC_CHECK_MATH_FUNC([fabsf])
367GCC_CHECK_MATH_FUNC([fabs])
368GCC_CHECK_MATH_FUNC([fabsl])
369GCC_CHECK_MATH_FUNC([cabsf])
370GCC_CHECK_MATH_FUNC([cabs])
371GCC_CHECK_MATH_FUNC([cabsl])
372GCC_CHECK_MATH_FUNC([floorf])
373GCC_CHECK_MATH_FUNC([floor])
374GCC_CHECK_MATH_FUNC([floorl])
375GCC_CHECK_MATH_FUNC([fmodf])
376GCC_CHECK_MATH_FUNC([fmod])
377GCC_CHECK_MATH_FUNC([fmodl])
378GCC_CHECK_MATH_FUNC([frexpf])
379GCC_CHECK_MATH_FUNC([frexp])
380GCC_CHECK_MATH_FUNC([frexpl])
381GCC_CHECK_MATH_FUNC([hypotf])
382GCC_CHECK_MATH_FUNC([hypot])
383GCC_CHECK_MATH_FUNC([hypotl])
384GCC_CHECK_MATH_FUNC([ldexpf])
385GCC_CHECK_MATH_FUNC([ldexp])
386GCC_CHECK_MATH_FUNC([ldexpl])
387GCC_CHECK_MATH_FUNC([logf])
388GCC_CHECK_MATH_FUNC([log])
389GCC_CHECK_MATH_FUNC([logl])
390GCC_CHECK_MATH_FUNC([clogf])
391GCC_CHECK_MATH_FUNC([clog])
392GCC_CHECK_MATH_FUNC([clogl])
393GCC_CHECK_MATH_FUNC([log10f])
394GCC_CHECK_MATH_FUNC([log10])
395GCC_CHECK_MATH_FUNC([log10l])
396GCC_CHECK_MATH_FUNC([clog10f])
397GCC_CHECK_MATH_FUNC([clog10])
398GCC_CHECK_MATH_FUNC([clog10l])
399GCC_CHECK_MATH_FUNC([nextafterf])
400GCC_CHECK_MATH_FUNC([nextafter])
401GCC_CHECK_MATH_FUNC([nextafterl])
402GCC_CHECK_MATH_FUNC([powf])
403GCC_CHECK_MATH_FUNC([pow])
f38a14ca
TG
404GCC_CHECK_MATH_FUNC([cpowf])
405GCC_CHECK_MATH_FUNC([cpow])
406GCC_CHECK_MATH_FUNC([cpowl])
407GCC_CHECK_MATH_FUNC([roundf])
408GCC_CHECK_MATH_FUNC([round])
409GCC_CHECK_MATH_FUNC([roundl])
410GCC_CHECK_MATH_FUNC([lroundf])
411GCC_CHECK_MATH_FUNC([lround])
412GCC_CHECK_MATH_FUNC([lroundl])
413GCC_CHECK_MATH_FUNC([llroundf])
414GCC_CHECK_MATH_FUNC([llround])
415GCC_CHECK_MATH_FUNC([llroundl])
416GCC_CHECK_MATH_FUNC([scalbnf])
417GCC_CHECK_MATH_FUNC([scalbn])
418GCC_CHECK_MATH_FUNC([scalbnl])
419GCC_CHECK_MATH_FUNC([sinf])
420GCC_CHECK_MATH_FUNC([sin])
421GCC_CHECK_MATH_FUNC([sinl])
422GCC_CHECK_MATH_FUNC([csinf])
423GCC_CHECK_MATH_FUNC([csin])
424GCC_CHECK_MATH_FUNC([csinl])
425GCC_CHECK_MATH_FUNC([sinhf])
426GCC_CHECK_MATH_FUNC([sinh])
427GCC_CHECK_MATH_FUNC([sinhl])
428GCC_CHECK_MATH_FUNC([csinhf])
429GCC_CHECK_MATH_FUNC([csinh])
430GCC_CHECK_MATH_FUNC([csinhl])
431GCC_CHECK_MATH_FUNC([sqrtf])
432GCC_CHECK_MATH_FUNC([sqrt])
433GCC_CHECK_MATH_FUNC([sqrtl])
434GCC_CHECK_MATH_FUNC([csqrtf])
435GCC_CHECK_MATH_FUNC([csqrt])
436GCC_CHECK_MATH_FUNC([csqrtl])
437GCC_CHECK_MATH_FUNC([tanf])
438GCC_CHECK_MATH_FUNC([tan])
439GCC_CHECK_MATH_FUNC([tanl])
440GCC_CHECK_MATH_FUNC([ctanf])
441GCC_CHECK_MATH_FUNC([ctan])
442GCC_CHECK_MATH_FUNC([ctanl])
443GCC_CHECK_MATH_FUNC([tanhf])
444GCC_CHECK_MATH_FUNC([tanh])
445GCC_CHECK_MATH_FUNC([tanhl])
446GCC_CHECK_MATH_FUNC([ctanhf])
447GCC_CHECK_MATH_FUNC([ctanh])
448GCC_CHECK_MATH_FUNC([ctanhl])
449GCC_CHECK_MATH_FUNC([truncf])
450GCC_CHECK_MATH_FUNC([trunc])
451GCC_CHECK_MATH_FUNC([truncl])
452GCC_CHECK_MATH_FUNC([erff])
453GCC_CHECK_MATH_FUNC([erf])
f38a14ca
TG
454GCC_CHECK_MATH_FUNC([erfcf])
455GCC_CHECK_MATH_FUNC([erfc])
456GCC_CHECK_MATH_FUNC([erfcl])
457GCC_CHECK_MATH_FUNC([j0f])
458GCC_CHECK_MATH_FUNC([j0])
f38a14ca
TG
459GCC_CHECK_MATH_FUNC([j1f])
460GCC_CHECK_MATH_FUNC([j1])
f38a14ca
TG
461GCC_CHECK_MATH_FUNC([jnf])
462GCC_CHECK_MATH_FUNC([jn])
463GCC_CHECK_MATH_FUNC([jnl])
464GCC_CHECK_MATH_FUNC([y0f])
465GCC_CHECK_MATH_FUNC([y0])
f38a14ca
TG
466GCC_CHECK_MATH_FUNC([y1f])
467GCC_CHECK_MATH_FUNC([y1])
f38a14ca
TG
468GCC_CHECK_MATH_FUNC([ynf])
469GCC_CHECK_MATH_FUNC([yn])
470GCC_CHECK_MATH_FUNC([ynl])
471GCC_CHECK_MATH_FUNC([tgamma])
472GCC_CHECK_MATH_FUNC([tgammaf])
f38a14ca
TG
473GCC_CHECK_MATH_FUNC([lgamma])
474GCC_CHECK_MATH_FUNC([lgammaf])
a2a2059f 475
db1cf15c 476# Check for GFORTRAN_C99_1.1 funcs
f38a14ca
TG
477GCC_CHECK_MATH_FUNC([cacos])
478GCC_CHECK_MATH_FUNC([cacosf])
479GCC_CHECK_MATH_FUNC([cacosh])
480GCC_CHECK_MATH_FUNC([cacoshf])
481GCC_CHECK_MATH_FUNC([cacoshl])
482GCC_CHECK_MATH_FUNC([cacosl])
483GCC_CHECK_MATH_FUNC([casin])
484GCC_CHECK_MATH_FUNC([casinf])
485GCC_CHECK_MATH_FUNC([casinh])
486GCC_CHECK_MATH_FUNC([casinhf])
487GCC_CHECK_MATH_FUNC([casinhl])
488GCC_CHECK_MATH_FUNC([casinl])
489GCC_CHECK_MATH_FUNC([catan])
490GCC_CHECK_MATH_FUNC([catanf])
491GCC_CHECK_MATH_FUNC([catanh])
492GCC_CHECK_MATH_FUNC([catanhf])
493GCC_CHECK_MATH_FUNC([catanhl])
494GCC_CHECK_MATH_FUNC([catanl])
db1cf15c 495
e097b4f1
DE
496# On AIX, clog is present in libm as __clog
497AC_CHECK_LIB([m],[__clog],[AC_DEFINE([HAVE_CLOG],[1],[libm includes clog])])
498
ad238e4f
FXC
499# Check whether the system has a working stat()
500LIBGFOR_CHECK_WORKING_STAT
501
db8092dc
FXC
502# Check whether __mingw_snprintf() is present
503LIBGFOR_CHECK_MINGW_SNPRINTF
504
87e6d9dc
TB
505# Check whether libquadmath should be used
506AC_ARG_ENABLE(libquadmath-support,
507AS_HELP_STRING([--disable-libquadmath-support],
508 [disable libquadmath support for Fortran]),
509ENABLE_LIBQUADMATH_SUPPORT=$enableval,
510ENABLE_LIBQUADMATH_SUPPORT=yes)
511enable_libquadmath_support=
512if test "${ENABLE_LIBQUADMATH_SUPPORT}" = "no" ; then
513 enable_libquadmath_support=no
514fi
515
516# Check whether we have a __float128 type, depends on enable_libquadmath_support
1ec601bf
FXC
517LIBGFOR_CHECK_FLOAT128
518
944b8b35
FXC
519# Check for GNU libc feenableexcept
520AC_CHECK_LIB([m],[feenableexcept],[have_feenableexcept=yes AC_DEFINE([HAVE_FEENABLEEXCEPT],[1],[libm includes feenableexcept])])
521
5c30094f 522# At least for glibc, clock_gettime is in librt. But don't
2aadeae2
JB
523# pull that in if it still doesn't give us the function we want. This
524# test is copied from libgomp, and modified to not link in -lrt as
525# libgfortran calls clock_gettime via a weak reference if it's found
526# in librt.
deb9dd74 527if test "$ac_cv_func_clock_gettime" = no; then
b6e7a3d1 528 AC_CHECK_LIB(rt, clock_gettime,
2aadeae2
JB
529 [AC_DEFINE(HAVE_CLOCK_GETTIME_LIBRT, 1,
530 [Define to 1 if you have the `clock_gettime' function in librt.])])
b6e7a3d1
JB
531fi
532
3b14f664
FXC
533# Check for SysV fpsetmask
534LIBGFOR_CHECK_FPSETMASK
6faf4751 535AC_CHECK_TYPES([fp_except,fp_except_t], [], [], [[
67c4c164 536#ifdef HAVE_IEEEFP_H
6faf4751 537#include <ieeefp.h>
67c4c164 538#endif
6faf4751
FXC
539#include <math.h>
540]])
541AC_CHECK_TYPES([fp_rnd,fp_rnd_t], [], [], [[
67c4c164 542#ifdef HAVE_IEEEFP_H
6faf4751 543#include <ieeefp.h>
67c4c164 544#endif
6faf4751
FXC
545#include <math.h>
546]])
3b14f664 547
8b198102
FXC
548# Check whether we have fpsetsticky or fpresetsticky
549AC_CHECK_FUNC([fpsetsticky],[have_fpsetsticky=yes AC_DEFINE([HAVE_FPSETSTICKY],[1],[fpsetsticky is present])])
550AC_CHECK_FUNC([fpresetsticky],[have_fpresetsticky=yes AC_DEFINE([HAVE_FPRESETSTICKY],[1],[fpresetsticky is present])])
551
3b14f664
FXC
552# Check for AIX fp_trap and fp_enable
553AC_CHECK_FUNC([fp_trap],[have_fp_trap=yes AC_DEFINE([HAVE_FP_TRAP],[1],[fp_trap is present])])
554AC_CHECK_FUNC([fp_enable],[have_fp_enable=yes AC_DEFINE([HAVE_FP_ENABLE],[1],[fp_enable is present])])
555
944b8b35
FXC
556# Runs configure.host to set up necessary host-dependent shell variables.
557# We then display a message about it, and propagate them through the
558# build chain.
559. ${srcdir}/configure.host
560AC_MSG_NOTICE([FPU dependent file will be ${fpu_host}.h])
8b198102 561AC_MSG_NOTICE([Support for IEEE modules: ${ieee_support}])
944b8b35
FXC
562FPU_HOST_HEADER=config/${fpu_host}.h
563AC_SUBST(FPU_HOST_HEADER)
564
8b198102
FXC
565# Whether we will build the IEEE modules
566AM_CONDITIONAL(IEEE_SUPPORT,[test x${ieee_support} = xyes])
567AC_SUBST(IEEE_SUPPORT)
568
9fc77574
KK
569# Some targets require additional compiler options for IEEE compatibility.
570IEEE_FLAGS="${ieee_flags}"
571AC_SUBST(IEEE_FLAGS)
572
23e6d4a5
JB
573
574# Check for POSIX getpwuid_r
575#
576# There are two versions of getpwuid_r, the POSIX one with 5
577# arguments, and another one with 4 arguments used by at least HP-UX
578# 10.2.
579if test "$ac_cv_func_getpwuid_r" = "yes"; then
580 AC_CACHE_CHECK([POSIX version of getpwuid_r with 5 arguments], libgfor_cv_posix_getpwuid_r, [
581 AC_LINK_IFELSE([AC_LANG_PROGRAM([
582#include <stdio.h>
583#include <sys/types.h>
584#include <pwd.h>], [
585 getpwuid_r(0, NULL, NULL, 0, NULL);
586 ])], [libgfor_cv_posix_getpwuid_r="yes"], [libgfor_cv_posix_getpwuid_r="no"])])
587fi
588if test "$libgfor_cv_posix_getpwuid_r" = "yes"; then
589 AC_DEFINE([HAVE_POSIX_GETPWUID_R], [1], [Define to 1 if we have POSIX getpwuid_r which takes 5 arguments.])
590fi
591
592
7d7b8bfe
RH
593# Check out attribute support.
594LIBGFOR_CHECK_ATTRIBUTE_VISIBILITY
7d7b8bfe
RH
595LIBGFOR_CHECK_ATTRIBUTE_ALIAS
596
5e805e44
JJ
597# Check out sync builtins support.
598LIBGFOR_CHECK_SYNC_FETCH_AND_ADD
599
6a822a74
FXC
600# Check out #pragma weak.
601LIBGFOR_GTHREAD_WEAK
602
e7854993
FXC
603# Check out weakref support.
604LIBGFOR_CHECK_WEAKREF
5e805e44 605
10c682a0
FXC
606# Various other checks on target
607LIBGFOR_CHECK_UNLINK_OPEN_FILE
608
3c127520
FXC
609# Check whether line terminator is LF or CRLF
610LIBGFOR_CHECK_CRLF
611
31cfd832
TK
612# Check whether we support AVX extensions
613LIBGFOR_CHECK_AVX
614
615# Check wether we support AVX2 extensions
616LIBGFOR_CHECK_AVX2
617
618# Check wether we support AVX512f extensions
619LIBGFOR_CHECK_AVX512F
620
96b8a615
AJ
621AC_CACHE_SAVE
622
623if test ${multilib} = yes; then
624 multilib_arg="--enable-multilib"
625else
626 multilib_arg=
627fi
628
1ec601bf
FXC
629# Write our Makefile and spec file.
630AC_CONFIG_FILES([
631Makefile
632libgfortran.spec
633])
96b8a615 634AC_OUTPUT