]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/aclocal.m4
* config/m32c/m32c.h (TRAMPOLINE_ALIGNMENT): Correct misspelling
[thirdparty/gcc.git] / gcc / aclocal.m4
CommitLineData
f1e2cb7b 1m4_include([../config/acx.m4])
2m4_include([../config/gettext-sister.m4])
f1e2cb7b 3m4_include([../config/iconv.m4])
4m4_include([../config/lcmessage.m4])
5m4_include([../config/lib-ld.m4])
6m4_include([../config/lib-link.m4])
7m4_include([../config/lib-prefix.m4])
8m4_include([../config/progtest.m4])
805e22b2 9
a8e7eda3 10dnl See whether we need a declaration for a function.
3c014a93 11dnl The result is highly dependent on the INCLUDES passed in, so make sure
12dnl to use a different cache variable name in this macro if it is invoked
13dnl in a different context somewhere else.
07c927cb 14dnl gcc_AC_CHECK_DECL(SYMBOL,
15dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND [, INCLUDES]]])
e7c11f53 16AC_DEFUN([gcc_AC_CHECK_DECL],
07c927cb 17[AC_MSG_CHECKING([whether $1 is declared])
18AC_CACHE_VAL(gcc_cv_have_decl_$1,
11e66330 19[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([$4],
3c014a93 20[#ifndef $1
21char *(*pfn) = (char *(*)) $1 ;
11e66330 22#endif])], eval "gcc_cv_have_decl_$1=yes", eval "gcc_cv_have_decl_$1=no")])
07c927cb 23if eval "test \"`echo '$gcc_cv_have_decl_'$1`\" = yes"; then
24 AC_MSG_RESULT(yes) ; ifelse([$2], , :, [$2])
4211624c 25else
07c927cb 26 AC_MSG_RESULT(no) ; ifelse([$3], , :, [$3])
a8e7eda3 27fi
28])dnl
ea4a6c81 29
4211624c 30dnl Check multiple functions to see whether each needs a declaration.
07c927cb 31dnl Arrange to define HAVE_DECL_<FUNCTION> to 0 or 1 as appropriate.
32dnl gcc_AC_CHECK_DECLS(SYMBOLS,
33dnl [ACTION-IF-NEEDED [, ACTION-IF-NOT-NEEDED [, INCLUDES]]])
e7c11f53 34AC_DEFUN([gcc_AC_CHECK_DECLS],
599a3eac 35[AC_FOREACH([gcc_AC_Func], [$1],
36 [AH_TEMPLATE(AS_TR_CPP(HAVE_DECL_[]gcc_AC_Func),
37 [Define to 1 if we found a declaration for ']gcc_AC_Func[', otherwise
38 define to 0.])])dnl
39for ac_func in $1
4211624c 40do
599a3eac 41 ac_tr_decl=AS_TR_CPP([HAVE_DECL_$ac_func])
07c927cb 42gcc_AC_CHECK_DECL($ac_func,
43 [AC_DEFINE_UNQUOTED($ac_tr_decl, 1) $2],
44 [AC_DEFINE_UNQUOTED($ac_tr_decl, 0) $3],
344c569e 45dnl It is possible that the include files passed in here are local headers
46dnl which supply a backup declaration for the relevant prototype based on
47dnl the definition of (or lack of) the HAVE_DECL_ macro. If so, this test
48dnl will always return success. E.g. see libiberty.h's handling of
49dnl `basename'. To avoid this, we define the relevant HAVE_DECL_ macro to
50dnl 1 so that any local headers used do not provide their own prototype
51dnl during this test.
52#undef $ac_tr_decl
53#define $ac_tr_decl 1
07c927cb 54 $4
55)
4211624c 56done
57])
58
8fea036f 59dnl 'make compare' can be significantly faster, if cmp itself can
60dnl skip bytes instead of using tail. The test being performed is
61dnl "if cmp --ignore-initial=2 t1 t2 && ! cmp --ignore-initial=1 t1 t2"
a918b4b1 62dnl but we need to sink errors and handle broken shells. We also test
63dnl for the parameter format "cmp file1 file2 skip1 skip2" which is
64dnl accepted by cmp on some systems.
e7c11f53 65AC_DEFUN([gcc_AC_PROG_CMP_IGNORE_INITIAL],
8fea036f 66[AC_CACHE_CHECK([for cmp's capabilities], gcc_cv_prog_cmp_skip,
67[ echo abfoo >t1
68 echo cdfoo >t2
a918b4b1 69 gcc_cv_prog_cmp_skip=slowcompare
8fea036f 70 if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
71 if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
a918b4b1 72 :
8fea036f 73 else
74 gcc_cv_prog_cmp_skip=gnucompare
75 fi
a918b4b1 76 fi
77 if test $gcc_cv_prog_cmp_skip = slowcompare ; then
78 if cmp t1 t2 2 2 > /dev/null 2>&1; then
79 if cmp t1 t2 1 1 > /dev/null 2>&1; then
80 :
81 else
82 gcc_cv_prog_cmp_skip=fastcompare
83 fi
84 fi
8fea036f 85 fi
86 rm t1 t2
87])
88make_compare_target=$gcc_cv_prog_cmp_skip
89AC_SUBST(make_compare_target)
90])
91
ea4a6c81 92dnl See if symbolic links work and if not, try to substitute either hard links or simple copy.
e7c11f53 93AC_DEFUN([gcc_AC_PROG_LN_S],
ea4a6c81 94[AC_MSG_CHECKING(whether ln -s works)
95AC_CACHE_VAL(gcc_cv_prog_LN_S,
45d37aff 96[rm -f conftestdata_t
97echo >conftestdata_f
98if ln -s conftestdata_f conftestdata_t 2>/dev/null
ea4a6c81 99then
100 gcc_cv_prog_LN_S="ln -s"
101else
45d37aff 102 if ln conftestdata_f conftestdata_t 2>/dev/null
ea4a6c81 103 then
104 gcc_cv_prog_LN_S=ln
105 else
26be379c 106 if cp -p conftestdata_f conftestdata_t 2>/dev/null
107 then
108 gcc_cv_prog_LN_S="cp -p"
109 else
110 gcc_cv_prog_LN_S=cp
111 fi
ea4a6c81 112 fi
113fi
45d37aff 114rm -f conftestdata_f conftestdata_t
ea4a6c81 115])dnl
116LN_S="$gcc_cv_prog_LN_S"
117if test "$gcc_cv_prog_LN_S" = "ln -s"; then
118 AC_MSG_RESULT(yes)
119else
120 if test "$gcc_cv_prog_LN_S" = "ln"; then
121 AC_MSG_RESULT([no, using ln])
122 else
26be379c 123 AC_MSG_RESULT([no, and neither does ln, so using $gcc_cv_prog_LN_S])
ea4a6c81 124 fi
125fi
126AC_SUBST(LN_S)dnl
127])
128
a729d1c3 129dnl Define MKDIR_TAKES_ONE_ARG if mkdir accepts only one argument instead
130dnl of the usual 2.
e7c11f53 131AC_DEFUN([gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG],
a729d1c3 132[AC_CACHE_CHECK([if mkdir takes one argument], gcc_cv_mkdir_takes_one_arg,
11e66330 133[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
a729d1c3 134#include <sys/types.h>
135#ifdef HAVE_SYS_STAT_H
136# include <sys/stat.h>
137#endif
138#ifdef HAVE_UNISTD_H
139# include <unistd.h>
140#endif
141#ifdef HAVE_DIRECT_H
142# include <direct.h>
11e66330 143#endif], [mkdir ("foo", 0);])],
a729d1c3 144 gcc_cv_mkdir_takes_one_arg=no, gcc_cv_mkdir_takes_one_arg=yes)])
145if test $gcc_cv_mkdir_takes_one_arg = yes ; then
c9b4be0a 146 AC_DEFINE(MKDIR_TAKES_ONE_ARG, 1, [Define if host mkdir takes a single argument.])
a729d1c3 147fi
148])
149
e7c11f53 150AC_DEFUN([gcc_AC_PROG_INSTALL],
e59dfa37 151[AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl
152# Find a good install program. We prefer a C program (faster),
153# so one script is as good as another. But avoid the broken or
154# incompatible versions:
155# SysV /etc/install, /usr/sbin/install
156# SunOS /usr/etc/install
157# IRIX /sbin/install
158# AIX /bin/install
159# AFS /usr/afsws/bin/install, which mishandles nonexistent args
160# SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff"
161# ./install, which can be erroneously created by make from ./install.sh.
162AC_MSG_CHECKING(for a BSD compatible install)
163if test -z "$INSTALL"; then
164AC_CACHE_VAL(ac_cv_path_install,
165[ IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="${IFS}:"
166 for ac_dir in $PATH; do
167 # Account for people who put trailing slashes in PATH elements.
168 case "$ac_dir/" in
169 /|./|.//|/etc/*|/usr/sbin/*|/usr/etc/*|/sbin/*|/usr/afsws/bin/*|/usr/ucb/*) ;;
170 *)
171 # OSF1 and SCO ODT 3.0 have their own names for install.
172 for ac_prog in ginstall scoinst install; do
173 if test -f $ac_dir/$ac_prog; then
174 if test $ac_prog = install &&
175 grep dspmsg $ac_dir/$ac_prog >/dev/null 2>&1; then
176 # AIX install. It has an incompatible calling convention.
177 # OSF/1 installbsd also uses dspmsg, but is usable.
178 :
179 else
180 ac_cv_path_install="$ac_dir/$ac_prog -c"
181 break 2
182 fi
183 fi
184 done
185 ;;
186 esac
187 done
188 IFS="$ac_save_IFS"
189])dnl
190 if test "${ac_cv_path_install+set}" = set; then
191 INSTALL="$ac_cv_path_install"
192 else
193 # As a last resort, use the slow shell script. We don't cache a
194 # path for INSTALL within a source directory, because that will
195 # break other packages using the cache if that directory is
196 # removed, or if the path is relative.
197 INSTALL="$ac_install_sh"
198 fi
199fi
200dnl We do special magic for INSTALL instead of AC_SUBST, to get
201dnl relative paths right.
202AC_MSG_RESULT($INSTALL)
68a39da2 203AC_SUBST(INSTALL)dnl
e59dfa37 204
205# Use test -z because SunOS4 sh mishandles braces in ${var-val}.
206# It thinks the first close brace ends the variable substitution.
207test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}'
208AC_SUBST(INSTALL_PROGRAM)dnl
209
210test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644'
211AC_SUBST(INSTALL_DATA)dnl
212])
be2828ce 213
9f0cea1b 214# mmap(2) blacklisting. Some platforms provide the mmap library routine
215# but don't support all of the features we need from it.
216AC_DEFUN([gcc_AC_FUNC_MMAP_BLACKLIST],
b0b8d180 217[
218AC_CHECK_HEADER([sys/mman.h],
219 [gcc_header_sys_mman_h=yes], [gcc_header_sys_mman_h=no])
220AC_CHECK_FUNC([mmap], [gcc_func_mmap=yes], [gcc_func_mmap=no])
221if test "$gcc_header_sys_mman_h" != yes \
222 || test "$gcc_func_mmap" != yes; then
9f0cea1b 223 gcc_cv_func_mmap_file=no
224 gcc_cv_func_mmap_dev_zero=no
225 gcc_cv_func_mmap_anon=no
226else
227 AC_CACHE_CHECK([whether read-only mmap of a plain file works],
228 gcc_cv_func_mmap_file,
229 [# Add a system to this blacklist if
230 # mmap(0, stat_size, PROT_READ, MAP_PRIVATE, fd, 0) doesn't return a
231 # memory area containing the same data that you'd get if you applied
232 # read() to the same fd. The only system known to have a problem here
233 # is VMS, where text files have record structure.
234 case "$host_os" in
c535f36c 235 vms* | ultrix*)
9f0cea1b 236 gcc_cv_func_mmap_file=no ;;
237 *)
238 gcc_cv_func_mmap_file=yes;;
239 esac])
240 AC_CACHE_CHECK([whether mmap from /dev/zero works],
241 gcc_cv_func_mmap_dev_zero,
242 [# Add a system to this blacklist if it has mmap() but /dev/zero
243 # does not exist, or if mmapping /dev/zero does not give anonymous
244 # zeroed pages with both the following properties:
245 # 1. If you map N consecutive pages in with one call, and then
246 # unmap any subset of those pages, the pages that were not
247 # explicitly unmapped remain accessible.
248 # 2. If you map two adjacent blocks of memory and then unmap them
249 # both at once, they must both go away.
250 # Systems known to be in this category are Windows (all variants),
251 # VMS, and Darwin.
252 case "$host_os" in
22ed000f 253 vms* | cygwin* | pe | mingw* | darwin* | ultrix* | hpux10* | hpux11.00)
9f0cea1b 254 gcc_cv_func_mmap_dev_zero=no ;;
255 *)
256 gcc_cv_func_mmap_dev_zero=yes;;
257 esac])
258
259 # Unlike /dev/zero, the MAP_ANON(YMOUS) defines can be probed for.
260 AC_CACHE_CHECK([for MAP_ANON(YMOUS)], gcc_cv_decl_map_anon,
11e66330 261 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
9f0cea1b 262[#include <sys/types.h>
8ee6d486 263#include <sys/mman.h>
9f0cea1b 264#include <unistd.h>
901dfcc7 265
9f0cea1b 266#ifndef MAP_ANONYMOUS
267#define MAP_ANONYMOUS MAP_ANON
901dfcc7 268#endif
9f0cea1b 269],
11e66330 270[int n = MAP_ANONYMOUS;])],
9f0cea1b 271 gcc_cv_decl_map_anon=yes,
272 gcc_cv_decl_map_anon=no)])
273
274 if test $gcc_cv_decl_map_anon = no; then
275 gcc_cv_func_mmap_anon=no
276 else
277 AC_CACHE_CHECK([whether mmap with MAP_ANON(YMOUS) works],
278 gcc_cv_func_mmap_anon,
279 [# Add a system to this blacklist if it has mmap() and MAP_ANON or
280 # MAP_ANONYMOUS, but using mmap(..., MAP_PRIVATE|MAP_ANONYMOUS, -1, 0)
281 # doesn't give anonymous zeroed pages with the same properties listed
282 # above for use of /dev/zero.
283 # Systems known to be in this category are Windows, VMS, and SCO Unix.
284 case "$host_os" in
285 vms* | cygwin* | pe | mingw* | sco* | udk* )
286 gcc_cv_func_mmap_anon=no ;;
287 *)
288 gcc_cv_func_mmap_anon=yes;;
289 esac])
290 fi
901dfcc7 291fi
292
9f0cea1b 293if test $gcc_cv_func_mmap_file = yes; then
39af12e5 294 AC_DEFINE(HAVE_MMAP_FILE, 1,
295 [Define if read-only mmap of a plain file works.])
296fi
9f0cea1b 297if test $gcc_cv_func_mmap_dev_zero = yes; then
298 AC_DEFINE(HAVE_MMAP_DEV_ZERO, 1,
299 [Define if mmap of /dev/zero works.])
300fi
301if test $gcc_cv_func_mmap_anon = yes; then
302 AC_DEFINE(HAVE_MMAP_ANON, 1,
303 [Define if mmap with MAP_ANON(YMOUS) works.])
304fi
39af12e5 305])
049ccec1 306
307dnl Locate a program and check that its version is acceptable.
308dnl AC_PROG_CHECK_VER(var, name, version-switch,
309dnl version-extract-regexp, version-glob)
e7c11f53 310AC_DEFUN([gcc_AC_CHECK_PROG_VER],
f32e3360 311[AC_REQUIRE([gcc_AC_BUILD_EXEEXT])
312AC_CHECK_PROG([$1], [$2], [$2])
049ccec1 313if test -n "[$]$1"; then
314 # Found it, now check the version.
315 AC_CACHE_CHECK(for modern $2, gcc_cv_prog_$2_modern,
316[changequote(<<,>>)dnl
317 ac_prog_version=`<<$>>$1 $3 2>&1 |
318 sed -n 's/^.*patsubst(<<$4>>,/,\/).*$/\1/p'`
2149241d 319changequote([,])dnl
11e66330 320 echo "configure:__oline__: version of $2 is $ac_prog_version" >&AS_MESSAGE_LOG_FD
2149241d 321changequote(<<,>>)dnl
049ccec1 322 case $ac_prog_version in
323 '') gcc_cv_prog_$2_modern=no;;
324 <<$5>>)
325 gcc_cv_prog_$2_modern=yes;;
326 *) gcc_cv_prog_$2_modern=no;;
327 esac
328changequote([,])dnl
329])
330else
331 gcc_cv_prog_$2_modern=no
332fi
333])
02be28b3 334
335dnl Determine if enumerated bitfields are unsigned. ISO C says they can
336dnl be either signed or unsigned.
337dnl
e7c11f53 338AC_DEFUN([gcc_AC_C_ENUM_BF_UNSIGNED],
02be28b3 339[AC_CACHE_CHECK(for unsigned enumerated bitfields, gcc_cv_enum_bf_unsigned,
11e66330 340[AC_RUN_IFELSE([AC_LANG_SOURCE([#include <stdlib.h>
02be28b3 341enum t { BLAH = 128 } ;
342struct s_t { enum t member : 8; } s ;
343int main(void)
344{
345 s.member = BLAH;
346 if (s.member < 0) exit(1);
347 exit(0);
348
11e66330 349}])], gcc_cv_enum_bf_unsigned=yes, gcc_cv_enum_bf_unsigned=no, gcc_cv_enum_bf_unsigned=yes)])
02be28b3 350if test $gcc_cv_enum_bf_unsigned = yes; then
351 AC_DEFINE(ENUM_BITFIELDS_ARE_UNSIGNED, 1,
352 [Define if enumerated bitfields are treated as unsigned values.])
353fi])
354
02be28b3 355dnl Probe number of bits in a byte.
356dnl Note C89 requires CHAR_BIT >= 8.
357dnl
e7c11f53 358AC_DEFUN([gcc_AC_C_CHAR_BIT],
02be28b3 359[AC_CACHE_CHECK(for CHAR_BIT, gcc_cv_decl_char_bit,
360[AC_EGREP_CPP(found,
361[#ifdef HAVE_LIMITS_H
362#include <limits.h>
363#endif
364#ifdef CHAR_BIT
365found
366#endif], gcc_cv_decl_char_bit=yes, gcc_cv_decl_char_bit=no)
367])
368if test $gcc_cv_decl_char_bit = no; then
369 AC_CACHE_CHECK(number of bits in a byte, gcc_cv_c_nbby,
370[i=8
371 gcc_cv_c_nbby=
372 while test $i -lt 65; do
11e66330 373 AC_COMPILE_IFELSE([AC_LANG_PROGRAM(,
45449d9f 374 [switch(0) {
375 case (unsigned char)((unsigned long)1 << $i) == ((unsigned long)1 << $i):
376 case (unsigned char)((unsigned long)1<<($i-1)) == ((unsigned long)1<<($i-1)):
11e66330 377 ; }])],
45449d9f 378 [gcc_cv_c_nbby=$i; break])
02be28b3 379 i=`expr $i + 1`
380 done
381 test -z "$gcc_cv_c_nbby" && gcc_cv_c_nbby=failed
382])
383if test $gcc_cv_c_nbby = failed; then
384 AC_MSG_ERROR(cannot determine number of bits in a byte)
385else
386 AC_DEFINE_UNQUOTED(CHAR_BIT, $gcc_cv_c_nbby,
387 [Define as the number of bits in a byte, if \`limits.h' doesn't.])
388fi
389fi])
390
ac31415f 391dnl From Bruno Haible.
392
393AC_DEFUN([AM_LANGINFO_CODESET],
394[
395 AC_CACHE_CHECK([for nl_langinfo and CODESET], am_cv_langinfo_codeset,
11e66330 396 [AC_LINK_IFELSE([AC_LANG_PROGRAM([#include <langinfo.h>],
397 [char* cs = nl_langinfo(CODESET);])],
ac31415f 398 am_cv_langinfo_codeset=yes,
399 am_cv_langinfo_codeset=no)
400 ])
401 if test $am_cv_langinfo_codeset = yes; then
402 AC_DEFINE(HAVE_LANGINFO_CODESET, 1,
403 [Define if you have <langinfo.h> and nl_langinfo(CODESET).])
404 fi
405])
406
e7c11f53 407AC_DEFUN([gcc_AC_INITFINI_ARRAY],
24d1674d 408[AC_ARG_ENABLE(initfini-array,
409 [ --enable-initfini-array use .init_array/.fini_array sections],
410 [], [
411AC_CACHE_CHECK(for .preinit_array/.init_array/.fini_array support,
d8ea82e6 412 gcc_cv_initfini_array, [dnl
11e66330 413 AC_RUN_IFELSE([AC_LANG_SOURCE([
5646395d 414static int x = -1;
415int main (void) { return x; }
416int foo (void) { x = 0; }
11e66330 417int (*fp) (void) __attribute__ ((section (".init_array"))) = foo;])],
d8ea82e6 418 [gcc_cv_initfini_array=yes], [gcc_cv_initfini_array=no],
419 [gcc_cv_initfini_array=no])])
24d1674d 420 enable_initfini_array=$gcc_cv_initfini_array
421])
422if test $enable_initfini_array = yes; then
423 AC_DEFINE(HAVE_INITFINI_ARRAY, 1,
424 [Define .init_array/.fini_array sections are available and working.])
425fi])
667fe30b 426
427dnl # _gcc_COMPUTE_GAS_VERSION
428dnl # Used by gcc_GAS_VERSION_GTE_IFELSE
429dnl #
430dnl # WARNING:
431dnl # gcc_cv_as_gas_srcdir must be defined before this.
432dnl # This gross requirement will go away eventually.
433AC_DEFUN([_gcc_COMPUTE_GAS_VERSION],
434[gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
435for f in $gcc_cv_as_bfd_srcdir/configure \
436 $gcc_cv_as_gas_srcdir/configure \
437 $gcc_cv_as_gas_srcdir/configure.in \
438 $gcc_cv_as_gas_srcdir/Makefile.in ; do
78dde42d 439 gcc_cv_gas_version=`sed -n -e 's/^[[ ]]*\(VERSION=[[0-9]]*\.[[0-9]]*.*\)/\1/p' < $f`
667fe30b 440 if test x$gcc_cv_gas_version != x; then
441 break
442 fi
443done
444gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([[0-9]]*\)"`
445gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.\([[0-9]]*\)"`
446gcc_cv_gas_patch_version=`expr "$gcc_cv_gas_version" : "VERSION=[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)"`
8d6083e4 447case $gcc_cv_gas_patch_version in
448 "") gcc_cv_gas_patch_version="0" ;;
449esac
6d6c1801 450gcc_cv_gas_vers=`expr \( \( $gcc_cv_gas_major_version \* 1000 \) \
451 + $gcc_cv_gas_minor_version \) \* 1000 \
452 + $gcc_cv_gas_patch_version`
667fe30b 453]) []dnl # _gcc_COMPUTE_GAS_VERSION
454
6d6c1801 455dnl # gcc_GAS_VERSION_GTE_IFELSE([elf,] major, minor, patchlevel,
667fe30b 456dnl # [command_if_true = :], [command_if_false = :])
457dnl # Check to see if the version of GAS is greater than or
458dnl # equal to the specified version.
459dnl #
460dnl # The first ifelse() shortens the shell code if the patchlevel
461dnl # is unimportant (the usual case). The others handle missing
462dnl # commands. Note that the tests are structured so that the most
463dnl # common version number cases are tested first.
6d6c1801 464AC_DEFUN([_gcc_GAS_VERSION_GTE_IFELSE],
465[ifelse([$1], elf,
466 [if test $in_tree_gas_is_elf = yes \
467 &&],
468 [if]) test $gcc_cv_gas_vers -ge `expr \( \( $2 \* 1000 \) + $3 \) \* 1000 + $4`
469 then dnl
470ifelse([$5],,:,[$5])[]dnl
471ifelse([$6],,,[
472 else $6])
473fi])
474
667fe30b 475AC_DEFUN([gcc_GAS_VERSION_GTE_IFELSE],
6d6c1801 476[AC_REQUIRE([_gcc_COMPUTE_GAS_VERSION])dnl
477ifelse([$1], elf, [_gcc_GAS_VERSION_GTE_IFELSE($@)],
478 [_gcc_GAS_VERSION_GTE_IFELSE(,$@)])])
479
480dnl gcc_GAS_CHECK_FEATURE(description, cv, [[elf,]major,minor,patchlevel],
481dnl [extra switches to as], [assembler input],
482dnl [extra testing logic], [command if feature available])
483dnl
484dnl Checks for an assembler feature. If we are building an in-tree
485dnl gas, the feature is available if the associated assembler version
486dnl is greater than or equal to major.minor.patchlevel. If not, then
487dnl ASSEMBLER INPUT is fed to the assembler and the feature is available
488dnl if assembly succeeds. If EXTRA TESTING LOGIC is not the empty string,
489dnl then it is run instead of simply setting CV to "yes" - it is responsible
490dnl for doing so, if appropriate.
491AC_DEFUN([gcc_GAS_CHECK_FEATURE],
492[AC_CACHE_CHECK([assembler for $1], [$2],
493 [[$2]=no
494 ifelse([$3],,,[dnl
495 if test $in_tree_gas = yes; then
496 gcc_GAS_VERSION_GTE_IFELSE($3, [[$2]=yes])
497 el])if test x$gcc_cv_as != x; then
6a8964db 498 echo ifelse(m4_substr([$5],0,1),[$], "[$5]", '[$5]') > conftest.s
11e66330 499 if AC_TRY_COMMAND([$gcc_cv_as $4 -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD])
6d6c1801 500 then
501 ifelse([$6],, [$2]=yes, [$6])
502 else
11e66330 503 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
504 cat conftest.s >&AS_MESSAGE_LOG_FD
6d6c1801 505 fi
506 rm -f conftest.o conftest.s
507 fi])
508ifelse([$7],,,[dnl
509if test $[$2] = yes; then
510 $7
511fi])])
667fe30b 512
524a54cf 513# AM_PROG_CC_C_O
514# --------------
515# Like AC_PROG_CC_C_O, but changed for automake.
516
517# Copyright (C) 1999, 2000, 2001, 2003 Free Software Foundation, Inc.
518
519# This program is free software; you can redistribute it and/or modify
520# it under the terms of the GNU General Public License as published by
521# the Free Software Foundation; either version 2, or (at your option)
522# any later version.
523
524# This program is distributed in the hope that it will be useful,
525# but WITHOUT ANY WARRANTY; without even the implied warranty of
526# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
527# GNU General Public License for more details.
528
529# You should have received a copy of the GNU General Public License
530# along with this program; if not, write to the Free Software
67ce556b 531# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
532# 02110-1301, USA.
524a54cf 533
534AC_DEFUN([AM_PROG_CC_C_O],
535[AC_REQUIRE([AC_PROG_CC_C_O])dnl
536AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl
537# FIXME: we rely on the cache variable name because
538# there is no other way.
539set dummy $CC
540ac_cc=`echo $[2] | sed ['s/[^a-zA-Z0-9_]/_/g;s/^[0-9]/_/']`
541if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" != yes"; then
542 # Losing compiler, so override with the script.
543 # FIXME: It is wrong to rewrite CC.
544 # But if we don't then we get into trouble of one sort or another.
545 # A longer-term fix would be to have automake use am__CC in this case,
546 # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)"
547 CC="$am_aux_dir/compile $CC"
548fi
549])
550
551# AM_AUX_DIR_EXPAND
552
553# Copyright (C) 2001, 2003 Free Software Foundation, Inc.
554
555# This program is free software; you can redistribute it and/or modify
556# it under the terms of the GNU General Public License as published by
557# the Free Software Foundation; either version 2, or (at your option)
558# any later version.
559
560# This program is distributed in the hope that it will be useful,
561# but WITHOUT ANY WARRANTY; without even the implied warranty of
562# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
563# GNU General Public License for more details.
564
565# You should have received a copy of the GNU General Public License
566# along with this program; if not, write to the Free Software
67ce556b 567# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
568# 02110-1301, USA.
524a54cf 569
570# For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets
571# $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to
572# `$srcdir', `$srcdir/..', or `$srcdir/../..'.
573#
574# Of course, Automake must honor this variable whenever it calls a
575# tool from the auxiliary directory. The problem is that $srcdir (and
576# therefore $ac_aux_dir as well) can be either absolute or relative,
577# depending on how configure is run. This is pretty annoying, since
578# it makes $ac_aux_dir quite unusable in subdirectories: in the top
579# source directory, any form will work fine, but in subdirectories a
580# relative path needs to be adjusted first.
581#
582# $ac_aux_dir/missing
583# fails when called from a subdirectory if $ac_aux_dir is relative
584# $top_srcdir/$ac_aux_dir/missing
585# fails if $ac_aux_dir is absolute,
586# fails when called from a subdirectory in a VPATH build with
587# a relative $ac_aux_dir
588#
589# The reason of the latter failure is that $top_srcdir and $ac_aux_dir
590# are both prefixed by $srcdir. In an in-source build this is usually
591# harmless because $srcdir is `.', but things will broke when you
592# start a VPATH build or use an absolute $srcdir.
593#
594# So we could use something similar to $top_srcdir/$ac_aux_dir/missing,
595# iff we strip the leading $srcdir from $ac_aux_dir. That would be:
596# am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"`
597# and then we would define $MISSING as
598# MISSING="\${SHELL} $am_aux_dir/missing"
599# This will work as long as MISSING is not called from configure, because
600# unfortunately $(top_srcdir) has no meaning in configure.
601# However there are other variables, like CC, which are often used in
602# configure, and could therefore not use this "fixed" $ac_aux_dir.
603#
604# Another solution, used here, is to always expand $ac_aux_dir to an
605# absolute PATH. The drawback is that using absolute paths prevent a
606# configured tree to be moved without reconfiguration.
607
608AC_DEFUN([AM_AUX_DIR_EXPAND],
609[dnl Rely on autoconf to set up CDPATH properly.
610AC_PREREQ([2.50])dnl
611# expand $ac_aux_dir to an absolute path
612am_aux_dir=`cd $ac_aux_dir && pwd`
613])
fcd42b1e 614
615
616dnl GCC_TARGET_TEMPLATE(KEY)
617dnl ------------------------
618dnl Define KEY as a valid configure key on the target machine.
619
620m4_define([GCC_TARGET_TEMPLATE],
621[m4_define([GCC_TARGET_TEMPLATE($1)],[])])
622
623dnl AH_TEMPLATE(KEY, DESCRIPTION)
624dnl -----------------------------
625dnl Issue an autoheader template for KEY, i.e., a comment composed of
626dnl DESCRIPTION (properly wrapped), and then #undef KEY. Redefinition
627dnl of the macro in autoheader.m4, to support definition of only a few
628dnl keys while compiling target libraries.
629
630m4_define([AH_TEMPLATE],
631[AH_VERBATIM([$1],m4_text_wrap([$2 */], [ ], [/* ])
632m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[#ifndef USED_FOR_TARGET
633])[#undef $1]m4_ifdef([GCC_TARGET_TEMPLATE($1)],[],[
634#endif
635]))])
f32e3360 636
637AC_DEFUN([gcc_AC_TOOL_DIRS], [
638# When searching for the assembler or linker, search the same directories
639# that the installed compiler will search. Else we may find the wrong
640# assembler or linker and lose. If we do not find a suitable binary,
641# then try the user's path.
642#
643# Also note we have to check MD_EXEC_PREFIX before checking the user's path.
644if test "x$exec_prefix" = xNONE; then
645 if test "x$prefix" = xNONE; then
646 gcc_cv_tool_prefix=/usr/local
647 else
648 gcc_cv_tool_prefix=$prefix
649 fi
650else
651 gcc_cv_tool_prefix=$exec_prefix
652fi
653
654if test x$host = x$build; then
655 gcc_cv_tool_dirs="$gcc_cv_tool_prefix/libexec/gcc/$target_noncanonical/$gcc_version"
656 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR$gcc_cv_tool_prefix/libexec/gcc/$target_noncanonical"
657 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR/usr/lib/gcc/$target_noncanonical/$gcc_version"
658 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR/usr/lib/gcc/$target_noncanonical"
659 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR$gcc_cv_tool_prefix/$target_noncanonical/bin/$target_noncanonical/$gcc_version"
660 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR$gcc_cv_tool_prefix/$target_noncanonical/bin"
661else
662 gcc_cv_tool_dirs=
663fi
664
665if test x$build = x$target; then
666 # Rummage through tm_files looking for MD_EXEC_PREFIX
667 md_dirs=
668 for f in ${tm_file_list}; do
669 if test -f $f; then
670 if grep '^#[ ]*undef[ ]*MD_EXEC_PREFIX' $f > /dev/null; then
671 md_dirs=
672 fi
673 md_dirs="$md_dirs "`sed -n -e 's@^#[ ]*define[ ]*MD_EXEC_PREFIX[ ]*"\(.*\)/"@\1@p' < $f`
674 fi
675 done
676 for f in ${md_dirs}; do
677 gcc_cv_tool_dirs="$gcc_cv_tool_dirs$PATH_SEPARATOR$f"
678 done
679fi])
680
681dnl Make sure that build_exeext is looked for
682AC_DEFUN([gcc_AC_BUILD_EXEEXT], [
683ac_executable_extensions="$build_exeext"])
684
685AC_DEFUN([gcc_AC_CHECK_TOOL], [
686AC_REQUIRE([gcc_AC_TOOL_DIRS])
687AC_REQUIRE([gcc_AC_BUILD_EXEEXT])
688
689dnl shut up useless "checking for..." messages
690dnl we can still read them in config.log
691exec AS_MESSAGE_FD([])>/dev/null
f6cc6524 692if test "x[$]$1" = x; then
919611cc 693 # The AC_PATH_PROGS macro doesn't work properly when its 4th argument
694 # is empty.
695 if test "x$gcc_cv_tool_dirs" = x; then
696 $1=
697 else
698 AC_PATH_PROGS($1, $2, , $gcc_cv_tool_dirs)
699 fi
f6cc6524 700fi
f32e3360 701if test "x[$]$1" = x; then
702 # If the loop above did not find a tool, then use whatever
703 # one we can find in the users's path. We are looking for a
704 # ${build} -> ${target} tool.
705 if test "x$program_prefix" != xNONE; then
706 default_tool_name=${program_prefix}$2
707 elif test x$build != x$host && test x$build != x$target; then
708 default_tool_name=${target_noncanonical}-$2
709 else
710 default_tool_name=`echo $2 | sed "${program_transform_name}"`
711 fi
712 AC_PATH_PROGS($1, $default_tool_name,
6f91046d 713 $gcc_cv_tool_prefix/bin/$default_tool_name$build_exeext)
f32e3360 714fi
715test "$silent" != yes && exec AS_MESSAGE_FD([])>&1
716
717$3="[$]$1"
718AC_SUBST($3)])