freebsd64.h: Remove duplicated entries from last commit.
[official-gcc.git] / gcc / acinclude.m4
blob84b828fe5982d3d8e125c60482c3e8a802afc51b
1 dnl Copyright (C) 2005, 2006, 2007, 2008, 2011, 2012
2 dnl Free Software Foundation, Inc.
3 dnl
4 dnl This file is part of GCC.
5 dnl
6 dnl GCC is free software; you can redistribute it and/or modify
7 dnl it under the terms of the GNU General Public License as published by
8 dnl the Free Software Foundation; either version 3, or (at your option)
9 dnl any later version.
10 dnl
11 dnl GCC is distributed in the hope that it will be useful,
12 dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
13 dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 dnl GNU General Public License for more details.
15 dnl
16 dnl You should have received a copy of the GNU General Public License
17 dnl along with GCC; see the file COPYING3.  If not see
18 dnl <http://www.gnu.org/licenses/>.
20 dnl See whether we need a declaration for a function.
21 dnl The result is highly dependent on the INCLUDES passed in, so make sure
22 dnl to use a different cache variable name in this macro if it is invoked
23 dnl in a different context somewhere else.
24 dnl gcc_AC_CHECK_DECL(SYMBOL,
25 dnl     [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, INCLUDES]]])
26 AC_DEFUN([gcc_AC_CHECK_DECL],
27 [AC_MSG_CHECKING([whether $1 is declared])
28 AC_CACHE_VAL(gcc_cv_have_decl_$1,
29 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$4],
30 [#ifndef $1
31 char *(*pfn) = (char *(*)) $1 ;
32 #endif])], eval "gcc_cv_have_decl_$1=yes", eval "gcc_cv_have_decl_$1=no")])
33 if eval "test \"`echo '$gcc_cv_have_decl_'$1`\" = yes"; then
34   AC_MSG_RESULT(yes) ; ifelse([$2], , :, [$2])
35 else
36   AC_MSG_RESULT(no) ; ifelse([$3], , :, [$3])
38 ])dnl
40 dnl Check multiple functions to see whether each needs a declaration.
41 dnl Arrange to define HAVE_DECL_<FUNCTION> to 0 or 1 as appropriate.
42 dnl gcc_AC_CHECK_DECLS(SYMBOLS,
43 dnl     [ACTION-IF-NEEDED [, ACTION-IF-NOT-NEEDED [, INCLUDES]]])
44 AC_DEFUN([gcc_AC_CHECK_DECLS],
45 [AC_FOREACH([gcc_AC_Func], [$1],
46   [AH_TEMPLATE(AS_TR_CPP(HAVE_DECL_[]gcc_AC_Func),
47   [Define to 1 if we found a declaration for ']gcc_AC_Func[', otherwise
48    define to 0.])])dnl
49 for ac_func in $1
51   ac_tr_decl=AS_TR_CPP([HAVE_DECL_$ac_func])
52 gcc_AC_CHECK_DECL($ac_func,
53   [AC_DEFINE_UNQUOTED($ac_tr_decl, 1) $2],
54   [AC_DEFINE_UNQUOTED($ac_tr_decl, 0) $3],
55 dnl It is possible that the include files passed in here are local headers
56 dnl which supply a backup declaration for the relevant prototype based on
57 dnl the definition of (or lack of) the HAVE_DECL_ macro.  If so, this test
58 dnl will always return success.  E.g. see libiberty.h's handling of
59 dnl `basename'.  To avoid this, we define the relevant HAVE_DECL_ macro to
60 dnl 1 so that any local headers used do not provide their own prototype
61 dnl during this test.
62 #undef $ac_tr_decl
63 #define $ac_tr_decl 1
64   $4
66 done
69 dnl 'make compare' can be significantly faster, if cmp itself can
70 dnl skip bytes instead of using tail.  The test being performed is
71 dnl "if cmp --ignore-initial=2 t1 t2 && ! cmp --ignore-initial=1 t1 t2"
72 dnl but we need to sink errors and handle broken shells.  We also test
73 dnl for the parameter format "cmp file1 file2 skip1 skip2" which is
74 dnl accepted by cmp on some systems.
75 AC_DEFUN([gcc_AC_PROG_CMP_IGNORE_INITIAL],
76 [AC_CACHE_CHECK([for cmp's capabilities], gcc_cv_prog_cmp_skip,
77 [ echo abfoo >t1
78   echo cdfoo >t2
79   gcc_cv_prog_cmp_skip=slowcompare
80   if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
81     if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
82       :
83     else
84       gcc_cv_prog_cmp_skip=gnucompare
85     fi
86   fi
87   if test $gcc_cv_prog_cmp_skip = slowcompare ; then
88     if cmp t1 t2 2 2 > /dev/null 2>&1; then
89       if cmp t1 t2 1 1 > /dev/null 2>&1; then
90         :
91       else
92         gcc_cv_prog_cmp_skip=fastcompare
93       fi
94     fi
95   fi
96   rm t1 t2
98 make_compare_target=$gcc_cv_prog_cmp_skip
99 AC_SUBST(make_compare_target)
102 dnl See if symbolic links work and if not, try to substitute either hard links or simple copy.
103 AC_DEFUN([gcc_AC_PROG_LN_S],
104 [AC_MSG_CHECKING(whether ln -s works)
105 AC_CACHE_VAL(gcc_cv_prog_LN_S,
106 [rm -f conftestdata_t
107 echo >conftestdata_f
108 if ln -s conftestdata_f conftestdata_t 2>/dev/null
109 then
110   gcc_cv_prog_LN_S="ln -s"
111 else
112   if ln conftestdata_f conftestdata_t 2>/dev/null
113   then
114     gcc_cv_prog_LN_S=ln
115   else
116     if cp -p conftestdata_f conftestdata_t 2>/dev/null
117     then
118       gcc_cv_prog_LN_S="cp -p"
119     else
120       gcc_cv_prog_LN_S=cp
121     fi
122   fi
124 rm -f conftestdata_f conftestdata_t
125 ])dnl
126 LN_S="$gcc_cv_prog_LN_S"
127 if test "$gcc_cv_prog_LN_S" = "ln -s"; then
128   AC_MSG_RESULT(yes)
129 else
130   if test "$gcc_cv_prog_LN_S" = "ln"; then
131     AC_MSG_RESULT([no, using ln])
132   else
133     AC_MSG_RESULT([no, and neither does ln, so using $gcc_cv_prog_LN_S])
134   fi
136 AC_SUBST(LN_S)dnl
139 dnl Define MKDIR_TAKES_ONE_ARG if mkdir accepts only one argument instead
140 dnl of the usual 2.
141 AC_DEFUN([gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG],
142 [AC_CACHE_CHECK([if mkdir takes one argument], gcc_cv_mkdir_takes_one_arg,
143 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
144 #include <sys/types.h>
145 #ifdef HAVE_SYS_STAT_H
146 # include <sys/stat.h>
147 #endif
148 #ifdef HAVE_UNISTD_H
149 # include <unistd.h>
150 #endif
151 #ifdef HAVE_DIRECT_H
152 # include <direct.h>
153 #endif], [mkdir ("foo", 0);])],
154         gcc_cv_mkdir_takes_one_arg=no, gcc_cv_mkdir_takes_one_arg=yes)])
155 if test $gcc_cv_mkdir_takes_one_arg = yes ; then
156   AC_DEFINE(MKDIR_TAKES_ONE_ARG, 1, [Define if host mkdir takes a single argument.])
160 AC_DEFUN([gcc_AC_PROG_INSTALL],
161 [AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
162 # Find a good install program.  We prefer a C program (faster),
163 # so one script is as good as another.  But avoid the broken or
164 # incompatible versions:
165 # SysV /etc/install, /usr/sbin/install
166 # SunOS /usr/etc/install
167 # IRIX /sbin/install
168 # AIX /bin/install
169 # AFS /usr/afsws/bin/install, which mishandles nonexistent args
170 # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
171 # ./install, which can be erroneously created by make from ./install.sh.
172 AC_MSG_CHECKING(for a BSD compatible install)
173 if test -z "$INSTALL"; then
174 AC_CACHE_VAL(ac_cv_path_install,
175 [  IFS="${IFS=  }"; ac_save_IFS="$IFS"; IFS="${IFS}:"
176   for ac_dir in $PATH; do
177     # Account for people who put trailing slashes in PATH elements.
178     case "$ac_dir/" in
179     /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
180     *)
181       # OSF1 and SCO ODT 3.0 have their own names for install.
182       for ac_prog in ginstall scoinst install; do
183         if test -f $ac_dir/$ac_prog; then
184           if test $ac_prog = install &&
185             grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
186             # AIX install.  It has an incompatible calling convention.
187             # OSF/1 installbsd also uses dspmsg, but is usable.
188             :
189           else
190             ac_cv_path_install="$ac_dir/$ac_prog -c"
191             break 2
192           fi
193         fi
194       done
195       ;;
196     esac
197   done
198   IFS="$ac_save_IFS"
199 ])dnl
200   if test "${ac_cv_path_install+set}" = set; then
201     INSTALL="$ac_cv_path_install"
202   else
203     # As a last resort, use the slow shell script.  We don't cache a
204     # path for INSTALL within a source directory, because that will
205     # break other packages using the cache if that directory is
206     # removed, or if the path is relative.
207     INSTALL="$ac_install_sh"
208   fi
210 dnl We do special magic for INSTALL instead of AC_SUBST, to get
211 dnl relative paths right.
212 AC_MSG_RESULT($INSTALL)
213 AC_SUBST(INSTALL)dnl
215 # Use test -z because SunOS4 sh mishandles braces in ${var-val}.
216 # It thinks the first close brace ends the variable substitution.
217 test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
218 AC_SUBST(INSTALL_PROGRAM)dnl
220 test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
221 AC_SUBST(INSTALL_DATA)dnl
224 # mmap(2) blacklisting.  Some platforms provide the mmap library routine
225 # but don't support all of the features we need from it.
226 AC_DEFUN([gcc_AC_FUNC_MMAP_BLACKLIST],
228 AC_CHECK_HEADER([sys/mman.h],
229                 [gcc_header_sys_mman_h=yes], [gcc_header_sys_mman_h=no])
230 AC_CHECK_FUNC([mmap], [gcc_func_mmap=yes], [gcc_func_mmap=no])
231 if test "$gcc_header_sys_mman_h" != yes \
232  || test "$gcc_func_mmap" != yes; then
233    gcc_cv_func_mmap_file=no
234    gcc_cv_func_mmap_dev_zero=no
235    gcc_cv_func_mmap_anon=no
236 else
237    AC_CACHE_CHECK([whether read-only mmap of a plain file works], 
238   gcc_cv_func_mmap_file,
239   [# Add a system to this blacklist if 
240    # mmap(0, stat_size, PROT_READ, MAP_PRIVATE, fd, 0) doesn't return a
241    # memory area containing the same data that you'd get if you applied
242    # read() to the same fd.  The only system known to have a problem here
243    # is VMS, where text files have record structure.
244    case "$host_os" in
245      vms* | ultrix*) 
246         gcc_cv_func_mmap_file=no ;;
247      *)
248         gcc_cv_func_mmap_file=yes;;
249    esac])
250    AC_CACHE_CHECK([whether mmap from /dev/zero works],
251   gcc_cv_func_mmap_dev_zero,
252   [# Add a system to this blacklist if it has mmap() but /dev/zero
253    # does not exist, or if mmapping /dev/zero does not give anonymous
254    # zeroed pages with both the following properties:
255    # 1. If you map N consecutive pages in with one call, and then
256    #    unmap any subset of those pages, the pages that were not
257    #    explicitly unmapped remain accessible.
258    # 2. If you map two adjacent blocks of memory and then unmap them
259    #    both at once, they must both go away.
260    # Systems known to be in this category are Windows (all variants),
261    # VMS, and Darwin.
262    case "$host_os" in
263      vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00)
264         gcc_cv_func_mmap_dev_zero=no ;;
265      *)
266         gcc_cv_func_mmap_dev_zero=yes;;
267    esac])
269    # Unlike /dev/zero, the MAP_ANON(YMOUS) defines can be probed for.
270    AC_CACHE_CHECK([for MAP_ANON(YMOUS)], gcc_cv_decl_map_anon,
271     [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
272 [#include <sys/types.h>
273 #include <sys/mman.h>
274 #include <unistd.h>
276 #ifndef MAP_ANONYMOUS
277 #define MAP_ANONYMOUS MAP_ANON
278 #endif
280 [int n = MAP_ANONYMOUS;])],
281     gcc_cv_decl_map_anon=yes,
282     gcc_cv_decl_map_anon=no)])
284    if test $gcc_cv_decl_map_anon = no; then
285      gcc_cv_func_mmap_anon=no
286    else
287      AC_CACHE_CHECK([whether mmap with MAP_ANON(YMOUS) works],
288      gcc_cv_func_mmap_anon,
289   [# Add a system to this blacklist if it has mmap() and MAP_ANON or
290    # MAP_ANONYMOUS, but using mmap(..., MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
291    # doesn't give anonymous zeroed pages with the same properties listed
292    # above for use of /dev/zero.
293    # Systems known to be in this category are Windows, VMS, and SCO Unix.
294    case "$host_os" in
295      vms* | cygwin* | pe | mingw* | sco* | udk* )
296         gcc_cv_func_mmap_anon=no ;;
297      *)
298         gcc_cv_func_mmap_anon=yes;;
299    esac])
300    fi
303 if test $gcc_cv_func_mmap_file = yes; then
304   AC_DEFINE(HAVE_MMAP_FILE, 1,
305             [Define if read-only mmap of a plain file works.])
307 if test $gcc_cv_func_mmap_dev_zero = yes; then
308   AC_DEFINE(HAVE_MMAP_DEV_ZERO, 1,
309             [Define if mmap of /dev/zero works.])
311 if test $gcc_cv_func_mmap_anon = yes; then
312   AC_DEFINE(HAVE_MMAP_ANON, 1,
313             [Define if mmap with MAP_ANON(YMOUS) works.])
317 dnl Determine if enumerated bitfields are unsigned.   ISO C says they can 
318 dnl be either signed or unsigned.
320 AC_DEFUN([gcc_AC_C_ENUM_BF_UNSIGNED],
321 [AC_CACHE_CHECK(for unsigned enumerated bitfields, gcc_cv_enum_bf_unsigned,
322 [AC_RUN_IFELSE([AC_LANG_SOURCE([#include <stdlib.h>
323 enum t { BLAH = 128 } ;
324 struct s_t { enum t member : 8; } s ;
325 int main(void)
326 {            
327         s.member = BLAH;
328         if (s.member < 0) exit(1);
329         exit(0);
331 }])], gcc_cv_enum_bf_unsigned=yes, gcc_cv_enum_bf_unsigned=no, gcc_cv_enum_bf_unsigned=yes)])
332 if test $gcc_cv_enum_bf_unsigned = yes; then
333   AC_DEFINE(ENUM_BITFIELDS_ARE_UNSIGNED, 1,
334     [Define if enumerated bitfields are treated as unsigned values.])
335 fi])
337 dnl Probe number of bits in a byte.
338 dnl Note C89 requires CHAR_BIT >= 8.
340 AC_DEFUN([gcc_AC_C_CHAR_BIT],
341 [AC_CACHE_CHECK(for CHAR_BIT, gcc_cv_decl_char_bit,
342 [AC_EGREP_CPP(found,
343 [#ifdef HAVE_LIMITS_H
344 #include <limits.h>
345 #endif
346 #ifdef CHAR_BIT
347 found
348 #endif], gcc_cv_decl_char_bit=yes, gcc_cv_decl_char_bit=no)
350 if test $gcc_cv_decl_char_bit = no; then
351   AC_CACHE_CHECK(number of bits in a byte, gcc_cv_c_nbby,
352 [i=8
353  gcc_cv_c_nbby=
354  while test $i -lt 65; do
355    AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,
356      [switch(0) {
357   case (unsigned char)((unsigned long)1 << $i) == ((unsigned long)1 << $i):
358   case (unsigned char)((unsigned long)1<<($i-1)) == ((unsigned long)1<<($i-1)):
359   ; }])],
360      [gcc_cv_c_nbby=$i; break])
361    i=`expr $i + 1`
362  done
363  test -z "$gcc_cv_c_nbby" && gcc_cv_c_nbby=failed
365 if test $gcc_cv_c_nbby = failed; then
366   AC_MSG_ERROR(cannot determine number of bits in a byte)
367 else
368   AC_DEFINE_UNQUOTED(CHAR_BIT, $gcc_cv_c_nbby,
369   [Define as the number of bits in a byte, if `limits.h' doesn't.])
371 fi])
373 AC_DEFUN([gcc_AC_INITFINI_ARRAY],
374 [AC_REQUIRE([gcc_SUN_LD_VERSION])dnl
375 AC_ARG_ENABLE(initfini-array,
376         [  --enable-initfini-array      use .init_array/.fini_array sections],
377         [], [
378 AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
379                  gcc_cv_initfini_array, [dnl
380   if test "x${build}" = "x${target}" && test "x${build}" = "x${host}"; then
381     case "${target}" in
382       ia64-*)
383         AC_RUN_IFELSE([AC_LANG_SOURCE([
384 #ifndef __ELF__
385 #error Not an ELF OS
386 #endif
387 /* We turn on .preinit_array/.init_array/.fini_array support for ia64
388    if it can be used.  */
389 static int x = -1;
390 int main (void) { return x; }
391 int foo (void) { x = 0; }
392 int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;
393 ])],
394              [gcc_cv_initfini_array=yes], [gcc_cv_initfini_array=no],
395              [gcc_cv_initfini_array=no]);;
396       *)
397         gcc_cv_initfini_array=no
398         if test $in_tree_ld = yes ; then
399           if test "$gcc_cv_gld_major_version" -eq 2 \
400              -a "$gcc_cv_gld_minor_version" -ge 22 \
401              -o "$gcc_cv_gld_major_version" -gt 2 \
402              && test $in_tree_ld_is_elf = yes; then
403             gcc_cv_initfini_array=yes
404           fi
405         elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
406           cat > conftest.s <<\EOF
407 .section .dtors,"a",%progbits
408 .balign 4
409 .byte 'A', 'A', 'A', 'A'
410 .section .ctors,"a",%progbits
411 .balign 4
412 .byte 'B', 'B', 'B', 'B'
413 .section .fini_array.65530,"a",%progbits
414 .balign 4
415 .byte 'C', 'C', 'C', 'C'
416 .section .init_array.65530,"a",%progbits
417 .balign 4
418 .byte 'D', 'D', 'D', 'D'
419 .section .dtors.64528,"a",%progbits
420 .balign 4
421 .byte 'E', 'E', 'E', 'E'
422 .section .ctors.64528,"a",%progbits
423 .balign 4
424 .byte 'F', 'F', 'F', 'F'
425 .section .fini_array.01005,"a",%progbits
426 .balign 4
427 .byte 'G', 'G', 'G', 'G'
428 .section .init_array.01005,"a",%progbits
429 .balign 4
430 .byte 'H', 'H', 'H', 'H'
431 .text
432 .globl _start
433 _start:
435           if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
436              && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1 \
437              && $gcc_cv_objdump -s -j .init_array conftest \
438                 | grep HHHHFFFFDDDDBBBB > /dev/null 2>&1 \
439              && $gcc_cv_objdump -s -j .fini_array conftest \
440                 | grep GGGGEEEECCCCAAAA > /dev/null 2>&1; then
441             gcc_cv_initfini_array=yes
442           fi
443 changequote(,)dnl
444           rm -f conftest conftest.*
445 changequote([,])dnl
446         fi
447         AC_PREPROC_IFELSE([AC_LANG_SOURCE([
448 #ifndef __ELF__
449 # error Not an ELF OS
450 #endif
451 #include <stdlib.h>
452 #if defined __GLIBC_PREREQ
453 # if __GLIBC_PREREQ (2, 4)
454 # else
455 #  error GLIBC 2.4 required
456 # endif
457 #else
458 # if defined __sun__ && defined __svr4__
459    /* Solaris ld.so.1 supports .init_array/.fini_array since Solaris 8.  */
460 # else
461 #  error The C library not known to support .init_array/.fini_array
462 # endif
463 #endif
464 ])],, [gcc_cv_initfini_array=no]);;
465     esac
466   else
467     AC_MSG_CHECKING(cross compile... guessing)
468     gcc_cv_initfini_array=no
469   fi])
470   enable_initfini_array=$gcc_cv_initfini_array
472 if test $enable_initfini_array = yes; then
473   AC_DEFINE(HAVE_INITFINI_ARRAY_SUPPORT, 1,
474     [Define .init_array/.fini_array sections are available and working.])
475 fi])
477 dnl # _gcc_COMPUTE_GAS_VERSION
478 dnl # Used by gcc_GAS_VERSION_GTE_IFELSE
479 dnl #
480 dnl # WARNING:
481 dnl # gcc_cv_as_gas_srcdir must be defined before this.
482 dnl # This gross requirement will go away eventually.
483 AC_DEFUN([_gcc_COMPUTE_GAS_VERSION],
484 [gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
485 for f in $gcc_cv_as_bfd_srcdir/configure \
486          $gcc_cv_as_gas_srcdir/configure \
487          $gcc_cv_as_gas_srcdir/configure.in \
488          $gcc_cv_as_gas_srcdir/Makefile.in ; do
489   gcc_cv_gas_version=`sed -n -e 's/^[[  ]]*\(VERSION=[[0-9]]*\.[[0-9]]*.*\)/\1/p' < $f`
490   if test x$gcc_cv_gas_version != x; then
491     break
492   fi
493 done
494 gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([[0-9]]*\)"`
495 gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.\([[0-9]]*\)"`
496 gcc_cv_gas_patch_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)"`
497 case $gcc_cv_gas_patch_version in
498   "") gcc_cv_gas_patch_version="0" ;;
499 esac
500 gcc_cv_gas_vers=`expr \( \( $gcc_cv_gas_major_version \* 1000 \) \
501                             + $gcc_cv_gas_minor_version \) \* 1000 \
502                             + $gcc_cv_gas_patch_version`
503 ]) []dnl # _gcc_COMPUTE_GAS_VERSION
505 dnl # gcc_GAS_VERSION_GTE_IFELSE([elf,] major, minor, patchlevel,
506 dnl #                     [command_if_true = :], [command_if_false = :])
507 dnl # Check to see if the version of GAS is greater than or
508 dnl # equal to the specified version.
509 dnl #
510 dnl # The first ifelse() shortens the shell code if the patchlevel
511 dnl # is unimportant (the usual case).  The others handle missing
512 dnl # commands.  Note that the tests are structured so that the most
513 dnl # common version number cases are tested first.
514 AC_DEFUN([_gcc_GAS_VERSION_GTE_IFELSE],
515 [ifelse([$1], elf,
516  [if test $in_tree_gas_is_elf = yes \
517   &&],
518  [if]) test $gcc_cv_gas_vers -ge `expr \( \( $2 \* 1000 \) + $3 \) \* 1000 + $4`
519   then dnl
520 ifelse([$5],,:,[$5])[]dnl
521 ifelse([$6],,,[
522   else $6])
523 fi])
525 AC_DEFUN([gcc_GAS_VERSION_GTE_IFELSE],
526 [AC_REQUIRE([_gcc_COMPUTE_GAS_VERSION])dnl
527 ifelse([$1], elf, [_gcc_GAS_VERSION_GTE_IFELSE($@)],
528                   [_gcc_GAS_VERSION_GTE_IFELSE(,$@)])])
530 dnl # gcc_GAS_FLAGS
531 dnl # Used by gcc_GAS_CHECK_FEATURE 
532 dnl #
533 AC_DEFUN([gcc_GAS_FLAGS],
534 [AC_CACHE_CHECK([assembler flags], gcc_cv_as_flags,
535 [ case "$target" in
536   i[[34567]]86-*-linux*)
537     dnl Always pass --32 to ia32 Linux assembler.
538     gcc_cv_as_flags="--32"
539     ;;
540   powerpc*-*-darwin*)
541     dnl Always pass -arch ppc to assembler.
542     gcc_cv_as_flags="-arch ppc"
543     ;;
544   *)
545     gcc_cv_as_flags=" "
546     ;;
547   esac])
550 dnl gcc_GAS_CHECK_FEATURE(description, cv, [[elf,]major,minor,patchlevel],
551 dnl [extra switches to as], [assembler input],
552 dnl [extra testing logic], [command if feature available])
554 dnl Checks for an assembler feature.  If we are building an in-tree
555 dnl gas, the feature is available if the associated assembler version
556 dnl is greater than or equal to major.minor.patchlevel.  If not, then
557 dnl ASSEMBLER INPUT is fed to the assembler and the feature is available
558 dnl if assembly succeeds.  If EXTRA TESTING LOGIC is not the empty string,
559 dnl then it is run instead of simply setting CV to "yes" - it is responsible
560 dnl for doing so, if appropriate.
561 AC_DEFUN([gcc_GAS_CHECK_FEATURE],
562 [AC_REQUIRE([gcc_GAS_FLAGS])dnl
563 AC_CACHE_CHECK([assembler for $1], [$2],
564  [[$2]=no
565   ifelse([$3],,,[dnl
566   if test $in_tree_gas = yes; then
567     gcc_GAS_VERSION_GTE_IFELSE($3, [[$2]=yes])
568   el])if test x$gcc_cv_as != x; then
569     AS_ECHO([ifelse(m4_substr([$5],0,1),[$], "[$5]", '[$5]')]) > conftest.s
570     if AC_TRY_COMMAND([$gcc_cv_as $gcc_cv_as_flags $4 -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD])
571     then
572         ifelse([$6],, [$2]=yes, [$6])
573     else
574       echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
575       cat conftest.s >&AS_MESSAGE_LOG_FD
576     fi
577     rm -f conftest.o conftest.s
578   fi])
579 ifelse([$7],,,[dnl
580 if test $[$2] = yes; then
581   $7
582 fi])])
584 dnl gcc_SUN_LD_VERSION
586 dnl Determines Sun linker version numbers, setting gcc_cv_sun_ld_vers to
587 dnl the complete version number and gcc_cv_sun_ld_vers_{major, minor} to
588 dnl the corresponding fields.
590 dnl ld and ld.so.1 are guaranteed to be updated in lockstep, so ld version
591 dnl numbers can be used in ld.so.1 feature checks even if a different
592 dnl linker is configured.
594 AC_DEFUN([gcc_SUN_LD_VERSION],
595 [changequote(,)dnl
596 if test "x${build}" = "x${target}" && test "x${build}" = "x${host}"; then
597   case "${target}" in
598     *-*-solaris2*)
599       #
600       # Solaris 2 ld -V output looks like this for a regular version:
601       #
602       # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1699
603       #
604       # but test versions add stuff at the end:
605       #
606       # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1701:onnv-ab196087-6931056-03/25/10
607       #
608       gcc_cv_sun_ld_ver=`/usr/ccs/bin/ld -V 2>&1`
609       if echo "$gcc_cv_sun_ld_ver" | grep 'Solaris Link Editors' > /dev/null; then
610         gcc_cv_sun_ld_vers=`echo $gcc_cv_sun_ld_ver | sed -n \
611           -e 's,^.*: 5\.[0-9][0-9]*-\([0-9]\.[0-9][0-9]*\).*$,\1,p'`
612         gcc_cv_sun_ld_vers_major=`expr "$gcc_cv_sun_ld_vers" : '\([0-9]*\)'`
613         gcc_cv_sun_ld_vers_minor=`expr "$gcc_cv_sun_ld_vers" : '[0-9]*\.\([0-9]*\)'`
614       fi
615       ;;
616   esac
618 changequote([,])dnl
621 dnl GCC_TARGET_TEMPLATE(KEY)
622 dnl ------------------------
623 dnl Define KEY as a valid configure key on the target machine.
625 m4_define([GCC_TARGET_TEMPLATE],
626 [m4_define([GCC_TARGET_TEMPLATE($1)],[])])
628 dnl AH_TEMPLATE(KEY, DESCRIPTION)
629 dnl -----------------------------
630 dnl Issue an autoheader template for KEY, i.e., a comment composed of
631 dnl DESCRIPTION (properly wrapped), and then #undef KEY.  Redefinition
632 dnl of the macro in autoheader.m4, to support definition of only a few
633 dnl keys while compiling target libraries.
635 m4_define([AH_TEMPLATE],
636 [AH_VERBATIM([$1],m4_text_wrap([$2 */], [   ], [/* ])
637 m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[#ifndef USED_FOR_TARGET
638 ])[#undef $1]m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[
639 #endif
640 ]))])
642 dnl Make sure that build_exeext is looked for
643 AC_DEFUN([gcc_AC_BUILD_EXEEXT], [
644 ac_executable_extensions="$build_exeext"])