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