OSDN Git Service

* config/h8300/h8300.md (pushqi1_h8300hs): Revert my patch
[pf3gnuchains/gcc-fork.git] / gcc / configure.in
1 # configure.in for GCC
2 # Process this file with autoconf to generate a configuration script.
3
4 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003
5 # Free Software Foundation, Inc.
6
7 #This file is part of GCC.
8
9 #GCC is free software; you can redistribute it and/or modify it under
10 #the terms of the GNU General Public License as published by the Free
11 #Software Foundation; either version 2, or (at your option) any later
12 #version.
13
14 #GCC is distributed in the hope that it will be useful, but WITHOUT
15 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
17 #for more details.
18
19 #You should have received a copy of the GNU General Public License
20 #along with GCC; see the file COPYING.  If not, write to the Free
21 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
22 #02111-1307, USA.
23
24 # --------------------------------
25 # Initialization and sanity checks
26 # --------------------------------
27
28 AC_PREREQ(2.13)
29 AC_INIT(tree.c)
30 AC_CONFIG_HEADER(auto-host.h:config.in)
31
32 # Determine the host, build, and target systems
33 AC_CANONICAL_SYSTEM
34
35 # Determine the target- and build-specific subdirectories
36 GCC_TOPLEV_SUBDIRS
37
38 # Set program_transform_name
39 AC_ARG_PROGRAM
40
41 # Check for bogus environment variables.
42 # Test if LIBRARY_PATH contains the notation for the current directory
43 # since this would lead to problems installing/building glibc.
44 # LIBRARY_PATH contains the current directory if one of the following
45 # is true:
46 # - one of the terminals (":" and ";") is the first or last sign
47 # - two terminals occur directly after each other
48 # - the path contains an element with a dot in it
49 AC_MSG_CHECKING(LIBRARY_PATH variable)
50 changequote(,)dnl
51 case ${LIBRARY_PATH} in
52   [:\;]* | *[:\;] | *[:\;][:\;]* |  *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
53     library_path_setting="contains current directory"
54     ;;
55   *)
56     library_path_setting="ok"
57     ;;
58 esac
59 changequote([,])dnl
60 AC_MSG_RESULT($library_path_setting)
61 if test "$library_path_setting" != "ok"; then
62 AC_MSG_ERROR([
63 *** LIBRARY_PATH shouldn't contain the current directory when
64 *** building gcc. Please change the environment variable
65 *** and run configure again.])
66 fi
67
68 # Test if GCC_EXEC_PREFIX contains the notation for the current directory
69 # since this would lead to problems installing/building glibc.
70 # GCC_EXEC_PREFIX contains the current directory if one of the following
71 # is true:
72 # - one of the terminals (":" and ";") is the first or last sign
73 # - two terminals occur directly after each other
74 # - the path contains an element with a dot in it
75 AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
76 changequote(,)dnl
77 case ${GCC_EXEC_PREFIX} in
78   [:\;]* | *[:\;] | *[:\;][:\;]* |  *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
79     gcc_exec_prefix_setting="contains current directory"
80     ;;
81   *)
82     gcc_exec_prefix_setting="ok"
83     ;;
84 esac
85 changequote([,])dnl
86 AC_MSG_RESULT($gcc_exec_prefix_setting)
87 if test "$gcc_exec_prefix_setting" != "ok"; then
88 AC_MSG_ERROR([
89 *** GCC_EXEC_PREFIX shouldn't contain the current directory when
90 *** building gcc. Please change the environment variable
91 *** and run configure again.])
92 fi
93
94 # -----------
95 # Directories
96 # -----------
97
98 # Specify the local prefix
99 local_prefix=
100 AC_ARG_WITH(local-prefix,
101 [  --with-local-prefix=DIR specifies directory to put local include],
102 [case "${withval}" in
103 yes)    AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
104 no)     ;;
105 *)      local_prefix=$with_local_prefix ;;
106 esac])
107
108 # Default local prefix if it is empty
109 if test x$local_prefix = x; then
110         local_prefix=/usr/local
111 fi
112
113 # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
114 # passed in by the toplevel make and thus we'd get different behavior
115 # depending on where we built the sources.
116 gcc_gxx_include_dir=
117 # Specify the g++ header file directory
118 AC_ARG_WITH(gxx-include-dir,
119 [  --with-gxx-include-dir=DIR
120                           specifies directory to put g++ header files],
121 [case "${withval}" in
122 yes)    AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
123 no)     ;;
124 *)      gcc_gxx_include_dir=$with_gxx_include_dir ;;
125 esac])
126
127 if test x${gcc_gxx_include_dir} = x; then
128   if test x${enable_version_specific_runtime_libs} = xyes; then
129     gcc_gxx_include_dir='${libsubdir}/include/c++'
130   else
131     topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
132 changequote(<<, >>)dnl
133     gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/"${libstdcxx_incdir}
134 changequote([, ])dnl
135   fi
136 fi
137
138 AC_ARG_WITH(cpp_install_dir,
139 [  --with-cpp-install-dir=DIR
140                           install the user visible C preprocessor in DIR
141                           (relative to PREFIX) as well as PREFIX/bin],
142 [if test x$withval = xyes; then
143   AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
144 elif test x$withval != xno; then
145   cpp_install_dir=$withval
146 fi])
147
148 # -------------------
149 # Find default linker
150 # -------------------
151
152 # With GNU ld
153 AC_ARG_WITH(gnu-ld,
154 [  --with-gnu-ld           arrange to work with GNU ld.],
155 gnu_ld_flag="$with_gnu_ld",
156 gnu_ld_flag=no)
157
158 # With pre-defined ld
159 AC_ARG_WITH(ld,
160 [  --with-ld               arrange to use the specified ld (full pathname)],
161 DEFAULT_LINKER="$with_ld")
162 if test x"${DEFAULT_LINKER+set}" = x"set"; then
163   if test ! -x "$DEFAULT_LINKER"; then
164     AC_MSG_WARN([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
165   elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
166     gnu_ld_flag=yes
167   fi
168   AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
169         [Define to enable the use of a default linker.])
170 fi
171
172 AC_MSG_CHECKING([whether a default linker was specified])
173 if test x"${DEFAULT_LINKER+set}" = x"set"; then
174   if test x"$gnu_ld_flag" = x"no"; then
175     AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
176   else
177     AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
178   fi
179 else
180   AC_MSG_RESULT(no)
181 fi
182
183 # ----------------------
184 # Find default assembler
185 # ----------------------
186
187 # With GNU as
188 AC_ARG_WITH(gnu-as,
189 [  --with-gnu-as           arrange to work with GNU as],
190 gas_flag="$with_gnu_as",
191 gas_flag=no)
192
193 AC_ARG_WITH(as,
194 [  --with-as               arrange to use the specified as (full pathname)],
195 DEFAULT_ASSEMBLER="$with_as")
196 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
197   if test ! -x "$DEFAULT_ASSEMBLER"; then
198     AC_MSG_WARN([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
199   elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
200     gas_flag=yes
201   fi
202   AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
203         [Define to enable the use of a default assembler.])
204 fi
205
206 AC_MSG_CHECKING([whether a default assembler was specified])
207 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
208   if test x"$gas_flag" = x"no"; then
209     AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
210   else
211     AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
212   fi
213 else
214   AC_MSG_RESULT(no)
215 fi
216
217 # ---------------
218 # Find C compiler
219 # ---------------
220
221 # Find the native compiler
222 AC_PROG_CC
223 AC_PROG_CC_C_O
224 # autoconf is lame and doesn't give us any substitution variable for this.
225 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
226   NO_MINUS_C_MINUS_O=yes
227 else
228   OUTPUT_OPTION='-o $@'
229 fi
230 AC_SUBST(NO_MINUS_C_MINUS_O)
231 AC_SUBST(OUTPUT_OPTION)
232
233 # -------------------------
234 # Check C compiler features
235 # -------------------------
236
237 AC_CACHE_CHECK(whether ${CC-cc} accepts -Wno-long-long,
238 ac_cv_prog_cc_no_long_long,
239 [save_CFLAGS="$CFLAGS"
240 CFLAGS="-Wno-long-long"
241 AC_TRY_COMPILE(,,ac_cv_prog_cc_no_long_long=yes,
242                ac_cv_prog_cc_no_long_long=no)
243 CFLAGS="$save_CFLAGS"])
244
245 AC_PROG_CPP
246 AC_C_INLINE
247
248 gcc_AC_C_LONG_LONG
249 gcc_AC_C__BOOL
250
251 # sizeof(char) is 1 by definition.
252 AC_COMPILE_CHECK_SIZEOF(short)
253 AC_COMPILE_CHECK_SIZEOF(int)
254 AC_COMPILE_CHECK_SIZEOF(long)
255 if test $ac_cv_c_long_long = yes; then
256   AC_COMPILE_CHECK_SIZEOF(long long)
257 fi
258 if test $ac_cv_c___int64 = yes; then
259   AC_COMPILE_CHECK_SIZEOF(__int64)
260 fi
261
262 # -----------------
263 # Find Ada compiler
264 # -----------------
265
266 # See if GNAT has been installed
267 gcc_AC_PROG_GNAT
268
269 if test x$have_gnat != xno ; then 
270 AC_CACHE_CHECK(whether ${ADAC} accepts -Wno-long-long,
271 ac_cv_prog_adac_no_long_long,
272 [cat >conftest.adb <<EOF
273 procedure conftest is begin null; end conftest;
274 EOF
275 if $ADAC -Wno-long-long -c conftest.adb 1>&5 2>&5 ; then
276   ac_cv_prog_adac_no_long_long=yes
277 else
278   ac_cv_prog_adac_no_long_long=no
279 fi
280 rm -f conftest*])
281 else
282   ac_cv_prog_adac_no_long_long=yes
283 fi
284
285 # ---------------------
286 # Warnings and checking
287 # ---------------------
288
289 strict1_warn=
290 if test $ac_cv_prog_cc_no_long_long = yes && \
291     test $ac_cv_prog_adac_no_long_long = yes ; then
292   strict1_warn="-pedantic -Wno-long-long"
293 fi
294 AC_SUBST(strict1_warn)
295
296 # If the native compiler is GCC, we can enable warnings even in stage1.  
297 # That's useful for people building cross-compilers, or just running a
298 # quick `make'.
299 warn_cflags=
300 if test "x$GCC" = "xyes"; then
301   warn_cflags='$(GCC_WARN_CFLAGS)'
302 fi
303 AC_SUBST(warn_cflags)
304
305 # Enable -Werror in bootstrap stage2 and later.
306 # Change the default to "no" on release branches.
307 AC_ARG_ENABLE(werror, 
308 [  --enable-werror         enable -Werror in bootstrap stage2 and later], [],
309 [enable_werror=yes])
310 if test x$enable_werror = xyes ; then
311   WERROR=-Werror
312 fi
313 AC_SUBST(WERROR)
314
315 # Enable expensive internal checks
316 AC_ARG_ENABLE(checking,
317 [  --enable-checking[=LIST]
318                           enable expensive run-time checks.  With LIST,
319                           enable only specific categories of checks.
320                           Categories are: misc,tree,rtl,rtlflag,gc,gcac;
321                           default is misc,tree,gc,rtlflag],
322 [ac_checking=
323 ac_tree_checking=
324 ac_rtl_checking=
325 ac_rtlflag_checking=
326 ac_gc_checking=
327 ac_gc_always_collect=
328 case "${enableval}" in
329 yes)    ac_checking=1 ; ac_tree_checking=1 ; ac_gc_checking=1 ;
330         ac_rtlflag_checking=1 ;;
331 no)     ;;
332 *)      IFS="${IFS=     }"; ac_save_IFS="$IFS"; IFS="$IFS,"
333         set fnord $enableval; shift
334         IFS="$ac_save_IFS"
335         for check
336         do
337                 case $check in
338                 misc)   ac_checking=1 ;;
339                 tree)   ac_tree_checking=1 ;;
340                 rtlflag)        ac_rtlflag_checking=1 ;;
341                 rtl)    ac_rtl_checking=1 ;;
342                 gc)     ac_gc_checking=1 ;;
343                 gcac)   ac_gc_always_collect=1 ;;
344                 valgrind)       ac_checking_valgrind=1 ;;
345                 *)      AC_MSG_ERROR(unknown check category $check) ;;
346                 esac
347         done
348         ;;
349 esac
350 ], 
351 # Enable some checks by default for development versions of GCC
352 [ac_checking=1; ac_tree_checking=1; ac_gc_checking=1; ac_rtlflag_checking=1;])
353 nocommon_flag=""
354 if test x$ac_checking != x ; then
355   AC_DEFINE(ENABLE_CHECKING, 1,
356 [Define if you want more run-time sanity checks.  This one gets a grab
357    bag of miscellaneous but relatively cheap checks.])
358   nocommon_flag=-fno-common
359 fi
360 AC_SUBST(nocommon_flag)
361 if test x$ac_tree_checking != x ; then
362   AC_DEFINE(ENABLE_TREE_CHECKING, 1,
363 [Define if you want all operations on trees (the basic data
364    structure of the front ends) to be checked for dynamic type safety
365    at runtime.  This is moderately expensive.])
366 fi
367 if test x$ac_rtl_checking != x ; then
368   AC_DEFINE(ENABLE_RTL_CHECKING, 1,
369 [Define if you want all operations on RTL (the basic data structure
370    of the optimizer and back end) to be checked for dynamic type safety
371    at runtime.  This is quite expensive.])
372 fi
373 if test x$ac_rtlflag_checking != x ; then
374   AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
375 [Define if you want RTL flag accesses to be checked against the RTL
376    codes that are supported for each access macro.  This is relatively
377    cheap.])
378 fi
379 if test x$ac_gc_checking != x ; then
380   AC_DEFINE(ENABLE_GC_CHECKING, 1,
381 [Define if you want the garbage collector to do object poisoning and
382    other memory allocation checks.  This is quite expensive.])
383 fi
384 if test x$ac_gc_always_collect != x ; then
385   AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
386 [Define if you want the garbage collector to operate in maximally
387    paranoid mode, validating the entire heap and collecting garbage at
388    every opportunity.  This is extremely expensive.])
389 fi
390 valgrind_path_defines=
391 valgrind_command=
392 if test x$ac_checking_valgrind != x ; then
393   # It is certainly possible that there's valgrind but no valgrind.h.
394   # GCC relies on making annotations so we must have both.
395   AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
396   AC_TRY_CPP(
397     [#include <memcheck.h>
398 #ifndef VALGRIND_DISCARD
399 #error VALGRIND_DISCARD not defined
400 #endif],
401   [gcc_cv_header_memcheck_h=yes], 
402   gcc_cv_header_memcheck_h=no)
403   AC_MSG_RESULT($gcc_cv_header_memcheck_h)
404   AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
405   AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
406         [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
407   if test "x$valgrind_path" = "x" || (test $have_valgrind_h = no && test $gcc_cv_header_memcheck_h = no); then
408         AC_MSG_ERROR([*** Can't find both valgrind and valgrind.h/memcheck.h])
409   fi
410   valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
411   valgrind_command="$valgrind_path -q"
412   AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
413 [Define if you want to run subprograms and generated programs
414    through valgrind (a memory checker).  This is extremely expensive.])
415   if test $gcc_cv_header_memcheck_h = yes; then
416     AC_DEFINE(HAVE_MEMCHECK_H, 1,
417         [Define if valgrind's memcheck.h header is installed.])
418   fi
419 fi
420 AC_SUBST(valgrind_path_defines)
421 AC_SUBST(valgrind_command)
422
423 # Enable code coverage collection
424 AC_ARG_ENABLE(coverage,
425 [  --enable-coverage[=LEVEL]
426                           enable compiler\'s code coverage collection.
427                           Use to measure compiler performance and locate
428                           unused parts of the compiler. With LEVEL, specify
429                           optimization. Values are opt, noopt,
430                           default is noopt],
431 [case "${enableval}" in
432 yes|noopt)
433         coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0"
434         ;;
435 opt)
436         coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2"
437         ;;
438 *)
439         AC_MSG_ERROR(unknown coverage setting $enableval)
440         ;;
441 esac],
442 [coverage_flags=""])
443 AC_SUBST(coverage_flags)
444
445 # -------------------------------
446 # Miscenalleous configure options
447 # -------------------------------
448
449 # With stabs
450 AC_ARG_WITH(stabs,
451 [  --with-stabs            arrange to use stabs instead of host debug format],
452 stabs="$with_stabs",
453 stabs=no)
454
455 # With ELF
456 AC_ARG_WITH(elf,
457 [  --with-elf              arrange to use ELF instead of host debug format],
458 elf="$with_elf",
459 elf=no)
460
461 # Determine whether or not multilibs are enabled.
462 AC_ARG_ENABLE(multilib,
463 [  --enable-multilib       enable library support for multiple ABIs],
464 [], [enable_multilib=yes])
465 AC_SUBST(enable_multilib)
466
467 # Enable __cxa_atexit for C++.
468 AC_ARG_ENABLE(__cxa_atexit,
469 [  --enable-__cxa_atexit   enable __cxa_atexit for C++],
470 [], [])
471
472 # Enable threads
473 # Pass with no value to take the default
474 # Pass with a value to specify a thread package
475 AC_ARG_ENABLE(threads,
476 [  --enable-threads        enable thread usage for target GCC
477   --enable-threads=LIB    use LIB thread package for target GCC],,
478 enable_threads='')
479
480 enable_threads_flag=$enable_threads
481 # Check if a valid thread package
482 case x${enable_threads_flag} in
483         x | xno)
484                 # No threads
485                 target_thread_file='single'
486                 ;;
487         xyes)
488                 # default
489                 target_thread_file=''
490                 ;;
491         xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
492         xsolaris | xwin32 | xdce | xrtems| xvxworks | xaix | xgnat)
493                 target_thread_file=$enable_threads_flag
494                 ;;
495         *)
496                 echo "$enable_threads is an unknown thread package" 1>&2
497                 exit 1
498                 ;;
499 esac
500
501 AC_ARG_ENABLE(objc-gc,
502 [  --enable-objc-gc       enable the use of Boehm's garbage collector with
503                           the GNU Objective-C runtime],
504 if test x$enable_objc_gc = xno; then
505         objc_boehm_gc=''
506 else
507         objc_boehm_gc=1
508 fi,
509 objc_boehm_gc='')
510
511 AC_ARG_WITH(dwarf2,
512 [  --with-dwarf2           force the default debug format to be DWARF 2],
513 dwarf2="$with_dwarf2",
514 dwarf2=no)
515
516 AC_ARG_ENABLE(shared,
517 [  --disable-shared        don't provide a shared libgcc],
518 [
519   case $enable_shared in
520   yes | no) ;;
521   *)
522     enable_shared=no
523     IFS="${IFS=         }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
524     for pkg in $enableval; do
525       if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
526         enable_shared=yes
527       fi
528     done
529     IFS="$ac_save_ifs"
530     ;;
531   esac
532 ], [enable_shared=yes])
533 AC_SUBST(enable_shared)
534
535 AC_ARG_WITH(sysroot,
536 [  --with-sysroot[=DIR] Search for usr/lib, usr/include, et al, within DIR.],
537 [
538  case ${with_sysroot} in
539  yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_alias}/sys-root' ;;
540  *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
541  esac
542    
543  TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
544  CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR)'
545
546  if test "x$exec_prefix" = xNONE; then
547   if test "x$prefix" = xNONE; then
548    test_prefix=/usr/local
549   else
550    test_prefix=$prefix
551   fi
552  else
553   test_prefix=$exec_prefix
554  fi
555  case ${TARGET_SYSTEM_ROOT} in
556  "${test_prefix}"|"${test_prefix}/"*|\
557  '${exec_prefix}'|'${exec_prefix}/'*)
558    t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
559    TARGET_SYSTEM_ROOT_DEFINE="$t"
560    ;;
561  esac
562 ], [
563  TARGET_SYSTEM_ROOT=
564  TARGET_SYSTEM_ROOT_DEFINE=
565  CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
566 ])
567 AC_SUBST(TARGET_SYSTEM_ROOT)
568 AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
569 AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
570
571 # -------------------------
572 # Checks for other programs
573 # -------------------------
574
575 AC_PROG_MAKE_SET
576
577 # Find some useful tools
578 AC_PROG_AWK
579 gcc_AC_PROG_LN
580 gcc_AC_PROG_LN_S
581 AC_PROG_RANLIB
582 gcc_AC_PROG_INSTALL
583
584 # See if we have the mktemp command.
585 AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
586
587 # Do we have a single-tree copy of texinfo?
588 if test -f $srcdir/../texinfo/Makefile.in; then
589   MAKEINFO='$(objdir)/../texinfo/makeinfo/makeinfo'
590   gcc_cv_prog_makeinfo_modern=yes
591   AC_MSG_RESULT([Using makeinfo from the unified source tree.])
592 else
593   # See if makeinfo has been installed and is modern enough
594   # that we can use it.
595   gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
596   [GNU texinfo.* \([0-9][0-9.]*\)],
597   [4.[2-9]*])
598 fi
599
600 if test $gcc_cv_prog_makeinfo_modern = no; then
601   AC_MSG_WARN([
602 *** Makeinfo is missing or too old.
603 *** Info documentation will not be built.])
604   BUILD_INFO=
605 else
606   BUILD_INFO=info               AC_SUBST(BUILD_INFO)
607 fi
608
609 # Is pod2man recent enough to regenerate manpages?
610 AC_MSG_CHECKING([for recent Pod::Man])
611 if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
612   AC_MSG_RESULT(yes)
613   GENERATED_MANPAGES=generated-manpages         AC_SUBST(GENERATED_MANPAGES)
614 else
615   AC_MSG_RESULT(no)
616   GENERATED_MANPAGES=
617 fi
618
619 # 'make compare' can be significantly faster, if cmp itself can
620 # skip bytes instead of using tail.  The test being performed is
621 # "if cmp --ignore-initial=2 t1 t2 && ! cmp --ignore-initial=1 t1 t2"
622 # but we need to sink errors and handle broken shells.
623 AC_MSG_CHECKING([for cmp's capabilities])
624 echo abfoo >t1
625 echo cdfoo >t2
626 if cmp --ignore-initial=2 t1 t2 > /dev/null 2>&1; then
627   if cmp --ignore-initial=1 t1 t2 > /dev/null 2>&1; then
628     make_compare_target=slowcompare
629   else
630     make_compare_target=gnucompare
631   fi
632 else
633   make_compare_target=slowcompare
634 fi
635 rm t1 t2
636 AC_SUBST(make_compare_target)
637 AC_MSG_RESULT($make_compare_target)
638
639 # How about lex?
640 dnl Don't use AC_PROG_LEX; we insist on flex.
641 dnl LEXLIB is not useful in gcc.
642 if test -f $srcdir/../flex/skel.c; then
643   FLEX='$(objdir)/../flex/flex'
644 else
645   AC_CHECK_PROG(FLEX, flex, flex, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing flex)
646 fi
647
648 # Bison?
649 # The -L switch is so bison can find its skeleton file.
650 if test -f $srcdir/../bison/bison.simple; then
651   BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/'
652 else
653   AC_CHECK_PROG(BISON, bison, bison, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing bison)
654 fi
655
656 # --------------------
657 # Checks for C headers
658 # --------------------
659
660 AC_MSG_CHECKING(for GNU C library)
661 AC_CACHE_VAL(gcc_cv_glibc,
662 [AC_TRY_COMPILE(
663   [#include <features.h>],[
664 #if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
665 #error Not a GNU C library system
666 #endif], 
667   [gcc_cv_glibc=yes], 
668   gcc_cv_glibc=no)])
669 AC_MSG_RESULT($gcc_cv_glibc)
670 if test $gcc_cv_glibc = yes; then
671   AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
672 fi
673
674 AC_HEADER_STDC
675 AC_HEADER_TIME
676 gcc_AC_HEADER_STDBOOL
677 gcc_AC_HEADER_STRING
678 AC_HEADER_SYS_WAIT
679 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
680                  fcntl.h unistd.h sys/file.h sys/time.h sys/mman.h \
681                  sys/resource.h sys/param.h sys/times.h sys/stat.h \
682                  direct.h malloc.h langinfo.h ldfcn.h wchar.h)
683
684 # Check for thread headers.
685 AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
686 AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
687
688 # These tests can't be done till we know if we have limits.h.
689 gcc_AC_C_CHAR_BIT
690 AC_C_BIGENDIAN_CROSS
691
692 # --------
693 # UNSORTED
694 # --------
695
696 # Stage specific cflags for build.
697 stage1_cflags=
698 case $build in
699 vax-*-*)
700   if test x$GCC = xyes
701   then
702     stage1_cflags="-Wa,-J"
703   else
704     stage1_cflags="-J"
705   fi
706   ;;
707 powerpc-*-darwin*)
708   # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
709   # sources; use -no-cpp-precomp to get to GNU cpp.
710   # Apple's GCC has bugs in designated initializer handling, so disable
711   # that too.
712   stage1_cflags="-no-cpp-precomp -DHAVE_DESIGNATED_INITIALIZERS=0"
713   ;;
714 esac
715 AC_SUBST(stage1_cflags)
716
717 # These libraries may be used by collect2.
718 # We may need a special search path to get them linked.
719 AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
720 [save_LIBS="$LIBS"
721 for libs in '' -lld -lmld \
722                 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
723                 '-L/usr/lib/cmplrs/cc3.11 -lmld'
724 do
725         LIBS="$libs"
726         AC_TRY_LINK_FUNC(ldopen,
727                 [gcc_cv_collect2_libs="$libs"; break])
728 done
729 LIBS="$save_LIBS"
730 test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
731 case $gcc_cv_collect2_libs in
732         "none required")        ;;
733         *)      COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
734 esac
735 AC_SUBST(COLLECT2_LIBS)
736
737 # When building Ada code on Alpha, we need exc_resume which is usually in
738 # -lexc.  So test for it.
739 save_LIBS="$LIBS"
740 LIBS=
741 AC_SEARCH_LIBS(exc_resume, exc)
742 GNAT_LIBEXC="$LIBS"
743 LIBS="$save_LIBS"
744 AC_SUBST(GNAT_LIBEXC)
745
746 # Some systems put ldexp and frexp in libm instead of libc; assume
747 # they're both in the same place.  jcf-dump needs them.
748 save_LIBS="$LIBS"
749 LIBS=
750 AC_SEARCH_LIBS(ldexp, m)
751 LDEXP_LIB="$LIBS"
752 LIBS="$save_LIBS"
753 AC_SUBST(LDEXP_LIB)
754
755 # Use <inttypes.h> only if it exists,
756 # doesn't clash with <sys/types.h>, and declares intmax_t.
757 AC_MSG_CHECKING(for inttypes.h)
758 AC_CACHE_VAL(gcc_cv_header_inttypes_h,
759 [AC_TRY_COMPILE(
760   [#include <sys/types.h>
761 #include <inttypes.h>],
762   [intmax_t i = -1;],
763   [gcc_cv_header_inttypes_h=yes],
764   gcc_cv_header_inttypes_h=no)])
765 AC_MSG_RESULT($gcc_cv_header_inttypes_h)
766 if test $gcc_cv_header_inttypes_h = yes; then
767   AC_DEFINE(HAVE_INTTYPES_H, 1,
768         [Define if you have a working <inttypes.h> header file.])
769 fi
770
771 dnl Disabled until we have a complete test for buggy enum bitfields.
772 dnl gcc_AC_C_ENUM_BF_UNSIGNED
773
774 AC_CHECK_FUNCS(times clock dup2 kill getrlimit setrlimit atoll atoq \
775         sysconf strsignal putc_unlocked fputc_unlocked fputs_unlocked \
776         fwrite_unlocked fprintf_unlocked getrusage nl_langinfo lstat \
777         scandir alphasort gettimeofday mbstowcs wcswidth mmap mincore)
778
779 if test x$ac_cv_func_mbstowcs = xyes; then
780   AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
781 [    AC_TRY_RUN([#include <stdlib.h>
782 int main()
783 {
784   mbstowcs(0, "", 0);
785   return 0;
786 }],
787     gcc_cv_func_mbstowcs_works=yes,
788     gcc_cv_func_mbstowcs_works=no,
789     gcc_cv_func_mbstowcs_works=yes)])
790   if test x$gcc_cv_func_mbstowcs_works = xyes; then
791     AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
792   [Define this macro if mbstowcs does not crash when its
793    first argument is NULL.])
794   fi
795 fi
796
797 AC_CHECK_TYPE(ssize_t, int)
798
799 # Try to determine the array type of the second argument of getgroups
800 # for the target system (int or gid_t).
801 AC_TYPE_GETGROUPS
802 if test "${target}" = "${build}"; then
803   TARGET_GETGROUPS_T=$ac_cv_type_getgroups
804 else
805   case "${target}" in
806         # This condition may need some tweaking.  It should include all
807         # targets where the array type of the second argument of getgroups
808         # is int and the type of gid_t is not equivalent to int.
809         *-*-sunos* | *-*-ultrix*)
810                 TARGET_GETGROUPS_T=int
811                 ;;
812         *)
813                 TARGET_GETGROUPS_T=gid_t
814                 ;;
815   esac
816 fi
817 AC_SUBST(TARGET_GETGROUPS_T)
818
819 gcc_AC_FUNC_PRINTF_PTR
820 gcc_AC_FUNC_MMAP_BLACKLIST
821
822 case "${host}" in
823 *-*-uwin*)
824   AC_MSG_ERROR([
825 *** UWIN may not be used as a host platform because
826 *** linking with posix.dll is not allowed by the GNU GPL])
827   ;;
828 *-*-*vms*)
829   # Under VMS, vfork works very different than on Unix. The standard test 
830   # won't work, and it isn't easily adaptable. It makes more sense to
831   # just force it.
832   ac_cv_func_vfork_works=yes
833   ;;
834 esac
835 AC_FUNC_VFORK
836
837 AM_ICONV
838
839 # We will need to find libiberty.h and ansidecl.h
840 saved_CFLAGS="$CFLAGS"
841 CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
842 gcc_AC_CHECK_DECLS(getenv atol sbrk abort atof getcwd getwd \
843         strsignal putc_unlocked fputs_unlocked fwrite_unlocked \
844         fprintf_unlocked strstr errno vasprintf \
845         malloc realloc calloc free basename getopt clock, , ,[
846 #include "ansidecl.h"
847 #include "system.h"])
848
849 gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
850 #include "ansidecl.h"
851 #include "system.h"
852 #ifdef HAVE_SYS_RESOURCE_H
853 #include <sys/resource.h>
854 #endif
855 ])
856
857 AC_TRY_COMPILE([
858 #include "ansidecl.h"
859 #include "system.h"
860 #ifdef HAVE_SYS_RESOURCE_H
861 #include <sys/resource.h>
862 #endif
863 ],[rlim_t l = 0;],,[AC_DEFINE([rlim_t],[long],
864 [Define to \`long' if <sys/resource.h> doesn't define.])])
865
866 gcc_AC_CHECK_DECLS(ldgetname, , ,[
867 #include "ansidecl.h"
868 #include "system.h"
869 #ifdef HAVE_LDFCN_H
870 #include <ldfcn.h>
871 #endif
872 ])
873
874 gcc_AC_CHECK_DECLS(times, , ,[
875 #include "ansidecl.h"
876 #include "system.h"
877 #ifdef HAVE_SYS_TIMES_H
878 #include <sys/times.h>
879 #endif
880 ])
881
882 # More time-related stuff.
883 AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
884 AC_TRY_COMPILE([
885 #include "ansidecl.h"
886 #include "system.h"
887 #ifdef HAVE_SYS_TIMES_H
888 #include <sys/times.h>
889 #endif
890 ], [struct tms tms;], ac_cv_struct_tms=yes, ac_cv_struct_tms=no)])
891 if test $ac_cv_struct_tms = yes; then
892   AC_DEFINE(HAVE_STRUCT_TMS, 1,
893   [Define if <sys/times.h> defines struct tms.])
894 fi
895
896 # use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
897 # revisit after autoconf 2.50.
898 AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
899 AC_TRY_COMPILE([
900 #include "ansidecl.h"
901 #include "system.h"
902 ], [clock_t x;], gcc_cv_type_clock_t=yes, gcc_cv_type_clock_t=no)])
903 if test $gcc_cv_type_clock_t = yes; then
904   AC_DEFINE(HAVE_CLOCK_T, 1,
905   [Define if <time.h> defines clock_t.])
906 fi
907
908 AC_CACHE_CHECK(for uchar, gcc_cv_type_uchar,
909 [AC_TRY_COMPILE([
910 #include "ansidecl.h"
911 #include "system.h"
912 ], 
913 [if ((uchar *)0) return 0;
914  if (sizeof(uchar)) return 0;],
915 ac_cv_type_uchar=yes, ac_cv_type_uchar=no)])
916 if test $ac_cv_type_uchar = yes; then
917   AC_DEFINE(HAVE_UCHAR, 1,
918   [Define if <sys/types.h> defines \`uchar'.])
919 fi
920
921 # Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
922 CFLAGS="$saved_CFLAGS"
923
924 gcc_AC_INITFINI_ARRAY
925
926 # mkdir takes a single argument on some systems. 
927 gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
928
929 # File extensions
930 manext='.1'
931 objext='.o'
932 AC_SUBST(manext)
933 AC_SUBST(objext)
934
935 # With Setjmp/Longjmp based exception handling.
936 AC_ARG_ENABLE(sjlj-exceptions,
937 [  --enable-sjlj-exceptions
938                           arrange to use setjmp/longjmp exception handling],
939 [sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
940 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
941   [Define 0/1 to force the choice for exception handling model.])])
942
943 AC_CHECK_LIB(unwind, main, use_libunwind_default=yes, use_libunwind_default=no)
944 # Use libunwind based exception handling.
945 AC_ARG_ENABLE(libunwind-exceptions,
946 [  --enable-libunwind-exceptions  force use libunwind for exceptions],
947 use_libunwind_exceptions=$enableval,
948 use_libunwind_exceptions=$use_libunwind_default)
949 if test x"$use_libunwind_exceptions" = xyes; then
950    AC_DEFINE(USE_LIBUNWIND_EXCEPTIONS, 1,
951         [Define if gcc should use -lunwind.])
952 fi
953
954 # --------------------------------------------------------
955 # Build, host, and target specific configuration fragments
956 # --------------------------------------------------------
957
958 target_gtfiles=
959 build_xm_file=
960 build_xm_defines=
961 build_install_headers_dir=install-headers-tar
962 build_exeext=
963 host_xm_file=
964 host_xm_defines=
965 host_xmake_file=
966 host_exeext=
967
968 # Decode the host machine, then the target machine.
969 # For the host machine, we save the xm_file variable as host_xm_file;
970 # then we decode the target machine and forget everything else
971 # that came from the host machine.
972 for machine in $build $host $target; do
973         . ${srcdir}/config.gcc
974 done
975
976 extra_objs="${host_extra_objs} ${extra_objs}"
977
978 # Default the target-machine variables that were not explicitly set.
979 if test x"$tm_file" = x
980 then tm_file=$cpu_type/$cpu_type.h; fi
981
982 if test x"$extra_headers" = x
983 then extra_headers=; fi
984
985 if test x$md_file = x
986 then md_file=$cpu_type/$cpu_type.md; fi
987
988 if test x$out_file = x
989 then out_file=$cpu_type/$cpu_type.c; fi
990
991 if test x"$tmake_file" = x
992 then tmake_file=$cpu_type/t-$cpu_type
993 fi
994
995 if test x"$dwarf2" = xyes
996 then tm_file="$tm_file tm-dwarf2.h"
997 fi
998
999 # Say what files are being used for the output code and MD file.
1000 echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
1001 echo "Using \`$srcdir/config/$md_file' as machine description file."
1002
1003 # If any of the xm_file variables contain nonexistent files, warn
1004 # about them and drop them.
1005
1006 bx=
1007 for x in $build_xm_file; do
1008   if    test -f $srcdir/config/$x
1009   then      bx="$bx $x"
1010   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
1011   fi
1012 done
1013 build_xm_file="$bx"
1014
1015 hx=
1016 for x in $host_xm_file; do
1017   if    test -f $srcdir/config/$x
1018   then      hx="$hx $x"
1019   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
1020   fi
1021 done
1022 host_xm_file="$hx"
1023
1024 tx=
1025 for x in $xm_file; do
1026   if    test -f $srcdir/config/$x
1027   then      tx="$tx $x"
1028   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
1029   fi
1030 done
1031 xm_file="$tx"
1032
1033 count=a
1034 for f in $tm_file; do
1035         count=${count}x
1036 done
1037 if test $count = ax; then
1038         echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1039 else
1040         echo "Using the following target machine macro files:"
1041         for f in $tm_file; do
1042                 echo "  $srcdir/config/$f"
1043         done
1044 fi
1045
1046 if test x$need_64bit_hwint = xyes; then
1047         AC_DEFINE(NEED_64BIT_HOST_WIDE_INT, 1,
1048 [Define to 1 if HOST_WIDE_INT must be 64 bits wide (see hwint.h).])
1049 fi
1050
1051 count=a
1052 for f in $host_xm_file; do
1053         count=${count}x
1054 done
1055 if test $count = a; then
1056         :
1057 elif test $count = ax; then
1058         echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1059 else
1060         echo "Using the following host machine macro files:"
1061         for f in $host_xm_file; do
1062                 echo "  $srcdir/config/$f"
1063         done
1064 fi
1065 echo "Using ${out_host_hook_obj} for host machine hooks."
1066
1067 if test "$host_xm_file" != "$build_xm_file"; then
1068         count=a
1069         for f in $build_xm_file; do
1070                 count=${count}x
1071         done
1072         if test $count = a; then
1073                 :
1074         elif test $count = ax; then
1075                 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
1076         else
1077                 echo "Using the following build machine macro files:"
1078                 for f in $build_xm_file; do
1079                         echo "  $srcdir/config/$f"
1080                 done
1081         fi
1082 fi
1083
1084 if test x$thread_file = x; then
1085         if test x$target_thread_file != x; then
1086                 thread_file=$target_thread_file
1087         else
1088                 thread_file='single'
1089         fi
1090 fi
1091
1092 if test x$enable___cxa_atexit = xyes || \
1093    test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
1094   AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 1,
1095   [Define if you want to use __cxa_atexit, rather than atexit, to
1096    register C++ destructors for local statics and global objects.
1097    This is essential for fully standards-compliant handling of
1098    destructors, but requires __cxa_atexit in libc.])
1099 fi
1100
1101 # Look for a file containing extra machine modes.
1102 if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
1103   extra_modes_file='$(srcdir)'/config/${extra_modes}
1104   AC_SUBST(extra_modes_file)
1105   AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "$extra_modes",
1106   [Define to the name of a file containing a list of extra machine modes
1107    for this architecture.])
1108   AC_DEFINE(EXTRA_CC_MODES, 1,
1109   [Define if the target architecture needs extra machine modes to represent
1110    the results of comparisons.])
1111 fi
1112
1113 # auto-host.h is the file containing items generated by autoconf and is
1114 # the first file included by config.h.
1115 # If host=build, it is correct to have bconfig include auto-host.h
1116 # as well.  If host!=build, we are in error and need to do more 
1117 # work to find out the build config parameters.
1118 if test x$host = x$build
1119 then
1120         build_auto=auto-host.h
1121         FORBUILD=..
1122 else
1123         # We create a subdir, then run autoconf in the subdir.
1124         # To prevent recursion we set host and build for the new
1125         # invocation of configure to the build for this invocation
1126         # of configure. 
1127         tempdir=build.$$
1128         rm -rf $tempdir
1129         mkdir $tempdir
1130         cd $tempdir
1131         case ${srcdir} in
1132         /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
1133         *) realsrcdir=../${srcdir};;
1134         esac
1135         saved_CFLAGS="${CFLAGS}"
1136         CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
1137         ${realsrcdir}/configure \
1138                 --target=$target_alias --host=$build_alias --build=$build_alias
1139         CFLAGS="${saved_CFLAGS}"
1140
1141         # We just finished tests for the build machine, so rename
1142         # the file auto-build.h in the gcc directory.
1143         mv auto-host.h ../auto-build.h
1144         cd ..
1145         rm -rf $tempdir
1146         build_auto=auto-build.h
1147         FORBUILD=../${build_subdir}
1148 fi
1149 AC_SUBST(FORBUILD)
1150
1151 tm_file="${tm_file} defaults.h"
1152 tm_p_file="${tm_p_file} tm-preds.h"
1153 host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
1154 build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
1155 # We don't want ansidecl.h in target files, write code there in ISO/GNU C.
1156 # put this back in temporarily.
1157 xm_file="ansidecl.h ${xm_file}"
1158
1159 # --------
1160 # UNSORTED
1161 # --------
1162
1163 # Get the version trigger filename from the toplevel
1164 if test "${with_gcc_version_trigger+set}" = set; then
1165         gcc_version_trigger=$with_gcc_version_trigger
1166 else
1167         gcc_version_trigger=${srcdir}/version.c
1168 fi
1169 changequote(,)dnl
1170 gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'`
1171 gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
1172
1173 # Compile in configure arguments.
1174 if test -f configargs.h ; then
1175         # Being re-configured.
1176         gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
1177         gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
1178 else
1179         gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
1180 fi
1181 cat > configargs.h <<EOF
1182 /* Generated automatically. */
1183 static const char configuration_arguments[] = "$gcc_config_arguments";
1184 static const char thread_model[] = "$thread_file";
1185
1186 static const struct {
1187   const char *name, *value;
1188 } configure_default_options[] = $configure_default_options;
1189 EOF
1190 changequote([,])dnl
1191
1192 # Internationalization
1193 PACKAGE=gcc
1194 VERSION="$gcc_version"
1195 AC_SUBST(PACKAGE)
1196 AC_SUBST(VERSION)
1197
1198 # Enable NLS support by default
1199 AC_ARG_ENABLE(nls,
1200   [  --enable-nls            use Native Language Support (default)],
1201   , enable_nls=yes)
1202
1203 # if cross compiling, disable NLS support.
1204 # It's not worth the trouble, at least for now.
1205
1206 if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
1207   AC_MSG_WARN(Disabling NLS support for canadian cross compiler.)
1208   enable_nls=no
1209 fi
1210
1211 CY_GNU_GETTEXT
1212
1213 # Windows32 Registry support for specifying GCC installation paths.
1214 AC_ARG_ENABLE(win32-registry,
1215 [  --disable-win32-registry
1216                           disable lookup of installation paths in the
1217                           Registry on Windows hosts
1218   --enable-win32-registry enable registry lookup (default)
1219   --enable-win32-registry=KEY
1220                           use KEY instead of GCC version as the last portion
1221                           of the registry key],,)
1222 case $host_os in
1223         win32 | pe | cygwin* | mingw32* | uwin*)
1224 AC_MSG_CHECKING(whether windows registry support is requested)
1225 if test "x$enable_win32_registry" != xno; then
1226   AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
1227 [Define to 1 if installation paths should be looked up in Windows32
1228    Registry. Ignored on non windows32 hosts.])
1229   AC_MSG_RESULT(yes)
1230   AC_SEARCH_LIBS(RegOpenKeyExA, advapi32)
1231 else
1232   AC_MSG_RESULT(no)
1233 fi
1234
1235 # Check if user specified a different registry key.
1236 case "x${enable_win32_registry}" in
1237 x | xyes)
1238   # default.
1239   gcc_cv_win32_registry_key="$VERSION"
1240   ;;
1241 xno)
1242   # no registry lookup.
1243   gcc_cv_win32_registry_key=''
1244   ;;
1245 *)
1246   # user-specified key.
1247   gcc_cv_win32_registry_key="$enable_win32_registry"
1248   ;;
1249 esac
1250
1251 if test "x$enable_win32_registry" != xno; then
1252   AC_MSG_CHECKING(registry key on windows hosts)
1253   AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key",
1254         [Define to be the last portion of registry key on windows hosts.])
1255   AC_MSG_RESULT($gcc_cv_win32_registry_key)
1256 fi
1257 ;;
1258 esac
1259
1260 # Get an absolute path to the GCC top-level source directory
1261 holddir=`${PWDCMD-pwd}`
1262 cd $srcdir
1263 topdir=`${PWDCMD-pwd}`
1264 cd $holddir
1265
1266 # Conditionalize the makefile for this host machine.
1267 # Make-host contains the concatenation of all host makefile fragments
1268 # [there can be more than one].  This file is built by configure.frag.
1269 host_overrides=Make-host
1270 dep_host_xmake_file=
1271 for f in .. ${host_xmake_file}
1272 do
1273         if test -f ${srcdir}/config/$f
1274         then
1275                 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
1276         fi
1277 done
1278
1279 # Conditionalize the makefile for this target machine.
1280 # Make-target contains the concatenation of all host makefile fragments
1281 # [there can be more than one].  This file is built by configure.frag.
1282 target_overrides=Make-target
1283 dep_tmake_file=
1284 for f in .. ${tmake_file}
1285 do
1286         if test -f ${srcdir}/config/$f
1287         then
1288                 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
1289         fi
1290 done
1291
1292 symbolic_link='ln -s'
1293
1294 # If the host doesn't support symlinks, modify CC in
1295 # FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
1296 # Otherwise, we can use "CC=$(CC)".
1297 rm -f symtest.tem
1298 if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
1299 then
1300         cc_set_by_configure="\$(CC)"
1301         quoted_cc_set_by_configure="\$(CC)"
1302         stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1303         quoted_stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1304 else
1305         rm -f symtest.tem
1306         if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
1307         then
1308                 symbolic_link="cp -p"
1309         else
1310                 symbolic_link="cp"
1311         fi
1312         cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
1313         quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
1314         stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
1315         quoted_stage_prefix_set_by_configure="\\\`case '\\\$(STAGE_PREFIX)' in stage*) echo '\\\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(STAGE_PREFIX)';; esac\\\`"
1316 fi
1317 rm -f symtest.tem
1318
1319 out_object_file=`basename $out_file .c`.o
1320
1321 tm_file_list=
1322 for f in $tm_file; do
1323   case $f in
1324     ansidecl.h )
1325        tm_file_list="${tm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1326     defaults.h )
1327        tm_file_list="${tm_file_list} \$(srcdir)/$f" ;;
1328     *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
1329   esac
1330 done
1331
1332 tm_p_file_list=
1333 for f in $tm_p_file; do
1334   case $f in
1335     tm-preds.h )
1336        tm_p_file_list="${tm_p_file_list} $f" ;;
1337     *) tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f" ;;
1338   esac
1339 done
1340
1341 host_xm_file_list=
1342 for f in $host_xm_file; do
1343   case $f in
1344     ansidecl.h )
1345        host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1346     auto-host.h )
1347        host_xm_file_list="${host_xm_file_list} $f" ;;
1348     defaults.h )
1349        host_xm_file_list="${host_xm_file_list} \$(srcdir)/$f" ;;
1350     *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
1351   esac
1352 done
1353
1354 build_xm_file_list=
1355 for f in $build_xm_file; do
1356   case $f in
1357     ansidecl.h )
1358        build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1359     auto-build.h | auto-host.h )
1360        build_xm_file_list="${build_xm_file_list} $f" ;;
1361     defaults.h )
1362        host_xm_file_list="${host_xm_file_list} \$(srcdir)/$f" ;;
1363     *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
1364   esac
1365 done
1366
1367 # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
1368 # Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1369 CROSS=                                          AC_SUBST(CROSS)
1370 ALL=all.internal                                AC_SUBST(ALL)
1371 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
1372 if test x$host != x$target
1373 then
1374         CROSS="-DCROSS_COMPILE"
1375         ALL=all.cross
1376         SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
1377         case "$host","$target" in
1378             i?86-*-*,x86_64-*-* \
1379             | powerpc*-*-*,powerpc64*-*-*)
1380                 CROSS="$CROSS -DNATIVE_CROSS" ;;
1381         esac
1382 elif test "x$TARGET_SYSTEM_ROOT" != x; then
1383         # This is just $(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR)
1384         SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
1385 fi
1386
1387 # If this is a cross-compiler that does not
1388 # have its own set of headers then define
1389 # inhibit_libc
1390
1391 # If this is using newlib, without having the headers available now,
1392 # then define inhibit_libc in LIBGCC2_CFLAGS.
1393 # This prevents libgcc2 from containing any code which requires libc
1394 # support.
1395 inhibit_libc=
1396 if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
1397        test x$with_newlib = xyes ; } &&
1398      test "x$with_headers" = x ; then
1399        inhibit_libc=-Dinhibit_libc
1400 fi
1401 AC_SUBST(inhibit_libc)
1402
1403 # When building gcc with a cross-compiler, we need to adjust things so
1404 # that the generator programs are still built with the native compiler.
1405 # Also, we cannot run fixincludes or fix-header.
1406
1407 # These are the normal (build=host) settings:
1408 BUILD_PREFIX=                   AC_SUBST(BUILD_PREFIX)
1409 BUILD_PREFIX_1=ignore-          AC_SUBST(BUILD_PREFIX_1)
1410 CC_FOR_BUILD='$(CC)'            AC_SUBST(CC_FOR_BUILD)
1411 BUILD_CFLAGS='$(ALL_CFLAGS)'    AC_SUBST(BUILD_CFLAGS)
1412
1413 STMP_FIXINC=stmp-fixinc         AC_SUBST(STMP_FIXINC)
1414 STMP_FIXPROTO=stmp-fixproto     AC_SUBST(STMP_FIXPROTO)
1415
1416 # And these apply if build != host.
1417 if test x$build != x$host
1418 then
1419     BUILD_PREFIX=build-
1420     BUILD_PREFIX_1=build-
1421     BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)'
1422
1423     if test "x$TARGET_SYSTEM_ROOT" = x; then
1424         STMP_FIXINC=
1425         STMP_FIXPROTO=
1426     fi
1427 fi
1428
1429 # Expand extra_headers to include complete path.
1430 # This substitutes for lots of t-* files.
1431 extra_headers_list=
1432 if test "x$extra_headers" = x
1433 then true
1434 else
1435         # Prepend ${srcdir}/config/${cpu_type}/ to every entry in extra_headers.
1436         for file in $extra_headers;
1437         do
1438                 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
1439         done
1440 fi
1441
1442 # Add a definition of USE_COLLECT2 if system wants one.
1443 case $use_collect2 in
1444   no) use_collect2= ;;
1445   "") ;;
1446   *) 
1447     host_xm_defines="${host_xm_defines} USE_COLLECT2"
1448     xm_defines="${xm_defines} USE_COLLECT2"
1449     ;;
1450 esac
1451
1452 # Identify the assembler which will work hand-in-glove with the newly
1453 # built GCC, so that we can examine its features.  This is the assembler
1454 # which will be driven by the driver program.
1455 #
1456 # If build != host, and we aren't building gas in-tree, we identify a
1457 # build->target assembler and hope that it will have the same features
1458 # as the host->target assembler we'll be using.
1459 AC_MSG_CHECKING(what assembler to use)
1460 in_tree_gas=no
1461 gcc_cv_as=
1462 gcc_cv_gas_major_version=
1463 gcc_cv_gas_minor_version=
1464 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
1465 if test -x "$DEFAULT_ASSEMBLER"; then
1466         gcc_cv_as="$DEFAULT_ASSEMBLER"
1467 elif test -x "$AS"; then
1468         gcc_cv_as="$AS"
1469 elif test -x as$host_exeext; then
1470         # Build using assembler in the current directory.
1471         gcc_cv_as=./as$host_exeext
1472 elif test -f $gcc_cv_as_gas_srcdir/configure.in \
1473      && test -f ../gas/Makefile; then
1474   # Single tree build which includes gas.
1475   in_tree_gas=yes
1476   _gcc_COMPUTE_GAS_VERSION
1477   rm -f as$host_exeext
1478   $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
1479   in_tree_gas_is_elf=no
1480   if grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1481      || (grep 'obj_format = multi' ../gas/Makefile \
1482          && grep 'extra_objects =.* obj-elf' ../gas/Makefile) > /dev/null
1483   then
1484     in_tree_gas_is_elf=yes
1485   fi
1486 fi
1487
1488 if test "x$gcc_cv_as" = x; then
1489         # Search the same directories that the installed compiler will
1490         # search.  Else we may find the wrong assembler and lose.  If we
1491         # do not find a suitable assembler binary, then try the user's
1492         # path.
1493         #
1494         # Also note we have to check MD_EXEC_PREFIX before checking the
1495         # user's path.  Unfortunately, there is no good way to get at the
1496         # value of MD_EXEC_PREFIX here.  So we do a brute force search
1497         # through all the known MD_EXEC_PREFIX values.  Ugh.  This needs
1498         # to be fixed as part of the make/configure rewrite too.
1499
1500         if test "x$exec_prefix" = xNONE; then
1501                 if test "x$prefix" = xNONE; then
1502                         test_prefix=/usr/local
1503                 else
1504                         test_prefix=$prefix
1505                 fi
1506         else
1507                 test_prefix=$exec_prefix
1508         fi
1509
1510         # If the loop below does not find an assembler, then use whatever
1511         # one we can find in the users's path.
1512         # user's path.
1513         if test "x$program_prefix" != xNONE; then
1514                 gcc_cv_as=${program_prefix}as$host_exeext
1515         else
1516                 gcc_cv_as=`echo as | sed ${program_transform_name}`$host_exeext
1517         fi
1518
1519         test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1520                    $test_prefix/lib/gcc-lib/$target_alias \
1521                    /usr/lib/gcc/$target_alias/$gcc_version \
1522                    /usr/lib/gcc/$target_alias \
1523                    $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1524                    $test_prefix/$target_alias/bin"
1525
1526         if test x$host = x$target; then
1527             test_dirs="$test_dirs \
1528                    /usr/libexec \
1529                    /usr/ccs/gcc \
1530                    /usr/ccs/bin \
1531                    /udk/usr/ccs/bin \
1532                    /bsd43/usr/lib/cmplrs/cc \
1533                    /usr/cross64/usr/bin \
1534                    /usr/lib/cmplrs/cc \
1535                    /sysv/usr/lib/cmplrs/cc \
1536                    /svr4/usr/lib/cmplrs/cc \
1537                    /usr/bin"
1538         fi
1539
1540         for dir in $test_dirs; do
1541                 if test -x $dir/as$host_exeext; then
1542                         gcc_cv_as=$dir/as$host_exeext
1543                         break;
1544                 fi
1545         done
1546 fi
1547 case $in_tree_gas in
1548   yes)
1549     AC_MSG_RESULT("newly built gas")
1550     ;;
1551   no)
1552     AC_MSG_RESULT($gcc_cv_as)
1553     ;;
1554 esac
1555
1556 # Identify the linker which will work hand-in-glove with the newly
1557 # built GCC, so that we can examine its features.  This is the linker
1558 # which will be driven by the driver program.
1559 #
1560 # If build != host, and we aren't building gas in-tree, we identify a
1561 # build->target linker and hope that it will have the same features
1562 # as the host->target linker we'll be using.
1563 AC_MSG_CHECKING(what linker to use)
1564 in_tree_ld=no
1565 gcc_cv_ld=
1566 gcc_cv_gld_major_version=
1567 gcc_cv_gld_minor_version=
1568 gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1569 gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1570 if test -x "$DEFAULT_LINKER"; then
1571         gcc_cv_ld="$DEFAULT_LINKER"
1572 elif test -x "$LD"; then
1573         gcc_cv_ld="$LD"
1574 elif test -x collect-ld$host_exeext; then
1575         # Build using linker in the current directory.
1576         gcc_cv_ld=./collect-ld$host_exeext
1577 elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
1578      && test -f ../ld/Makefile; then
1579         # Single tree build which includes ld.
1580         in_tree_ld=yes
1581         in_tree_ld_is_elf=no
1582         if (grep 'EMUL = .*elf' ../ld/Makefile \
1583             || grep 'EMUL = .*linux' ../ld/Makefile) > /dev/null; then
1584           in_tree_ld_is_elf=yes
1585         fi
1586         for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.in $gcc_cv_ld_gld_srcdir/Makefile.in
1587         do
1588 changequote(,)dnl
1589                 gcc_cv_gld_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1590 changequote([,])dnl
1591                 if test x$gcc_cv_gld_version != x; then
1592                         break
1593                 fi
1594         done
1595 changequote(,)dnl
1596         gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
1597         gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1598 changequote([,])dnl
1599         rm -f collect-ld$host_exeext
1600         $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext \
1601                 2>/dev/null
1602 fi
1603
1604 if test "x$gcc_cv_ld" = x; then
1605         # Search the same directories that the installed compiler will
1606         # search.  Else we may find the wrong linker and lose.  If we
1607         # do not find a suitable linker binary, then try the user's
1608         # path.
1609         #
1610         # Also note we have to check MD_EXEC_PREFIX before checking the
1611         # user's path.  Unfortunately, there is no good way to get at the
1612         # value of MD_EXEC_PREFIX here.  So we do a brute force search
1613         # through all the known MD_EXEC_PREFIX values.  Ugh.  This needs
1614         # to be fixed as part of the make/configure rewrite too.
1615
1616         if test "x$exec_prefix" = xNONE; then
1617                 if test "x$prefix" = xNONE; then
1618                         test_prefix=/usr/local
1619                 else
1620                         test_prefix=$prefix
1621                 fi
1622         else
1623                 test_prefix=$exec_prefix
1624         fi
1625
1626         # If the loop below does not find an linker, then use whatever
1627         # one we can find in the users's path.
1628         # user's path.
1629         if test "x$program_prefix" != xNONE; then
1630                 gcc_cv_ld=${program_prefix}ld$host_exeext
1631         else
1632                 gcc_cv_ld=`echo ld | sed ${program_transform_name}`$host_exeext
1633         fi
1634
1635         test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1636                    $test_prefix/lib/gcc-lib/$target_alias \
1637                    /usr/lib/gcc/$target_alias/$gcc_version \
1638                    /usr/lib/gcc/$target_alias \
1639                    $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1640                    $test_prefix/$target_alias/bin"
1641
1642         if test x$host = x$target; then
1643             test_dirs="$test_dirs \
1644                    /usr/libexec \
1645                    /usr/ccs/gcc \
1646                    /usr/ccs/bin \
1647                    /udk/usr/ccs/bin \
1648                    /bsd43/usr/lib/cmplrs/cc \
1649                    /usr/cross64/usr/bin \
1650                    /usr/lib/cmplrs/cc \
1651                    /sysv/usr/lib/cmplrs/cc \
1652                    /svr4/usr/lib/cmplrs/cc \
1653                    /usr/bin"
1654         fi
1655
1656         for dir in $test_dirs; do
1657                 if test -x $dir/ld$host_exeext; then
1658                         gcc_cv_ld=$dir/ld$host_exeext
1659                         break;
1660                 fi
1661         done
1662 fi
1663 case $in_tree_ld in
1664   yes)
1665     AC_MSG_RESULT("newly built ld")
1666     ;;
1667   no)
1668     AC_MSG_RESULT($gcc_cv_ld)
1669     ;;
1670 esac
1671
1672 # Figure out what nm we will be using.
1673 gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
1674 AC_MSG_CHECKING(what nm to use)
1675 in_tree_nm=no
1676 if test -x nm$host_exeext; then
1677         gcc_cv_nm=./nm$host_exeext
1678 elif test -f $gcc_cv_binutils_srcdir/configure.in \
1679      && test -f ../binutils/Makefile; then
1680         # Single tree build which includes binutils.
1681         in_tree_nm=yes
1682         gcc_cv_nm=./nm$host_exeext
1683         rm -f nm$host_exeext
1684         $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
1685 elif test "x$program_prefix" != xNONE; then
1686         gcc_cv_nm=${program_prefix}nm$host_exeext
1687 else
1688         gcc_cv_nm=`echo nm | sed ${program_transform_name}`$host_exeext
1689 fi
1690 case $in_tree_nm in
1691   yes) AC_MSG_RESULT("newly built nm") ;;
1692   no)  AC_MSG_RESULT($gcc_cv_nm) ;;
1693 esac
1694
1695 # Figure out what objdump we will be using.
1696 AC_MSG_CHECKING(what objdump to use)
1697 in_tree_objdump=no
1698 if test -x objdump$host_exeext; then
1699         gcc_cv_objdump=./objdump$host_exeext
1700 elif test -f $gcc_cv_binutils_srcdir/configure.in \
1701      && test -f ../binutils/Makefile; then
1702         # Single tree build which includes binutils.
1703         in_tree_objdump=yes
1704         gcc_cv_objdump=./objdump$host_exeext
1705         rm -f objdump$host_exeext
1706         $symbolic_link ../binutils/objdump$host_exeext \
1707                 objdump$host_exeext 2>/dev/null
1708 elif test "x$program_prefix" != xNONE; then
1709         gcc_cv_objdump=${program_prefix}objdump$host_exeext
1710 else
1711         gcc_cv_objdump=`echo objdump | \
1712                 sed ${program_transform_name}`$host_exeext
1713 fi
1714 case $in_tree_objdump in
1715   yes) AC_MSG_RESULT("newly built objdump") ;;
1716   no)  AC_MSG_RESULT($gcc_cv_objdump) ;;
1717 esac
1718
1719 # Figure out what assembler alignment features are present.
1720 AC_MSG_CHECKING(assembler alignment features)
1721 gcc_cv_as_alignment_features=none
1722 if test $in_tree_gas = yes; then
1723   # Gas version 2.6 and later support for .balign and .p2align.
1724   gcc_GAS_VERSION_GTE_IFELSE(2,6,0,[
1725     gcc_cv_as_alignment_features=".balign and .p2align"
1726     AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1727   ])
1728   # Gas version 2.8 and later support specifying the maximum
1729   # bytes to skip when using .p2align.
1730   gcc_GAS_VERSION_GTE_IFELSE(2,8,0,[
1731     gcc_cv_as_alignment_features=".p2align including maximum skip"
1732     AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1733   ])
1734 elif test x$gcc_cv_as != x; then
1735         # Check if we have .balign and .p2align
1736         echo ".balign  4" > conftest.s
1737         echo ".p2align  2" >> conftest.s
1738         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1739                 gcc_cv_as_alignment_features=".balign and .p2align"
1740                 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1741         fi
1742         rm -f conftest.s conftest.o
1743         # Check if specifying the maximum bytes to skip when
1744         # using .p2align is supported.
1745         echo ".p2align 4,,7" > conftest.s
1746         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1747                 gcc_cv_as_alignment_features=".p2align including maximum skip"
1748                 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1749         fi
1750         rm -f conftest.s conftest.o
1751 fi
1752 AC_MSG_RESULT($gcc_cv_as_alignment_features)
1753
1754 AC_MSG_CHECKING(assembler subsection support)
1755 gcc_cv_as_subsections=no
1756 if test $in_tree_gas = yes ; then
1757   gcc_GAS_VERSION_GTE_IFELSE(2,9,0,[
1758     test $in_tree_gas_is_elf = yes \
1759         && gcc_cv_as_subsections="working .subsection -1"
1760   ])
1761 elif test x$gcc_cv_as != x; then
1762         # Check if we have .subsection
1763         echo ".subsection 1" > conftest.s
1764         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1765                 gcc_cv_as_subsections=".subsection"
1766                 if test x$gcc_cv_nm != x; then
1767                         cat > conftest.s <<EOF
1768 conftest_label1: .word 0
1769 .subsection -1
1770 conftest_label2: .word 0
1771 .previous
1772 EOF
1773                         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1774                                 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1775                                 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1776                                 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
1777                                         :
1778                                 else
1779                                         gcc_cv_as_subsections="working .subsection -1"
1780                                 fi
1781                         fi
1782                 fi
1783         fi
1784         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1785 fi
1786 if test x"$gcc_cv_as_subsections" = x"working .subsection -1"; then
1787         AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1788 [Define if your assembler supports .subsection and .subsection -1 starts
1789    emitting at the beginning of your section.])
1790 fi
1791 AC_MSG_RESULT($gcc_cv_as_subsections)
1792
1793 AC_MSG_CHECKING(assembler weak support)
1794 gcc_cv_as_weak=no
1795 if test $in_tree_gas = yes ; then
1796   gcc_GAS_VERSION_GTE_IFELSE(2,2,0,[
1797     gcc_cv_as_weak="yes"
1798   ])
1799 elif test x$gcc_cv_as != x; then
1800         # Check if we have .weak
1801         echo "  .weak foobar" > conftest.s
1802         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1803                 gcc_cv_as_weak="yes"
1804         fi
1805         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1806 fi
1807 if test x"$gcc_cv_as_weak" = xyes; then
1808         AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])
1809 fi
1810 AC_MSG_RESULT($gcc_cv_as_weak)
1811
1812 AC_MSG_CHECKING(assembler hidden support)
1813 gcc_cv_as_hidden=no
1814 if test $in_tree_gas = yes ; then
1815   gcc_GAS_VERSION_GTE_IFELSE(2,12,1,[
1816     test $in_tree_gas_is_elf = yes && gcc_cv_as_hidden="yes"
1817   ])
1818 elif test x$gcc_cv_as != x; then
1819         # Check if we have .hidden
1820         echo "  .hidden foobar" > conftest.s
1821         echo "foobar:" >> conftest.s
1822         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1823                 gcc_cv_as_hidden="yes"
1824         fi
1825         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1826
1827         # GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
1828         # This is irritatingly difficult to feature test for.  Look for 
1829         # the date string after the version number.
1830         ld_ver=`$gcc_cv_ld --version 2>/dev/null | head -1`
1831         if echo "$ld_ver" | grep GNU > /dev/null; then
1832 changequote(,)dnl
1833                ld_vers=`echo $ld_ver | sed -n \
1834                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1835                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1836                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
1837                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\)[  ].*$,\1,p' \
1838                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[     ].*$,\1,p' \
1839                -e 's,^.*[        ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[        ].*$,\1,p'`
1840                ld_date=`echo $ld_ver | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)[-]*\([01][0-9]\)[-]*\([0-3][0-9]\).*$,\1\2\3,p'`
1841                 if test 0"$ld_date" -lt 20020404; then
1842                         if test -n "$ld_date"; then
1843                                 # If there was date string, but was earlier than 2002-04-04, fail
1844                                 gcc_cv_as_hidden="no"
1845                         elif test -z "$ld_vers"; then
1846                                 # If there was no date string nor ld version number, something is wrong
1847                                 gcc_cv_as_hidden="no"
1848                         else
1849                                 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
1850                                 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
1851                                 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
1852                                 test -z "$ld_vers_patch" && ld_vers_patch=0
1853                                 if test "$ld_vers_major" -lt 2; then
1854                                         gcc_cv_as_hidden="no"
1855                                 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
1856                                         gcc_cv_as_hidden="no"
1857                                 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 \
1858                                           -a "$ld_vers_patch" -eq 0; then
1859                                         gcc_cv_as_hidden="no"
1860                                 fi
1861                         fi
1862                 fi
1863 changequote([,])dnl
1864         fi
1865 fi
1866 case "$target" in
1867   mips-sgi-irix6*)
1868     if test x"$gnu_ld_flag" = x"no"; then
1869       # Even if using gas with .hidden support, the resulting object files
1870       # cannot be linked with the IRIX 6 O32 linker.  With the N32 and
1871       # N64 linkers, the problem is that the linker refuses to accept
1872       # -call_shared (passed by default to the linker) and -r (used to
1873       # link the object file generated without .hidden directives with
1874       # one that hides symbols), so we also lose.
1875       gcc_cv_as_hidden=no
1876     fi
1877     ;;
1878 esac
1879 if test x"$gcc_cv_as_hidden" = xyes; then
1880         AC_DEFINE(HAVE_GAS_HIDDEN, 1,
1881                 [Define if your assembler supports .hidden.])
1882 fi
1883 AC_MSG_RESULT($gcc_cv_as_hidden)
1884 libgcc_visibility=$gcc_cv_as_hidden
1885 AC_SUBST(libgcc_visibility)
1886
1887 AC_MSG_CHECKING(assembler leb128 support)
1888 gcc_cv_as_leb128=no
1889 if test $in_tree_gas = yes ; then
1890   gcc_GAS_VERSION_GTE_IFELSE(2,11,0,[
1891     test $in_tree_gas_is_elf = yes && gcc_cv_as_leb128="yes"
1892   ])
1893 elif test x$gcc_cv_as != x; then
1894         # Check if we have .[us]leb128, and support symbol arithmetic with it.
1895         cat > conftest.s <<EOF
1896         .data
1897         .uleb128 L2 - L1
1898 L1:
1899         .uleb128 1280
1900         .sleb128 -1010
1901 L2:
1902 EOF
1903         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1904                 gcc_cv_as_leb128="yes"
1905
1906                 # GAS versions before 2.11 do not support uleb128,
1907                 # despite appearing to.
1908                 # ??? There exists an elf-specific test that will crash
1909                 # the assembler.  Perhaps it's better to figure out whether
1910                 # arbitrary sections are supported and try the test.
1911                 as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
1912                 if echo "$as_ver" | grep GNU > /dev/null; then
1913 changequote(,)dnl
1914                         as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
1915                         as_major=`echo $as_ver | sed 's/\..*//'`
1916                         as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
1917 changequote([,])dnl
1918                         if test $as_major -eq 2 -a $as_minor -lt 11; then
1919                                 gcc_cv_as_leb128="no"
1920                         fi
1921                 fi
1922         fi
1923         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1924 fi
1925 if test x"$gcc_cv_as_leb128" = xyes; then
1926         AC_DEFINE(HAVE_AS_LEB128, 1,
1927                 [Define if your assembler supports .uleb128.])
1928 fi
1929 AC_MSG_RESULT($gcc_cv_as_leb128)
1930
1931 AC_MSG_CHECKING(assembler eh_frame optimization)
1932 gcc_cv_as_eh_frame=no
1933 if test $in_tree_gas = yes ; then
1934   gcc_GAS_VERSION_GTE_IFELSE(2,12,0,[
1935     test $in_tree_gas_is_elf = yes && gcc_cv_as_eh_frame="yes"
1936   ])
1937 elif test x$gcc_cv_as != x; then
1938         # Check if this is GAS.
1939         as_ver=`$gcc_cv_as --version < /dev/null 2> /dev/null | head -1`
1940         rm -f a.out 2> /dev/null
1941         if echo "$as_ver" | grep GNU > /dev/null; then
1942                 # Versions up to and including 2.11.0 may mis-optimize
1943                 # .eh_frame data.  Try something.
1944                 cat > conftest.s <<EOF
1945         .text
1946 .LFB1:
1947         .4byte  0
1948 .L1:
1949         .4byte  0
1950 .LFE1:
1951         .section        .eh_frame,"aw",@progbits
1952 __FRAME_BEGIN__:
1953         .4byte  .LECIE1-.LSCIE1
1954 .LSCIE1:
1955         .4byte  0x0
1956         .byte   0x1
1957         .ascii "z\0"
1958         .byte   0x1
1959         .byte   0x78
1960         .byte   0x1a
1961         .byte   0x0
1962         .byte   0x4
1963         .4byte  1
1964         .p2align 1
1965 .LECIE1:
1966 .LSFDE1:
1967         .4byte  .LEFDE1-.LASFDE1
1968 .LASFDE1:
1969         .4byte  .LASFDE1-__FRAME_BEGIN__
1970         .4byte  .LFB1
1971         .4byte  .LFE1-.LFB1
1972         .byte   0x4
1973         .4byte  .LFE1-.LFB1
1974         .byte   0x4
1975         .4byte  .L1-.LFB1
1976 .LEFDE1:
1977 EOF
1978                 cat > conftest.lit <<EOF
1979  0000 10000000 00000000 017a0001 781a0004  .........z..x...
1980  0010 01000000 12000000 18000000 00000000  ................
1981  0020 08000000 04080000 0044               .........D      
1982 EOF
1983                 cat > conftest.big <<EOF
1984  0000 00000010 00000000 017a0001 781a0004  .........z..x...
1985  0010 00000001 00000012 00000018 00000000  ................
1986  0020 00000008 04000000 0844               .........D      
1987 EOF
1988                 # If the assembler didn't choke, and we can objdump,
1989                 # and we got the correct data, then succeed.
1990                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
1991                    && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
1992                       | tail -3 > conftest.got \
1993                    && { cmp conftest.lit conftest.got > /dev/null 2>&1 \
1994                         || cmp conftest.big conftest.got > /dev/null 2>&1; }
1995                 then
1996                         gcc_cv_as_eh_frame="yes"
1997                 else
1998                         gcc_cv_as_eh_frame="bad"
1999                         if $gcc_cv_as -o conftest.o --traditional-format /dev/null; then
2000                                 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
2001         [Define if your assembler mis-optimizes .eh_frame data.])
2002                         fi
2003                 fi
2004         fi
2005         rm -f conftest.*
2006 fi
2007 AC_MSG_RESULT($gcc_cv_as_eh_frame)
2008
2009 AC_MSG_CHECKING(assembler section merging support)
2010 gcc_cv_as_shf_merge=no
2011 if test $in_tree_gas = yes ; then
2012   gcc_GAS_VERSION_GTE_IFELSE(2,12,0,[
2013     test $in_tree_gas_is_elf = yes && gcc_cv_as_shf_merge="yes"
2014   ])
2015 elif test x$gcc_cv_as != x; then
2016         # Check if we support SHF_MERGE sections
2017         echo '.section .rodata.str, "aMS", @progbits, 1' > conftest.s
2018         if $gcc_cv_as --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1; then
2019                 gcc_cv_as_shf_merge=yes
2020         fi
2021         rm -f conftest.s conftest.o
2022 fi
2023 if test x"$gcc_cv_as_shf_merge" = xyes; then
2024         AC_DEFINE(HAVE_GAS_SHF_MERGE, 1,
2025 [Define if your assembler supports marking sections with SHF_MERGE flag.])
2026 fi
2027 AC_MSG_RESULT($gcc_cv_as_shf_merge)
2028
2029 AC_MSG_CHECKING(assembler thread-local storage support)
2030 gcc_cv_as_tls=no
2031 conftest_s=
2032 tls_first_major=
2033 tls_first_minor=
2034 tls_as_opt=
2035 case "$target" in
2036 changequote(,)dnl
2037   alpha*-*-*)
2038     conftest_s='
2039         .section ".tdata","awT",@progbits
2040 foo:    .long   25
2041         .text
2042         ldq     $27,__tls_get_addr($29)         !literal!1
2043         lda     $16,foo($29)                    !tlsgd!1
2044         jsr     $26,($27),__tls_get_addr        !lituse_tlsgd!1
2045         ldq     $27,__tls_get_addr($29)         !literal!2
2046         lda     $16,foo($29)                    !tlsldm!2
2047         jsr     $26,($27),__tls_get_addr        !lituse_tlsldm!2
2048         ldq     $1,foo($29)                     !gotdtprel
2049         ldah    $2,foo($29)                     !dtprelhi
2050         lda     $3,foo($2)                      !dtprello
2051         lda     $4,foo($29)                     !dtprel
2052         ldq     $1,foo($29)                     !gottprel
2053         ldah    $2,foo($29)                     !tprelhi
2054         lda     $3,foo($2)                      !tprello
2055         lda     $4,foo($29)                     !tprel'
2056         tls_first_major=2
2057         tls_first_minor=13
2058         ;;
2059   i[34567]86-*-*)
2060 changequote([,])dnl
2061     conftest_s='
2062         .section ".tdata","awT",@progbits
2063 foo:    .long   25
2064         .text
2065         movl    %gs:0, %eax
2066         leal    foo@TLSGD(,%ebx,1), %eax
2067         leal    foo@TLSLDM(%ebx), %eax
2068         leal    foo@DTPOFF(%eax), %edx
2069         movl    foo@GOTTPOFF(%ebx), %eax
2070         subl    foo@GOTTPOFF(%ebx), %eax
2071         addl    foo@GOTNTPOFF(%ebx), %eax
2072         movl    foo@INDNTPOFF, %eax
2073         movl    $foo@TPOFF, %eax
2074         subl    $foo@TPOFF, %eax
2075         leal    foo@NTPOFF(%ecx), %eax'
2076         tls_first_major=2
2077         tls_first_minor=14
2078         ;;
2079   x86_64-*-*)
2080     conftest_s='
2081         .section ".tdata","awT",@progbits
2082 foo:    .long   25
2083         .text
2084         movq    %fs:0, %rax
2085         leaq    foo@TLSGD(%rip), %rdi
2086         leaq    foo@TLSLD(%rip), %rdi
2087         leaq    foo@DTPOFF(%rax), %rdx
2088         movq    foo@GOTTPOFF(%rip), %rax
2089         movq    $foo@TPOFF, %rax'
2090         tls_first_major=2
2091         tls_first_minor=14
2092         ;;
2093   ia64-*-*)
2094     conftest_s='
2095         .section ".tdata","awT",@progbits
2096 foo:    data8   25
2097         .text
2098         addl    r16 = @ltoff(@dtpmod(foo#)), gp
2099         addl    r17 = @ltoff(@dtprel(foo#)), gp
2100         addl    r18 = @ltoff(@tprel(foo#)), gp
2101         addl    r19 = @dtprel(foo#), gp
2102         adds    r21 = @dtprel(foo#), r13
2103         movl    r23 = @dtprel(foo#)
2104         addl    r20 = @tprel(foo#), gp
2105         adds    r22 = @tprel(foo#), r13
2106         movl    r24 = @tprel(foo#)'
2107         tls_first_major=2
2108         tls_first_minor=13
2109         ;;
2110   powerpc-*-*)
2111     conftest_s='
2112         .section ".tdata","awT",@progbits
2113         .align 2
2114 ld0:    .space 4
2115 ld1:    .space 4
2116 x1:     .space 4
2117 x2:     .space 4
2118 x3:     .space 4
2119         .text
2120         addi 3,31,ld0@got@tlsgd
2121         bl __tls_get_addr
2122         addi 3,31,x1@got@tlsld
2123         bl __tls_get_addr
2124         addi 9,3,x1@dtprel
2125         addis 9,3,x2@dtprel@ha
2126         addi 9,9,x2@dtprel@l
2127         lwz 9,x3@got@tprel(31)
2128         add 9,9,x@tls
2129         addi 9,2,x1@tprel
2130         addis 9,2,x2@tprel@ha
2131         addi 9,9,x2@tprel@l'
2132         tls_first_major=2
2133         tls_first_minor=14
2134         tls_as_opt=-a32
2135         ;;
2136   powerpc64-*-*)
2137     conftest_s='
2138         .section ".tdata","awT",@progbits
2139         .align 3
2140 ld0:    .space 8
2141 ld1:    .space 8
2142 x1:     .space 8
2143 x2:     .space 8
2144 x3:     .space 8
2145         .text
2146         addi 3,2,ld0@got@tlsgd
2147         bl .__tls_get_addr
2148         nop
2149         addi 3,2,ld1@toc
2150         bl .__tls_get_addr
2151         nop
2152         addi 3,2,x1@got@tlsld
2153         bl .__tls_get_addr
2154         nop
2155         addi 9,3,x1@dtprel
2156         bl .__tls_get_addr
2157         nop
2158         addis 9,3,x2@dtprel@ha
2159         addi 9,9,x2@dtprel@l
2160         bl .__tls_get_addr
2161         nop
2162         ld 9,x3@got@dtprel(2)
2163         add 9,9,3
2164         bl .__tls_get_addr
2165         nop'
2166         tls_first_major=2
2167         tls_first_minor=14
2168         tls_as_opt=-a64
2169         ;;
2170   s390-*-*)
2171     conftest_s='
2172         .section ".tdata","awT",@progbits
2173 foo:    .long   25
2174         .text
2175         .long   foo@TLSGD
2176         .long   foo@TLSLDM
2177         .long   foo@DTPOFF
2178         .long   foo@NTPOFF
2179         .long   foo@GOTNTPOFF
2180         .long   foo@INDNTPOFF
2181         l       %r1,foo@GOTNTPOFF(%r12)
2182         l       %r1,0(%r1):tls_load:foo
2183         bas     %r14,0(%r1,%r13):tls_gdcall:foo
2184         bas     %r14,0(%r1,%r13):tls_ldcall:foo'
2185         tls_first_major=2
2186         tls_first_minor=14
2187         tls_as_opt=-m31
2188         ;;
2189   s390x-*-*)
2190     conftest_s='
2191         .section ".tdata","awT",@progbits
2192 foo:    .long   25
2193         .text
2194         .quad   foo@TLSGD
2195         .quad   foo@TLSLDM
2196         .quad   foo@DTPOFF
2197         .quad   foo@NTPOFF
2198         .quad   foo@GOTNTPOFF
2199         lg      %r1,foo@GOTNTPOFF(%r12)
2200         larl    %r1,foo@INDNTPOFF
2201         brasl   %r14,__tls_get_offset@PLT:tls_gdcall:foo
2202         brasl   %r14,__tls_get_offset@PLT:tls_ldcall:foo'
2203         tls_first_major=2
2204         tls_first_minor=14
2205         tls_as_opt="-m64 -Aesame"
2206         ;;
2207 esac
2208 if test -z "$tls_first_major"; then
2209   :
2210 elif test $in_tree_gas = yes ; then
2211   gcc_GAS_VERSION_GTE_IFELSE($tls_first_major,$tls_first_minor,0,[
2212     gcc_cv_as_tls=yes
2213   ])
2214 elif test x$gcc_cv_as != x; then
2215   echo "$conftest_s" > conftest.s
2216   if $gcc_cv_as $tls_as_opt --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1
2217   then
2218     gcc_cv_as_tls=yes
2219   fi
2220   rm -f conftest.s conftest.o
2221 fi
2222 if test "$gcc_cv_as_tls" = yes; then
2223   AC_DEFINE(HAVE_AS_TLS, 1,
2224             [Define if your assembler supports thread-local storage.])
2225 fi
2226 AC_MSG_RESULT($gcc_cv_as_tls)
2227
2228 case "$target" in
2229   # All TARGET_ABI_OSF targets.
2230   alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
2231     AC_CACHE_CHECK([assembler supports explicit relocations],
2232         gcc_cv_as_explicit_relocs, [
2233         gcc_cv_as_explicit_relocs=unknown
2234         if test $in_tree_gas = yes ; then
2235            gcc_GAS_VERSION_GTE_IFELSE(2,12,0,[
2236               gcc_cv_as_explicit_relocs=yes
2237            ])
2238         elif test x$gcc_cv_as != x; then
2239             cat > conftest.s << 'EOF'
2240         .set nomacro
2241         .text
2242         extbl   $3, $2, $3      !lituse_bytoff!1
2243         ldq     $2, a($29)      !literal!1
2244         ldq     $4, b($29)      !literal!2
2245         ldq_u   $3, 0($2)       !lituse_base!1
2246         ldq     $27, f($29)     !literal!5
2247         jsr     $26, ($27), f   !lituse_jsr!5
2248         ldah    $29, 0($26)     !gpdisp!3
2249         lda     $0, c($29)      !gprel
2250         ldah    $1, d($29)      !gprelhigh
2251         lda     $1, d($1)       !gprellow
2252         lda     $29, 0($29)     !gpdisp!3
2253 EOF
2254             if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2255                 gcc_cv_as_explicit_relocs=yes
2256             else
2257                 gcc_cv_as_explicit_relocs=no
2258             fi
2259             rm -f conftest.s conftest.o
2260         fi
2261     ])
2262     if test "x$gcc_cv_as_explicit_relocs" = xyes; then
2263         AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
2264                 [Define if your assembler supports explicit relocations.])
2265     fi
2266     ;;
2267   sparc*-*-*)
2268     AC_CACHE_CHECK([assembler .register pseudo-op support],
2269         gcc_cv_as_register_pseudo_op, [
2270         gcc_cv_as_register_pseudo_op=unknown
2271         if test x$gcc_cv_as != x; then
2272             # Check if we have .register
2273             echo ".register %g2, #scratch" > conftest.s
2274             if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2275                 gcc_cv_as_register_pseudo_op=yes
2276             else
2277                 gcc_cv_as_register_pseudo_op=no
2278             fi
2279             rm -f conftest.s conftest.o
2280         fi
2281     ])
2282     if test "x$gcc_cv_as_register_pseudo_op" = xyes; then
2283         AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
2284                 [Define if your assembler supports .register.])
2285     fi
2286
2287     AC_CACHE_CHECK([assembler supports -relax],
2288         gcc_cv_as_relax_opt, [
2289         gcc_cv_as_relax_opt=unknown
2290         if test x$gcc_cv_as != x; then
2291             # Check if gas supports -relax
2292             echo ".text" > conftest.s
2293             if $gcc_cv_as -relax -o conftest.o conftest.s > /dev/null 2>&1; then
2294                 gcc_cv_as_relax_opt=yes
2295             else
2296                 gcc_cv_as_relax_opt=no
2297             fi
2298             rm -f conftest.s conftest.o
2299         fi
2300     ])
2301     if test "x$gcc_cv_as_relax_opt" = xyes; then
2302         AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
2303                 [Define if your assembler supports -relax option.])
2304     fi
2305
2306     AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],
2307         gcc_cv_as_sparc_ua_pcrel, [
2308         gcc_cv_as_sparc_ua_pcrel=unknown
2309         if test x$gcc_cv_as != x -a x$gcc_cv_ld != x; then
2310             gcc_cv_as_sparc_ua_pcrel=no
2311             echo ".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo)" > conftest.s
2312             if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
2313                && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
2314                 gcc_cv_as_sparc_ua_pcrel=yes
2315             fi
2316             rm -f conftest.s conftest.o conftest
2317         fi
2318     ])
2319     if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
2320         AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
2321                 [Define if your assembler and linker support unaligned PC relative relocs.])
2322     fi
2323
2324     AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs against hidden symbols],
2325         gcc_cv_as_sparc_ua_pcrel_hidden, [
2326         if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
2327             gcc_cv_as_sparc_ua_pcrel_hidden=unknown
2328             if test x$gcc_cv_objdump != x; then
2329                 gcc_cv_as_sparc_ua_pcrel_hidden=no
2330                 echo ".data; .align 4; .byte 0x31; .uaword %r_disp32(foo)" > conftest.s
2331                 echo ".byte 0x32, 0x33, 0x34; .global foo; .hidden foo" >> conftest.s
2332                 echo "foo: .skip 4" >> conftest.s
2333                 if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
2334                    && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
2335                    && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
2336                       | grep ' 31000000 07323334' > /dev/null 2>&1; then
2337                     if $gcc_cv_objdump -R conftest 2> /dev/null \
2338                        | grep 'DISP32' > /dev/null 2>&1; then
2339                         :
2340                     else
2341                         gcc_cv_as_sparc_ua_pcrel_hidden=yes
2342                     fi
2343                 fi
2344             fi
2345             rm -f conftest.s conftest.o conftest
2346         else
2347             gcc_cv_as_sparc_ua_pcrel_hidden="$gcc_cv_as_sparc_ua_pcrel"
2348         fi
2349     ])
2350     if test "x$gcc_cv_as_sparc_ua_pcrel_hidden" = xyes; then
2351         AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
2352                 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])
2353     fi
2354
2355     AC_CACHE_CHECK([for assembler offsetable %lo() support],
2356         gcc_cv_as_offsetable_lo10, [
2357         gcc_cv_as_offsetable_lo10=unknown
2358         if test "x$gcc_cv_as" != x; then
2359             # Check if assembler has offsetable %lo()
2360             echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
2361             echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
2362             if $gcc_cv_as -xarch=v9 -o conftest.o conftest.s \
2363                     > /dev/null 2>&1 &&
2364                $gcc_cv_as -xarch=v9 -o conftest1.o conftest1.s \
2365                     > /dev/null 2>&1; then
2366                 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
2367                     gcc_cv_as_offsetable_lo10=no
2368                 else
2369                     gcc_cv_as_offsetable_lo10=yes
2370                 fi
2371             else
2372                 gcc_cv_as_offsetable_lo10=no
2373             fi
2374             rm -f conftest.s conftest.o conftest1.s conftest1.o
2375         fi
2376     ])
2377     if test "x$gcc_cv_as_offsetable_lo10" = xyes; then
2378         AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
2379             [Define if your assembler supports offsetable %lo().])
2380     fi
2381
2382     ;;
2383
2384 changequote(,)dnl
2385   i[34567]86-*-* | x86_64-*-*)
2386 changequote([,])dnl
2387     AC_MSG_CHECKING(assembler instructions)
2388     gcc_cv_as_instructions=
2389     if test $in_tree_gas = yes ; then 
2390       gcc_GAS_VERSION_GTE_IFELSE(2,9,0,[
2391         gcc_cv_as_instructions="filds fists"
2392       ])
2393     elif test x$gcc_cv_as != x; then
2394         set "filds fists" "filds mem; fists mem"
2395         while test $# -gt 0
2396         do
2397                 echo "$2" > conftest.s
2398                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2399                         gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
2400                 fi
2401                 shift 2
2402         done
2403         rm -f conftest.s conftest.o
2404     fi
2405     if test x"$gcc_cv_as_instructions" != x; then
2406         AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr '[a-z ]' '[A-Z_]'`)
2407     fi
2408     AC_MSG_RESULT($gcc_cv_as_instructions)
2409
2410     AC_MSG_CHECKING(assembler GOTOFF in data directives)
2411     gcc_cv_as_gotoff_in_data=no
2412     if test $in_tree_gas = yes ; then
2413       gcc_GAS_VERSION_GTE_IFELSE(2,11,0,[
2414         gcc_cv_as_gotoff_in_data=yes
2415       ])
2416     elif test x$gcc_cv_as != x; then
2417         cat > conftest.s <<EOF
2418         .text
2419 .L0:
2420         nop
2421         .data
2422         .long .L0@GOTOFF
2423 EOF
2424         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2425           gcc_cv_as_gotoff_in_data=yes
2426         fi
2427     fi
2428     AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
2429       [`if test $gcc_cv_as_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
2430       [Define true if the assembler supports '.long foo@GOTOFF'.])
2431     AC_MSG_RESULT($gcc_cv_as_gotoff_in_data)
2432     ;;
2433
2434   ia64*-*-*)
2435     AC_CACHE_CHECK([assembler supports ltoffx and ldxmov],
2436         gcc_cv_as_ltoffx_ldxmov_relocs, [
2437         gcc_cv_as_ltoffx_ldxmov_relocs=unknown
2438         if test $in_tree_gas = yes ; then
2439           gcc_GAS_VERSION_GTE_IFELSE(2,14,0,[
2440             gcc_cv_as_ltoffx_ldxmov_relocs=yes
2441           ])
2442         elif test x$gcc_cv_as != x; then
2443             cat > conftest.s << 'EOF'
2444 changequote(,)dnl
2445         .text
2446         addl r15 = @ltoffx(x#), gp
2447         ;;
2448         ld8.mov r16 = [r15], x#
2449 EOF
2450 changequote([,])dnl
2451             if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
2452                 gcc_cv_as_ltoffx_ldxmov_relocs=yes
2453             else
2454                 gcc_cv_as_ltoffx_ldxmov_relocs=no
2455             fi
2456             rm -f conftest.s conftest.o
2457         fi
2458     ])
2459     if test "x$gcc_cv_as_ltoffx_ldxmov_relocs" = xyes; then
2460         AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
2461           [Define if your assembler supports ltoffx and ldxmov relocations.])
2462     fi
2463     ;;
2464 esac
2465
2466 AC_MSG_CHECKING(assembler dwarf2 debug_line support)
2467 gcc_cv_as_dwarf2_debug_line=no
2468 # ??? Not all targets support dwarf2 debug_line, even within a version
2469 # of gas.  Moreover, we need to emit a valid instruction to trigger any
2470 # info to the output file.  So, as supported targets are added to gas 2.11,
2471 # add some instruction here to (also) show we expect this might work.
2472 # ??? Once 2.11 is released, probably need to add first known working
2473 # version to the per-target configury.
2474 case "$target" in
2475   i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* \
2476   | x86_64*-*-* | hppa*-*-* | arm*-*-* | strongarm*-*-* | xscale*-*-* \
2477   | xstormy16*-*-* | cris-*-*)
2478     insn="nop"
2479     ;;
2480   ia64*-*-*)
2481     insn="nop 0"
2482     ;;
2483   mmix-*-*)
2484     insn="swym 0"
2485     ;;
2486   esac
2487 if test $in_tree_gas = yes ; then
2488   gcc_GAS_VERSION_GTE_IFELSE(2,11,0,[
2489     test $in_tree_gas_is_elf = yes && test x"$insn" != x \
2490         && gcc_cv_as_dwarf2_debug_line="yes"
2491   ])
2492 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2493         echo '  .file 1 "conftest.s"' > conftest.s
2494         echo '  .loc 1 3 0' >> conftest.s
2495         echo "  $insn" >> conftest.s
2496         # ??? This fails with non-gnu grep.
2497         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
2498            && grep debug_line conftest.o > /dev/null 2>&1 ; then
2499                 # The .debug_line file table must be in the exact order that
2500                 # we specified the files, since these indices are also used
2501                 # by DW_AT_decl_file.  Approximate this test by testing if
2502                 # the assembler bitches if the same index is assigned twice.
2503                 echo '  .file 1 "foo.s"' > conftest.s
2504                 echo '  .file 1 "bar.s"' >> conftest.s
2505                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1
2506                 then
2507                   gcc_cv_as_dwarf2_debug_line="no"
2508                 else
2509                   gcc_cv_as_dwarf2_debug_line="yes"
2510                 fi
2511         fi
2512         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
2513 fi
2514 if test x"$gcc_cv_as_dwarf2_debug_line" = xyes; then
2515         AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
2516 [Define if your assembler supports dwarf2 .file/.loc directives,
2517    and preserves file table indices exactly as given.])
2518 fi
2519 AC_MSG_RESULT($gcc_cv_as_dwarf2_debug_line)
2520
2521 AC_MSG_CHECKING(assembler --gdwarf2 support)
2522 gcc_cv_as_gdwarf2_flag=no
2523 if test $in_tree_gas = yes ; then
2524   gcc_GAS_VERSION_GTE_IFELSE(2,11,0,[
2525     test $in_tree_gas_is_elf = yes && test x"$insn" != x \
2526         && gcc_cv_as_gdwarf2_flag="yes"
2527   ])
2528 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2529         echo '' > conftest.s
2530         # ??? This fails with non-gnu grep.
2531         if $gcc_cv_as --gdwarf2 -o conftest.o conftest.s > /dev/null 2>&1
2532           then
2533           gcc_cv_as_gdwarf2_flag="yes"
2534         fi
2535         rm -f conftest.s conftest.o
2536 fi
2537 if test x"$gcc_cv_as_gdwarf2_flag" = xyes; then
2538         AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
2539 [Define if your assembler supports the --gdwarf2 option.])
2540 fi
2541 AC_MSG_RESULT($gcc_cv_as_gdwarf2_flag)
2542
2543 AC_MSG_CHECKING(assembler --gstabs support)
2544 gcc_cv_as_gstabs_flag=no
2545 if test $in_tree_gas = yes ; then
2546   gcc_GAS_VERSION_GTE_IFELSE(2,11,0,[
2547     test $in_tree_gas_is_elf = yes && test x"$insn" != x \
2548         && gcc_cv_as_gstabs_flag="yes"
2549   ])
2550 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2551         echo '' > conftest.s
2552         # ??? This fails with non-gnu grep.
2553         if $gcc_cv_as --gstabs -o conftest.o conftest.s > /dev/null 2>&1 ; then
2554           gcc_cv_as_gstabs_flag="yes"
2555           # The native Solaris 9/Intel assembler doesn't understand --gstabs
2556           # and warns about it, but still exits successfully.  So check for
2557           # this.
2558           if $gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | \
2559                 grep -i warning > /dev/null ; then
2560             gcc_cv_as_gstabs_flag="no"
2561           fi
2562         fi
2563         rm -f conftest.s conftest.o
2564 fi
2565 if test x"$gcc_cv_as_gstabs_flag" = xyes; then
2566         AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
2567 [Define if your assembler supports the --gstabs option.])
2568 fi
2569 AC_MSG_RESULT($gcc_cv_as_gstabs_flag)
2570
2571 AC_MSG_CHECKING(linker read-only and read-write section mixing)
2572 gcc_cv_ld_ro_rw_mix=unknown
2573 if test $in_tree_ld = yes ; then
2574   if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2 \
2575      && test $in_tree_ld_is_elf = yes; then
2576     gcc_cv_ld_ro_rw_mix=read-write
2577   fi
2578 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
2579   echo '.section myfoosect, "a"' > conftest1.s
2580   echo '.section myfoosect, "aw"' > conftest2.s
2581   echo '.byte 1' >> conftest2.s
2582   echo '.section myfoosect, "a"' > conftest3.s
2583   echo '.byte 0' >> conftest3.s
2584   if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
2585      && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
2586      && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
2587      && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
2588         conftest2.o conftest3.o > /dev/null 2>&1; then
2589     gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
2590                          | sed -e '/myfoosect/!d' -e N`
2591     if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
2592       if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
2593         gcc_cv_ld_ro_rw_mix=read-only
2594       else
2595         gcc_cv_ld_ro_rw_mix=read-write
2596       fi
2597     fi
2598   fi
2599 changequote(,)dnl
2600   rm -f conftest.* conftest[123].*
2601 changequote([,])dnl
2602 fi
2603 if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
2604         AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
2605   [Define if your linker links a mix of read-only
2606    and read-write sections into a read-write section.])
2607 fi
2608 AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
2609
2610 AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
2611 gcc_cv_ld_eh_frame_hdr=no
2612 if test $in_tree_ld = yes ; then
2613   if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 12 -o "$gcc_cv_gld_major_version" -gt 2 \
2614      && test $in_tree_ld_is_elf = yes; then
2615     gcc_cv_ld_eh_frame_hdr=yes
2616   fi
2617 elif test x$gcc_cv_ld != x; then
2618         # Check if linker supports --eh-frame-hdr option
2619         if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
2620                 gcc_cv_ld_eh_frame_hdr=yes
2621         fi
2622 fi
2623 if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
2624         AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
2625 [Define if your linker supports --eh-frame-hdr option.])
2626 fi
2627 AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
2628
2629 AC_MSG_CHECKING(linker position independent executable support)
2630 gcc_cv_ld_pie=no
2631 if test $in_tree_ld = yes ; then
2632   if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 15 -o "$gcc_cv_gld_major_version" -gt 2 \
2633      && test $in_tree_ld_is_elf = yes; then
2634     gcc_cv_ld_pie=yes
2635   fi
2636 elif test x$gcc_cv_ld != x; then
2637         # Check if linker supports -pie option
2638         if $gcc_cv_ld --help 2>/dev/null | grep -- -pie > /dev/null; then
2639                 gcc_cv_ld_pie=yes
2640         fi
2641 fi
2642 if test x"$gcc_cv_ld_pie" = xyes; then
2643         AC_DEFINE(HAVE_LD_PIE, 1,
2644 [Define if your linker supports -pie option.])
2645 fi
2646 AC_MSG_RESULT($gcc_cv_ld_pie)
2647
2648 # Miscellaneous target-specific checks.
2649 case "$target" in
2650   mips*-*-*)
2651     AC_MSG_CHECKING(whether libgloss uses STARTUP directives consistently)
2652     gcc_cv_mips_libgloss_startup=no
2653     gcc_cv_libgloss_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/libgloss
2654     if test "x$exec_prefix" = xNONE; then
2655       if test "x$prefix" = xNONE; then
2656         test_prefix=/usr/local
2657       else
2658         test_prefix=$prefix
2659       fi
2660     else
2661       test_prefix=$exec_prefix
2662     fi
2663     for f in $gcc_cv_libgloss_srcdir/mips/idt.ld $test_prefix/$target_alias/lib/idt.ld
2664     do
2665       if grep '^STARTUP' $f > /dev/null 2>&1; then
2666         gcc_cv_mips_libgloss_startup=yes
2667         break
2668       fi
2669     done
2670     if test x"$gcc_cv_mips_libgloss_startup" = xyes; then
2671       AC_DEFINE(HAVE_MIPS_LIBGLOSS_STARTUP_DIRECTIVES, 1,
2672         [Define if your MIPS libgloss linker scripts consistently include STARTUP directives.])
2673     fi
2674     AC_MSG_RESULT($gcc_cv_mips_libgloss_startup)
2675
2676     AC_MSG_CHECKING(whether the assembler has explicit relocation support)
2677     if test x$gcc_cv_mips_explicit_relocs = x; then
2678       gcc_cv_mips_explicit_relocs=no
2679       if test $in_tree_gas = yes; then
2680         gcc_GAS_VERSION_GTE_IFELSE(2,14,0,[
2681           gcc_cv_mips_explicit_relocs=yes
2682         ])
2683       elif test x$gcc_cv_as != x; then
2684         echo '  lw $4,%gp_rel(foo)($4)' > conftest.s
2685         if $gcc_cv_as conftest.s -o conftest.o > /dev/null 2>&1; then
2686           gcc_cv_mips_explicit_relocs=yes
2687         fi
2688         rm -f conftest.s conftest.o
2689       fi
2690     fi
2691     if test $gcc_cv_mips_explicit_relocs = yes; then
2692       test x$target_cpu_default != x || target_cpu_default=0
2693       target_cpu_default="(${target_cpu_default}|MASK_EXPLICIT_RELOCS)"
2694     fi
2695     AC_MSG_RESULT($gcc_cv_mips_explicit_relocs)
2696     ;;
2697 esac
2698
2699 if test x$with_sysroot = x && test x$host = x$target \
2700    && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" ; then
2701   AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
2702 fi
2703
2704 # Figure out what language subdirectories are present.
2705 # Look if the user specified --enable-languages="..."; if not, use
2706 # the environment variable $LANGUAGES if defined. $LANGUAGES might
2707 # go away some day.
2708 # NB:  embedded tabs in this IF block -- do not untabify
2709 if test x"${enable_languages+set}" != xset; then
2710         if test x"${LANGUAGES+set}" = xset; then
2711                 enable_languages="${LANGUAGES}"
2712                 AC_MSG_WARN([setting LANGUAGES is deprecated, use --enable-languages instead])
2713
2714         else
2715                 enable_languages=all
2716         fi
2717 else
2718         if test x"${enable_languages}" = x \
2719         || test x"${enable_languages}" = xyes;
2720         then
2721                 AC_MSG_ERROR([--enable-languages needs at least one language argument])
2722         fi
2723 fi
2724 enable_languages=`echo "${enable_languages}" | sed -e 's/[[     ,]][[   ,]]*/,/g' -e 's/,$//'`
2725
2726 # First scan to see if an enabled language requires some other language.
2727 # We assume that a given config-lang.in will list all the language
2728 # front ends it requires, even if some are required indirectly.
2729 for lang in ${srcdir}/*/config-lang.in ..
2730 do
2731    case $lang in
2732     ..)
2733        ;;
2734     # The odd quoting in the next line works around
2735     # an apparent bug in bash 1.12 on linux.
2736 changequote(,)dnl
2737     ${srcdir}/[*]/config-lang.in)
2738        ;;
2739     *)
2740        lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^      ]*\).*$,\1,p' $lang`
2741        this_lang_requires=`sed -n -e 's,^lang_requires=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_requires=\([^    ]*\).*$,\1,p' $lang`
2742        for other in $this_lang_requires
2743        do
2744           case ,${enable_languages}, in
2745            *,$other,*)
2746               ;;
2747            *,all,*)
2748               ;;
2749            *,$lang_alias,*)
2750               enable_languages="$enable_languages,$other"
2751               ;;
2752           esac
2753        done
2754        ;;
2755 changequote([,])dnl
2756    esac
2757 done
2758
2759 expected_languages=`echo ,${enable_languages}, | sed -e 's:,: :g' -e 's:  *: :g' -e 's:  *: :g' -e 's:^ ::' -e 's: $::'`
2760 found_languages=
2761 subdirs=
2762 for lang in ${srcdir}/*/config-lang.in ..
2763 do
2764         case $lang in
2765         ..) ;;
2766         # The odd quoting in the next line works around
2767         # an apparent bug in bash 1.12 on linux.
2768 changequote(,)dnl
2769         ${srcdir}/[*]/config-lang.in) ;;
2770         *)
2771           lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^   ]*\).*$,\1,p' $lang`
2772           this_lang_libs=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^         ]*\).*$,\1,p' $lang`
2773           build_by_default=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^     ]*\).*$,\1,p' $lang`
2774           if test "x$lang_alias" = x
2775           then
2776                 echo "$lang doesn't set \$language." 1>&2
2777                 exit 1
2778           fi
2779           case ${build_by_default},${enable_languages}, in
2780           *,$lang_alias,*) add_this_lang=yes ;;
2781           no,*) add_this_lang=no ;;
2782           *,all,*) add_this_lang=yes ;;
2783           *) add_this_lang=no ;;
2784           esac
2785           found_languages="${found_languages} ${lang_alias}"
2786           if test x"${add_this_lang}" = xyes; then
2787                 case $lang in
2788                     ${srcdir}/ada/config-lang.in)
2789                         if test x$have_gnat = xyes ; then
2790                                 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2791                         fi
2792                         ;;
2793                     *)
2794                         subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2795                         ;;
2796                 esac
2797           fi
2798           ;;
2799 changequote([,])dnl
2800         esac
2801 done
2802
2803 missing_languages=
2804 for expected_language in ${expected_languages} ..
2805 do 
2806     if test "${expected_language}" != ..; then
2807         missing_language="${expected_language}"
2808         if test "${expected_language}" = "c" \
2809            || test "${expected_language}" = "all"; then
2810                 missing_language=
2811         fi
2812         for found_language in ${found_languages} ..
2813         do 
2814             if test "${found_language}" != ..; then
2815                 if test "${expected_language}" = "${found_language}"; then
2816                     missing_language=
2817                 fi
2818             fi
2819         done
2820         if test "x${missing_language}" != x; then
2821            missing_languages="${missing_languages} ${missing_language}"
2822         fi
2823     fi
2824 done
2825
2826 if test "x$missing_languages" != x; then
2827   AC_MSG_ERROR([
2828 The following requested languages were not found:${missing_languages}
2829 The following languages were available: c${found_languages}])
2830 fi
2831
2832 # Make gthr-default.h if we have a thread file.
2833 gthread_flags=
2834 if test $thread_file != single; then
2835     rm -f gthr-default.h
2836     echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
2837     gthread_flags=-DHAVE_GTHR_DEFAULT
2838 fi
2839 AC_SUBST(gthread_flags)
2840
2841 # Find out what GC implementation we want, or may, use.
2842 AC_ARG_WITH(gc,
2843 [  --with-gc={simple,page} choose the garbage collection mechanism to use
2844                           with the compiler],
2845 [case "$withval" in
2846   simple | page)
2847     GGC=ggc-$withval
2848     ;;
2849   *)
2850     AC_MSG_ERROR([$withval is an invalid option to --with-gc])
2851     ;;
2852 esac],
2853 [GGC=ggc-page])
2854 AC_SUBST(GGC)
2855 echo "Using $GGC for garbage collection."
2856
2857 # Use the system's zlib library.
2858 zlibdir=-L../zlib
2859 zlibinc="-I\$(srcdir)/../zlib"
2860 AC_ARG_WITH(system-zlib,
2861 [  --with-system-zlib      use installed libz],
2862 zlibdir=
2863 zlibinc=
2864 )
2865 AC_SUBST(zlibdir)
2866 AC_SUBST(zlibinc)
2867
2868 dnl Very limited version of automake's enable-maintainer-mode
2869
2870 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2871   dnl maintainer-mode is disabled by default
2872   AC_ARG_ENABLE(maintainer-mode,
2873 [  --enable-maintainer-mode
2874                           enable make rules and dependencies not useful
2875                           (and sometimes confusing) to the casual installer],
2876       maintainer_mode=$enableval,
2877       maintainer_mode=no)
2878
2879 AC_MSG_RESULT($maintainer_mode)
2880
2881 if test "$maintainer_mode" = "yes"; then
2882   MAINT=''
2883 else
2884   MAINT='#'
2885 fi
2886 AC_SUBST(MAINT)dnl
2887
2888 # Make empty files to contain the specs and options for each language.
2889 # Then add #include lines to for a compiler that has specs and/or options.
2890
2891 lang_opt_files=
2892 lang_specs_files=
2893 lang_options_files=
2894 lang_tree_files=
2895 for subdir in . $subdirs
2896 do
2897         if test -f $srcdir/$subdir/lang.opt; then
2898             lang_opt_files="$lang_opt_files $srcdir/$subdir/lang.opt"
2899         fi
2900         if test -f $srcdir/$subdir/lang-specs.h; then
2901             lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
2902         fi
2903         if test -f $srcdir/$subdir/lang-options.h; then
2904             lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
2905         fi
2906         if test -f $srcdir/$subdir/$subdir-tree.def; then
2907             lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
2908         fi
2909 done
2910
2911 # These (without "all_") are set in each config-lang.in.
2912 # `language' must be a single word so is spelled singularly.
2913 all_languages=
2914 all_boot_languages=
2915 all_compilers=
2916 all_stagestuff=
2917 all_outputs='Makefile fixinc/Makefile gccbug mklibgcc mkheaders'
2918 # List of language makefile fragments.
2919 all_lang_makefiles=
2920 # Files for gengtype
2921 all_gtfiles="$target_gtfiles"
2922 # Files for gengtype with language
2923 all_gtfiles_files_langs=
2924 all_gtfiles_files_files=
2925
2926 # Add the language fragments.
2927 # Languages are added via two mechanisms.  Some information must be
2928 # recorded in makefile variables, these are defined in config-lang.in.
2929 # We accumulate them and plug them into the main Makefile.
2930 # The other mechanism is a set of hooks for each of the main targets
2931 # like `clean', `install', etc.
2932
2933 language_fragments="Make-lang"
2934 language_hooks="Make-hooks"
2935
2936 for s in .. $subdirs
2937 do
2938         if test $s != ".."
2939         then
2940                 language=
2941                 boot_language=
2942                 compilers=
2943                 stagestuff=
2944                 outputs=
2945                 gtfiles=
2946                 . ${srcdir}/$s/config-lang.in
2947                 if test "x$language" = x
2948                 then
2949                         echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
2950                         exit 1
2951                 fi
2952                 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
2953                 if test -f ${srcdir}/$s/Makefile.in
2954                 then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
2955                 fi
2956                 all_languages="$all_languages $language"
2957                 if test "x$boot_language" = xyes
2958                 then
2959                         all_boot_languages="$all_boot_languages $language"
2960                 fi
2961                 all_compilers="$all_compilers $compilers"
2962                 all_stagestuff="$all_stagestuff $stagestuff"
2963                 all_outputs="$all_outputs $outputs"
2964                 all_gtfiles="$all_gtfiles $gtfiles"
2965                 for f in .. $gtfiles
2966                 do
2967                      if test $f != ".."
2968                      then
2969                          all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
2970                          all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
2971                      fi
2972                 done
2973         fi
2974 done
2975
2976 # Pick up gtfiles for c
2977 gtfiles=
2978 s="c"
2979 . ${srcdir}/c-config-lang.in
2980 all_gtfiles="$all_gtfiles $gtfiles"
2981 for f in .. $gtfiles
2982 do
2983      if test $f != ".."
2984      then
2985         all_gtfiles_files_langs="$all_gtfiles_files_langs ${s} "
2986         all_gtfiles_files_files="$all_gtfiles_files_files ${f} "
2987      fi
2988 done
2989
2990 check_languages=
2991 for language in .. $all_languages
2992 do
2993         if test $language != ".."
2994         then
2995                 check_languages="$check_languages check-$language"
2996         fi
2997 done
2998
2999 # Since we can't use `::' targets, we link each language in
3000 # with a set of hooks, reached indirectly via lang.${target}.
3001
3002 rm -f Make-hooks
3003 touch Make-hooks
3004 target_list="all.build all.cross start.encap rest.encap tags \
3005         info dvi generated-manpages \
3006         install-normal install-common install-info install-man \
3007         uninstall \
3008         mostlyclean clean distclean extraclean maintainer-clean \
3009         stage1 stage2 stage3 stage4 stageprofile stagefeedback"
3010 for t in $target_list
3011 do
3012         x=
3013         for lang in .. $all_languages
3014         do
3015                 if test $lang != ".."; then
3016                         x="$x $lang.$t"
3017                 fi
3018         done
3019         echo "lang.$t: $x" >> Make-hooks
3020 done
3021
3022 # Create .gdbinit.
3023
3024 echo "dir ." > .gdbinit
3025 echo "dir ${srcdir}" >> .gdbinit
3026 if test x$gdb_needs_out_file_path = xyes
3027 then
3028         echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
3029 fi
3030 if test "x$subdirs" != x; then
3031         for s in $subdirs
3032         do
3033                 echo "dir ${srcdir}/$s" >> .gdbinit
3034         done
3035 fi
3036 echo "source ${srcdir}/gdbinit.in" >> .gdbinit
3037
3038 # If $(exec_prefix) exists and is not the same as $(prefix), then compute an
3039 # absolute path for gcc_tooldir based on inserting the number of up-directory
3040 # movements required to get from $(exec_prefix) to $(prefix) into the basic
3041 # $(libsubdir)/@(unlibsubdir) based path.
3042 # Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
3043 # make and thus we'd get different behavior depending on where we built the
3044 # sources.
3045 if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
3046     gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
3047 else
3048 changequote(<<, >>)dnl
3049 # An explanation of the sed strings:
3050 #  -e 's|^\$(prefix)||'   matches and eliminates 'prefix' from 'exec_prefix'
3051 #  -e 's|/$||'            match a trailing forward slash and eliminates it
3052 #  -e 's|^[^/]|/|'        forces the string to start with a forward slash (*)
3053 #  -e 's|/[^/]*|../|g'    replaces each occurrence of /<directory> with ../
3054 #
3055 # (*) Note this pattern overwrites the first character of the string
3056 # with a forward slash if one is not already present.  This is not a
3057 # problem because the exact names of the sub-directories concerned is
3058 # unimportant, just the number of them matters.
3059 #
3060 # The practical upshot of these patterns is like this:
3061 #
3062 #  prefix     exec_prefix        result
3063 #  ------     -----------        ------
3064 #   /foo        /foo/bar          ../
3065 #   /foo/       /foo/bar          ../
3066 #   /foo        /foo/bar/         ../
3067 #   /foo/       /foo/bar/         ../
3068 #   /foo        /foo/bar/ugg      ../../
3069 #
3070     dollar='$$'
3071     gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
3072 changequote([, ])dnl
3073 fi
3074 AC_SUBST(gcc_tooldir)
3075 AC_SUBST(dollar)
3076
3077 # Find a directory in which to install a shared libgcc.
3078
3079 AC_ARG_ENABLE(version-specific-runtime-libs,
3080 [  --enable-version-specific-runtime-libs
3081                           specify that runtime libraries should be
3082                           installed in a compiler-specific directory])
3083
3084 AC_ARG_WITH(slibdir,
3085 [  --with-slibdir=DIR      shared libraries in DIR [LIBDIR]],
3086 slibdir="$with_slibdir",
3087 if test "${enable_version_specific_runtime_libs+set}" = set; then
3088   slibdir='$(libsubdir)'
3089 elif test "$host" != "$target"; then
3090   slibdir='$(build_tooldir)/lib'
3091 else
3092   slibdir='$(libdir)'
3093 fi)
3094 AC_SUBST(slibdir)
3095
3096 objdir=`${PWDCMD-pwd}`
3097 AC_SUBST(objdir)
3098
3099 # Process the language and host/target makefile fragments.
3100 ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
3101
3102 # Substitute configuration variables
3103 AC_SUBST(subdirs)
3104 AC_SUBST(srcdir)
3105 AC_SUBST(all_boot_languages)
3106 AC_SUBST(all_compilers)
3107 AC_SUBST(all_gtfiles)
3108 AC_SUBST(all_gtfiles_files_langs)
3109 AC_SUBST(all_gtfiles_files_files)
3110 AC_SUBST(all_lang_makefiles)
3111 AC_SUBST(all_languages)
3112 AC_SUBST(all_stagestuff)
3113 AC_SUBST(build_exeext)
3114 AC_SUBST(build_install_headers_dir)
3115 AC_SUBST(build_xm_file_list)
3116 AC_SUBST(build_xm_file)
3117 AC_SUBST(build_xm_defines)
3118 AC_SUBST(check_languages)
3119 AC_SUBST(cc_set_by_configure)
3120 AC_SUBST(quoted_cc_set_by_configure)
3121 AC_SUBST(cpp_install_dir)
3122 AC_SUBST(dep_host_xmake_file)
3123 AC_SUBST(dep_tmake_file)
3124 AC_SUBST(extra_headers_list)
3125 AC_SUBST(extra_objs)
3126 AC_SUBST(extra_parts)
3127 AC_SUBST(extra_passes)
3128 AC_SUBST(extra_programs)
3129 AC_SUBST(float_h_file)
3130 AC_SUBST(gcc_config_arguments)
3131 AC_SUBST(gcc_gxx_include_dir)
3132 AC_SUBST(libstdcxx_incdir)
3133 AC_SUBST(gcc_version)
3134 AC_SUBST(gcc_version_full)
3135 AC_SUBST(gcc_version_trigger)
3136 AC_SUBST(host_exeext)
3137 AC_SUBST(host_extra_gcc_objs)
3138 AC_SUBST(host_xm_file_list)
3139 AC_SUBST(host_xm_file)
3140 AC_SUBST(host_xm_defines)
3141 AC_SUBST(out_host_hook_obj)
3142 AC_SUBST(install)
3143 AC_SUBST(lang_opt_files)
3144 AC_SUBST(lang_options_files)
3145 AC_SUBST(lang_specs_files)
3146 AC_SUBST(lang_tree_files)
3147 AC_SUBST(local_prefix)
3148 AC_SUBST(md_file)
3149 AC_SUBST(objc_boehm_gc)
3150 AC_SUBST(out_file)
3151 AC_SUBST(out_object_file)
3152 AC_SUBST(stage_prefix_set_by_configure)
3153 AC_SUBST(quoted_stage_prefix_set_by_configure)
3154 AC_SUBST(symbolic_link)
3155 AC_SUBST(thread_file)
3156 AC_SUBST(tm_file_list)
3157 AC_SUBST(tm_file)
3158 AC_SUBST(tm_defines)
3159 AC_SUBST(tm_p_file_list)
3160 AC_SUBST(tm_p_file)
3161 AC_SUBST(xm_file)
3162 AC_SUBST(xm_defines)
3163 AC_SUBST(target_alias)
3164 AC_SUBST(c_target_objs)
3165 AC_SUBST(cxx_target_objs)
3166 AC_SUBST(target_cpu_default)
3167
3168 AC_SUBST_FILE(target_overrides)
3169 AC_SUBST_FILE(host_overrides)
3170 AC_SUBST_FILE(language_fragments)
3171 AC_SUBST_FILE(language_hooks)
3172
3173 # Echo that links are built
3174 if test x$host = x$target
3175 then
3176         str1="native "
3177 else
3178         str1="cross-"
3179         str2=" from $host"
3180 fi
3181
3182 if test x$host != x$build
3183 then
3184         str3=" on a $build system"
3185 fi
3186
3187 if test "x$str2" != x || test "x$str3" != x
3188 then
3189         str4=
3190 fi
3191
3192 echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
3193
3194 if test "x$str2" != x || test "x$str3" != x
3195 then
3196         echo " ${str2}${str3}." 1>&2
3197 fi
3198
3199 # Configure the subdirectories
3200 # AC_CONFIG_SUBDIRS($subdirs)
3201
3202 # Create the Makefile
3203 # and configure language subdirectories
3204 AC_OUTPUT($all_outputs,
3205 [
3206 case x$CONFIG_HEADERS in
3207 xauto-host.h:config.in)
3208 echo > cstamp-h ;;
3209 esac
3210 # If the host supports symlinks, point stage[1234] at ../stage[1234] so
3211 # bootstrapping and the installation procedure can still use
3212 # CC="stage1/xgcc -Bstage1/".  If the host doesn't support symlinks,
3213 # FLAGS_TO_PASS has been modified to solve the problem there.
3214 # This is virtually a duplicate of what happens in configure.lang; we do
3215 # an extra check to make sure this only happens if ln -s can be used.
3216 if test "$symbolic_link" = "ln -s"; then
3217  for d in .. ${subdirs} fixinc ; do
3218    if test $d != ..; then
3219         STARTDIR=`${PWDCMD-pwd}`
3220         cd $d
3221         for t in stage1 stage2 stage3 stage4 stageprofile stagefeedback include
3222         do
3223                 rm -f $t
3224                 $symbolic_link ../$t $t 2>/dev/null
3225         done
3226         cd $STARTDIR
3227    fi
3228  done
3229 else true ; fi
3230 ], 
3231 [subdirs='$subdirs'
3232 symbolic_link='$symbolic_link'
3233 ])