1 dnl Copyright (C) 2005-2018 Free Software Foundation, Inc.
3 dnl This file is part of GCC.
5 dnl GCC is free software; you can redistribute it and/or modify
6 dnl it under the terms of the GNU General Public License as published by
7 dnl the Free Software Foundation; either version 3, or (at your option)
10 dnl GCC is distributed in the hope that it will be useful,
11 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
12 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 dnl GNU General Public License for more details.
15 dnl You should have received a copy of the GNU General Public License
16 dnl along with GCC; see the file COPYING3. If not see
17 dnl <http://www.gnu.org/licenses/>.
19 dnl See whether we need a declaration for a function.
20 dnl The result is highly dependent on the INCLUDES passed in, so make sure
21 dnl to use a different cache variable name in this macro if it is invoked
22 dnl in a different context somewhere else.
23 dnl gcc_AC_CHECK_DECL(SYMBOL,
24 dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, INCLUDES]]])
25 AC_DEFUN([gcc_AC_CHECK_DECL],
26 [AC_MSG_CHECKING([whether $1 is declared])
27 AC_CACHE_VAL(gcc_cv_have_decl_$1,
28 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$4],
30 char *(*pfn) = (char *(*)) $1 ;
31 #endif])], eval "gcc_cv_have_decl_$1=yes", eval "gcc_cv_have_decl_$1=no")])
32 if eval "test \"`echo '$gcc_cv_have_decl_'$1`\" = yes"; then
33 AC_MSG_RESULT(yes) ; ifelse([$2], , :, [$2])
35 AC_MSG_RESULT(no) ; ifelse([$3], , :, [$3])
39 dnl Check multiple functions to see whether each needs a declaration.
40 dnl Arrange to define HAVE_DECL_<FUNCTION> to 0 or 1 as appropriate.
41 dnl gcc_AC_CHECK_DECLS(SYMBOLS,
42 dnl [ACTION-IF-NEEDED [, ACTION-IF-NOT-NEEDED [, INCLUDES]]])
43 AC_DEFUN([gcc_AC_CHECK_DECLS],
44 [AC_FOREACH([gcc_AC_Func], [$1],
45 [AH_TEMPLATE(AS_TR_CPP(HAVE_DECL_[]gcc_AC_Func),
46 [Define to 1 if we found a declaration for ']gcc_AC_Func[', otherwise
50 ac_tr_decl=AS_TR_CPP([HAVE_DECL_$ac_func])
51 gcc_AC_CHECK_DECL($ac_func,
52 [AC_DEFINE_UNQUOTED($ac_tr_decl, 1) $2],
53 [AC_DEFINE_UNQUOTED($ac_tr_decl, 0) $3],
54 dnl It is possible that the include files passed in here are local headers
55 dnl which supply a backup declaration for the relevant prototype based on
56 dnl the definition of (or lack of) the HAVE_DECL_ macro. If so, this test
57 dnl will always return success. E.g. see libiberty.h's handling of
58 dnl `basename'. To avoid this, we define the relevant HAVE_DECL_ macro to
59 dnl 1 so that any local headers used do not provide their own prototype
68 dnl 'make compare' can be significantly faster, if cmp itself can
69 dnl skip bytes instead of using tail. The test being performed is
70 dnl "if cmp --ignore-initial=2 t1 t2 && ! cmp --ignore-initial=1 t1 t2"
71 dnl but we need to sink errors and handle broken shells. We also test
72 dnl for the parameter format "cmp file1 file2 skip1 skip2" which is
73 dnl accepted by cmp on some systems.
74 AC_DEFUN([gcc_AC_PROG_CMP_IGNORE_INITIAL],
75 [AC_CACHE_CHECK([for cmp's capabilities], gcc_cv_prog_cmp_skip,
78 gcc_cv_prog_cmp_skip=slowcompare
79 if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
80 if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
83 gcc_cv_prog_cmp_skip=gnucompare
86 if test $gcc_cv_prog_cmp_skip = slowcompare ; then
87 if cmp t1 t2 2 2 > /dev/null 2>&1; then
88 if cmp t1 t2 1 1 > /dev/null 2>&1; then
91 gcc_cv_prog_cmp_skip=fastcompare
97 make_compare_target=$gcc_cv_prog_cmp_skip
98 AC_SUBST(make_compare_target)
101 dnl See if symbolic links work and if not, try to substitute either hard links or simple copy.
102 AC_DEFUN([gcc_AC_PROG_LN_S],
103 [AC_MSG_CHECKING(whether ln -s works)
104 AC_CACHE_VAL(gcc_cv_prog_LN_S,
105 [rm -f conftestdata_t
107 if ln -s conftestdata_f conftestdata_t 2>/dev/null
109 gcc_cv_prog_LN_S="ln -s"
111 if ln conftestdata_f conftestdata_t 2>/dev/null
115 if cp -p conftestdata_f conftestdata_t 2>/dev/null
117 gcc_cv_prog_LN_S="cp -p"
123 rm -f conftestdata_f conftestdata_t
125 LN_S="$gcc_cv_prog_LN_S"
126 if test "$gcc_cv_prog_LN_S" = "ln -s"; then
129 if test "$gcc_cv_prog_LN_S" = "ln"; then
130 AC_MSG_RESULT([no, using ln])
132 AC_MSG_RESULT([no, and neither does ln, so using $gcc_cv_prog_LN_S])
138 dnl Define MKDIR_TAKES_ONE_ARG if mkdir accepts only one argument instead
140 AC_DEFUN([gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG],
141 [AC_CACHE_CHECK([if mkdir takes one argument], gcc_cv_mkdir_takes_one_arg,
142 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
143 #include <sys/types.h>
144 #ifdef HAVE_SYS_STAT_H
145 # include <sys/stat.h>
152 #endif], [mkdir ("foo", 0);])],
153 gcc_cv_mkdir_takes_one_arg=no, gcc_cv_mkdir_takes_one_arg=yes)])
154 if test $gcc_cv_mkdir_takes_one_arg = yes ; then
155 AC_DEFINE(MKDIR_TAKES_ONE_ARG, 1, [Define if host mkdir takes a single argument.])
159 AC_DEFUN([gcc_AC_PROG_INSTALL],
160 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
161 # Find a good install program. We prefer a C program (faster),
162 # so one script is as good as another. But avoid the broken or
163 # incompatible versions:
164 # SysV /etc/install, /usr/sbin/install
165 # SunOS /usr/etc/install
168 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
169 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
170 # ./install, which can be erroneously created by make from ./install.sh.
171 AC_MSG_CHECKING(for a BSD compatible install)
172 if test -z "$INSTALL"; then
173 AC_CACHE_VAL(ac_cv_path_install,
174 [ IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="${IFS}:"
175 for ac_dir in $PATH; do
176 # Account for people who put trailing slashes in PATH elements.
178 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
180 # OSF1 and SCO ODT 3.0 have their own names for install.
181 for ac_prog in ginstall scoinst install; do
182 if test -f $ac_dir/$ac_prog; then
183 if test $ac_prog = install &&
184 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
185 # AIX install. It has an incompatible calling convention.
186 # OSF/1 installbsd also uses dspmsg, but is usable.
189 ac_cv_path_install="$ac_dir/$ac_prog -c"
199 if test "${ac_cv_path_install+set}" = set; then
200 INSTALL="$ac_cv_path_install"
202 # As a last resort, use the slow shell script. We don't cache a
203 # path for INSTALL within a source directory, because that will
204 # break other packages using the cache if that directory is
205 # removed, or if the path is relative.
206 INSTALL="$ac_install_sh"
209 dnl We do special magic for INSTALL instead of AC_SUBST, to get
210 dnl relative paths right.
211 AC_MSG_RESULT($INSTALL)
214 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
215 # It thinks the first close brace ends the variable substitution.
216 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
217 AC_SUBST(INSTALL_PROGRAM)dnl
219 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
220 AC_SUBST(INSTALL_DATA)dnl
223 dnl Determine if enumerated bitfields are unsigned. ISO C says they can
224 dnl be either signed or unsigned.
226 AC_DEFUN([gcc_AC_C_ENUM_BF_UNSIGNED],
227 [AC_CACHE_CHECK(for unsigned enumerated bitfields, gcc_cv_enum_bf_unsigned,
228 [AC_RUN_IFELSE([AC_LANG_SOURCE([#include <stdlib.h>
229 enum t { BLAH = 128 } ;
230 struct s_t { enum t member : 8; } s ;
234 if (s.member < 0) exit(1);
237 }])], gcc_cv_enum_bf_unsigned=yes, gcc_cv_enum_bf_unsigned=no, gcc_cv_enum_bf_unsigned=yes)])
238 if test $gcc_cv_enum_bf_unsigned = yes; then
239 AC_DEFINE(ENUM_BITFIELDS_ARE_UNSIGNED, 1,
240 [Define if enumerated bitfields are treated as unsigned values.])
243 dnl Probe number of bits in a byte.
244 dnl Note C89 requires CHAR_BIT >= 8.
246 AC_DEFUN([gcc_AC_C_CHAR_BIT],
247 [AC_CACHE_CHECK(for CHAR_BIT, gcc_cv_decl_char_bit,
249 [#ifdef HAVE_LIMITS_H
254 #endif], gcc_cv_decl_char_bit=yes, gcc_cv_decl_char_bit=no)
256 if test $gcc_cv_decl_char_bit = no; then
257 AC_CACHE_CHECK(number of bits in a byte, gcc_cv_c_nbby,
260 while test $i -lt 65; do
261 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,
263 case (unsigned char)((unsigned long)1 << $i) == ((unsigned long)1 << $i):
264 case (unsigned char)((unsigned long)1<<($i-1)) == ((unsigned long)1<<($i-1)):
266 [gcc_cv_c_nbby=$i; break])
269 test -z "$gcc_cv_c_nbby" && gcc_cv_c_nbby=failed
271 if test $gcc_cv_c_nbby = failed; then
272 AC_MSG_ERROR(cannot determine number of bits in a byte)
274 AC_DEFINE_UNQUOTED(CHAR_BIT, $gcc_cv_c_nbby,
275 [Define as the number of bits in a byte, if `limits.h' doesn't.])
279 AC_DEFUN([gcc_AC_INITFINI_ARRAY],
280 [AC_ARG_ENABLE(initfini-array,
281 [ --enable-initfini-array use .init_array/.fini_array sections],
283 AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
284 gcc_cv_initfini_array, [dnl
285 if test "x${build}" = "x${target}" && test "x${build}" = "x${host}"; then
288 AC_RUN_IFELSE([AC_LANG_SOURCE([
292 /* We turn on .preinit_array/.init_array/.fini_array support for ia64
293 if it can be used. */
295 int main (void) { return x; }
296 int foo (void) { x = 0; }
297 int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;
299 [gcc_cv_initfini_array=yes], [gcc_cv_initfini_array=no],
300 [gcc_cv_initfini_array=no]);;
302 gcc_cv_initfini_array=no
303 if test $in_tree_ld = yes ; then
304 if test "$gcc_cv_gld_major_version" -eq 2 \
305 -a "$gcc_cv_gld_minor_version" -ge 22 \
306 -o "$gcc_cv_gld_major_version" -gt 2 \
307 && test $in_tree_ld_is_elf = yes; then
308 gcc_cv_initfini_array=yes
310 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
316 i?86-*-solaris2*:no | x86_64-*-solaris2*:no)
320 sparc*-*-solaris2*:no)
326 case "$target:$gnu_ld" in
328 cat > conftest.s <<EOF
329 .section .dtors,$sh_flags,$sh_type
331 .byte 'A', 'A', 'A', 'A'
332 .section .ctors,$sh_flags,$sh_type
334 .byte 'B', 'B', 'B', 'B'
335 .section .fini_array.65530,$sh_flags,$sh_type
337 .byte 'C', 'C', 'C', 'C'
338 .section .init_array.65530,$sh_flags,$sh_type
340 .byte 'D', 'D', 'D', 'D'
341 .section .dtors.64528,$sh_flags,$sh_type
343 .byte 'E', 'E', 'E', 'E'
344 .section .ctors.64528,$sh_flags,$sh_type
346 .byte 'F', 'F', 'F', 'F'
347 .section .fini_array.01005,$sh_flags,$sh_type
349 .byte 'G', 'G', 'G', 'G'
350 .section .init_array.01005,$sh_flags,$sh_type
352 .byte 'H', 'H', 'H', 'H'
357 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
358 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1 \
359 && $gcc_cv_objdump -s -j .init_array conftest \
360 | grep HHHHFFFFDDDDBBBB > /dev/null 2>&1 \
361 && $gcc_cv_objdump -s -j .fini_array conftest \
362 | grep GGGGEEEECCCCAAAA > /dev/null 2>&1; then
363 gcc_cv_initfini_array=yes
367 # When Solaris ld added constructor priority support, it was
368 # decided to only handle .init_array.N/.fini_array.N since
369 # there was no need for backwards compatibility with
370 # .ctors.N/.dtors.N. .ctors/.dtors remain as separate
371 # sections with correct execution order resp. to
372 # .init_array/.fini_array, while gld merges them into
373 # .init_array/.fini_array.
374 cat > conftest.s <<EOF
375 .section $sh_quote.fini_array.65530$sh_quote,$sh_flags,$sh_type
377 .byte 'C', 'C', 'C', 'C'
378 .section $sh_quote.init_array.65530$sh_quote,$sh_flags,$sh_type
380 .byte 'D', 'D', 'D', 'D'
381 .section $sh_quote.fini_array.01005$sh_quote,$sh_flags,$sh_type
383 .byte 'G', 'G', 'G', 'G'
384 .section $sh_quote.init_array.01005$sh_quote,$sh_flags,$sh_type
386 .byte 'H', 'H', 'H', 'H'
391 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
392 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1 \
393 && $gcc_cv_objdump -s -j .init_array conftest \
394 | grep HHHHDDDD > /dev/null 2>&1 \
395 && $gcc_cv_objdump -s -j .fini_array conftest \
396 | grep GGGGCCCC > /dev/null 2>&1; then
397 gcc_cv_initfini_array=yes
402 rm -f conftest conftest.*
405 AC_PREPROC_IFELSE([AC_LANG_SOURCE([
407 # error Not an ELF OS
410 #if defined __GLIBC_PREREQ
411 # if __GLIBC_PREREQ (2, 4)
413 # error GLIBC 2.4 required
416 # if defined __sun__ && defined __svr4__
417 /* Solaris ld.so.1 supports .init_array/.fini_array since Solaris 8. */
419 # error The C library not known to support .init_array/.fini_array
422 ])],, [gcc_cv_initfini_array=no]);;
425 AC_MSG_CHECKING(cross compile... guessing)
426 gcc_cv_initfini_array=no
428 enable_initfini_array=$gcc_cv_initfini_array
430 AC_DEFINE_UNQUOTED(HAVE_INITFINI_ARRAY_SUPPORT,
431 [`if test $enable_initfini_array = yes; then echo 1; else echo 0; fi`],
432 [Define 0/1 if .init_array/.fini_array sections are available and working.])
435 dnl # _gcc_COMPUTE_GAS_VERSION
436 dnl # Used by gcc_GAS_VERSION_GTE_IFELSE
439 dnl # gcc_cv_as_gas_srcdir must be defined before this.
440 dnl # This gross requirement will go away eventually.
441 AC_DEFUN([_gcc_COMPUTE_GAS_VERSION],
442 [gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
443 for f in $gcc_cv_as_bfd_srcdir/configure \
444 $gcc_cv_as_gas_srcdir/configure \
445 $gcc_cv_as_gas_srcdir/configure.ac \
446 $gcc_cv_as_gas_srcdir/Makefile.in ; do
447 gcc_cv_gas_version=`sed -n -e 's/^[[ ]]*VERSION=[[^0-9A-Za-z_]]*\([[0-9]]*\.[[0-9]]*.*\)/VERSION=\1/p' < $f`
448 if test x$gcc_cv_gas_version != x; then
452 case $gcc_cv_gas_version in
454 *) AC_MSG_ERROR([[cannot find version of in-tree assembler]]);;
456 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([[0-9]]*\)"`
457 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.\([[0-9]]*\)"`
458 gcc_cv_gas_patch_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)"`
459 case $gcc_cv_gas_patch_version in
460 "") gcc_cv_gas_patch_version="0" ;;
462 gcc_cv_gas_vers=`expr \( \( $gcc_cv_gas_major_version \* 1000 \) \
463 + $gcc_cv_gas_minor_version \) \* 1000 \
464 + $gcc_cv_gas_patch_version`
465 ]) []dnl # _gcc_COMPUTE_GAS_VERSION
467 dnl # gcc_GAS_VERSION_GTE_IFELSE([elf,] major, minor, patchlevel,
468 dnl # [command_if_true = :], [command_if_false = :])
469 dnl # Check to see if the version of GAS is greater than or
470 dnl # equal to the specified version.
472 dnl # The first ifelse() shortens the shell code if the patchlevel
473 dnl # is unimportant (the usual case). The others handle missing
474 dnl # commands. Note that the tests are structured so that the most
475 dnl # common version number cases are tested first.
476 AC_DEFUN([_gcc_GAS_VERSION_GTE_IFELSE],
478 [if test $in_tree_gas_is_elf = yes \
480 [if]) test $gcc_cv_gas_vers -ge `expr \( \( $2 \* 1000 \) + $3 \) \* 1000 + $4`
482 ifelse([$5],,:,[$5])[]dnl
487 AC_DEFUN([gcc_GAS_VERSION_GTE_IFELSE],
488 [AC_REQUIRE([_gcc_COMPUTE_GAS_VERSION])dnl
489 ifelse([$1], elf, [_gcc_GAS_VERSION_GTE_IFELSE($@)],
490 [_gcc_GAS_VERSION_GTE_IFELSE(,$@)])])
493 dnl # Used by gcc_GAS_CHECK_FEATURE
495 AC_DEFUN([gcc_GAS_FLAGS],
496 [AC_CACHE_CHECK([assembler flags], gcc_cv_as_flags,
498 i[[34567]]86-*-linux*)
499 dnl Override the default, which may be incompatible.
502 x86_64-*-linux-gnux32)
503 dnl Override the default, which may be incompatible.
504 gcc_cv_as_flags=--x32
507 dnl Override the default, which may be incompatible.
511 dnl Always pass -arch ppc to assembler.
512 gcc_cv_as_flags="-arch ppc"
520 dnl gcc_GAS_CHECK_FEATURE(description, cv, [[elf,]major,minor,patchlevel],
521 dnl [extra switches to as], [assembler input],
522 dnl [extra testing logic], [command if feature available])
524 dnl Checks for an assembler feature. If we are building an in-tree
525 dnl gas, the feature is available if the associated assembler version
526 dnl is greater than or equal to major.minor.patchlevel. If not, then
527 dnl ASSEMBLER INPUT is fed to the assembler and the feature is available
528 dnl if assembly succeeds. If EXTRA TESTING LOGIC is not the empty string,
529 dnl then it is run instead of simply setting CV to "yes" - it is responsible
530 dnl for doing so, if appropriate.
531 AC_DEFUN([gcc_GAS_CHECK_FEATURE],
532 [AC_REQUIRE([gcc_GAS_FLAGS])dnl
533 AC_CACHE_CHECK([assembler for $1], [$2],
536 if test $in_tree_gas = yes; then
537 gcc_GAS_VERSION_GTE_IFELSE($3, [[$2]=yes])
538 el])if test x$gcc_cv_as != x; then
539 AS_ECHO([ifelse(m4_substr([$5],0,1),[$], "[$5]", '[$5]')]) > conftest.s
540 if AC_TRY_COMMAND([$gcc_cv_as $gcc_cv_as_flags $4 -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD])
542 ifelse([$6],, [$2]=yes, [$6])
544 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
545 cat conftest.s >&AS_MESSAGE_LOG_FD
547 rm -f conftest.o conftest.s
550 if test $[$2] = yes; then
554 if test $[$2] != yes; then
558 dnl GCC_TARGET_TEMPLATE(KEY)
559 dnl ------------------------
560 dnl Define KEY as a valid configure key on the target machine.
562 m4_define([GCC_TARGET_TEMPLATE],
563 [m4_define([GCC_TARGET_TEMPLATE($1)],[])])
565 dnl AH_TEMPLATE(KEY, DESCRIPTION)
566 dnl -----------------------------
567 dnl Issue an autoheader template for KEY, i.e., a comment composed of
568 dnl DESCRIPTION (properly wrapped), and then #undef KEY. Redefinition
569 dnl of the macro in autoheader.m4, to support definition of only a few
570 dnl keys while compiling target libraries.
572 m4_define([AH_TEMPLATE],
573 [AH_VERBATIM([$1],m4_text_wrap([$2 */], [ ], [/* ])
574 m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[#ifndef USED_FOR_TARGET
575 ])[#undef $1]m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[
579 dnl Make sure that build_exeext is looked for
580 AC_DEFUN([gcc_AC_BUILD_EXEEXT], [
581 ac_executable_extensions="$build_exeext"])
583 dnl GCC_GLIBC_VERSION_GTE_IFELSE(MAJOR, MINOR, IF-TRUE, IF-FALSE)
584 dnl -------------------------------------------------------------
585 dnl If the target glibc version ($glibc_version_major.$glibc_version_minor)
586 dnl is at least MAJOR.MINOR, call IF-TRUE, otherwise call IF-FALSE.
587 AC_DEFUN([GCC_GLIBC_VERSION_GTE_IFELSE],
589 AS_IF([test $glibc_version_major -gt $1 \
590 || ( test $glibc_version_major -eq $1 && test $glibc_version_minor -ge $2 )],