]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/gcc/configure.in
Catch up with "base" telnet.
[FreeBSD/FreeBSD.git] / contrib / gcc / configure.in
1 # configure.in for GCC
2 # Process this file with autoconf to generate a configuration script.
3
4 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
5
6 #This file is part of GCC.
7
8 #GCC is free software; you can redistribute it and/or modify it under
9 #the terms of the GNU General Public License as published by the Free
10 #Software Foundation; either version 2, or (at your option) any later
11 #version.
12
13 #GCC is distributed in the hope that it will be useful, but WITHOUT
14 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 #FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
16 #for more details.
17
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING.  If not, write to the Free
20 #Software Foundation, 59 Temple Place - Suite 330, Boston, MA
21 #02111-1307, USA.
22
23 # Initialization and defaults
24 AC_PREREQ(2.13)
25 AC_INIT(tree.c)
26 AC_CONFIG_HEADER(auto-host.h:config.in)
27
28 remove=rm
29 hard_link=ln
30 symbolic_link='ln -s'
31 copy=cp
32
33 # Check for bogus environment variables.
34 # Test if LIBRARY_PATH contains the notation for the current directory
35 # since this would lead to problems installing/building glibc.
36 # LIBRARY_PATH contains the current directory if one of the following
37 # is true:
38 # - one of the terminals (":" and ";") is the first or last sign
39 # - two terminals occur directly after each other
40 # - the path contains an element with a dot in it
41 AC_MSG_CHECKING(LIBRARY_PATH variable)
42 changequote(,)dnl
43 case ${LIBRARY_PATH} in
44   [:\;]* | *[:\;] | *[:\;][:\;]* |  *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
45     library_path_setting="contains current directory"
46     ;;
47   *)
48     library_path_setting="ok"
49     ;;
50 esac
51 changequote([,])dnl
52 AC_MSG_RESULT($library_path_setting)
53 if test "$library_path_setting" != "ok"; then
54 AC_MSG_ERROR([
55 *** LIBRARY_PATH shouldn't contain the current directory when
56 *** building gcc. Please change the environment variable
57 *** and run configure again.])
58 fi
59
60 # Test if GCC_EXEC_PREFIX contains the notation for the current directory
61 # since this would lead to problems installing/building glibc.
62 # GCC_EXEC_PREFIX contains the current directory if one of the following
63 # is true:
64 # - one of the terminals (":" and ";") is the first or last sign
65 # - two terminals occur directly after each other
66 # - the path contains an element with a dot in it
67 AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
68 changequote(,)dnl
69 case ${GCC_EXEC_PREFIX} in
70   [:\;]* | *[:\;] | *[:\;][:\;]* |  *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
71     gcc_exec_prefix_setting="contains current directory"
72     ;;
73   *)
74     gcc_exec_prefix_setting="ok"
75     ;;
76 esac
77 changequote([,])dnl
78 AC_MSG_RESULT($gcc_exec_prefix_setting)
79 if test "$gcc_exec_prefix_setting" != "ok"; then
80 AC_MSG_ERROR([
81 *** GCC_EXEC_PREFIX shouldn't contain the current directory when
82 *** building gcc. Please change the environment variable
83 *** and run configure again.])
84 fi
85
86 # Check for additional parameters
87
88 # With GNU ld
89 AC_ARG_WITH(gnu-ld,
90 [  --with-gnu-ld           arrange to work with GNU ld.],
91 gnu_ld_flag="$with_gnu_ld",
92 gnu_ld_flag=no)
93
94 # With pre-defined ld
95 AC_ARG_WITH(ld,
96 [  --with-ld               arrange to use the specified ld (full pathname)],
97 DEFAULT_LINKER="$with_ld")
98 if test x"${DEFAULT_LINKER+set}" = x"set"; then
99   if test ! -x "$DEFAULT_LINKER"; then
100     AC_MSG_WARN([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
101   elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
102     gnu_ld_flag=yes
103   fi
104   AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
105         [Define to enable the use of a default linker.])
106 fi
107
108 # With GNU as
109 AC_ARG_WITH(gnu-as,
110 [  --with-gnu-as           arrange to work with GNU as],
111 gas_flag="$with_gnu_as",
112 gas_flag=no)
113
114 AC_ARG_WITH(as,
115 [  --with-as               arrange to use the specified as (full pathname)],
116 DEFAULT_ASSEMBLER="$with_as")
117 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
118   if test ! -x "$DEFAULT_ASSEMBLER"; then
119     AC_MSG_WARN([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
120   elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
121     gas_flag=yes
122   fi
123   AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
124         [Define to enable the use of a default assembler.])
125 fi
126
127 # With stabs
128 AC_ARG_WITH(stabs,
129 [  --with-stabs            arrange to use stabs instead of host debug format],
130 stabs="$with_stabs",
131 stabs=no)
132
133 # With ELF
134 AC_ARG_WITH(elf,
135 [  --with-elf              arrange to use ELF instead of host debug format],
136 elf="$with_elf",
137 elf=no)
138
139 # Specify the local prefix
140 local_prefix=
141 AC_ARG_WITH(local-prefix,
142 [  --with-local-prefix=DIR specifies directory to put local include],
143 [case "${withval}" in
144 yes)    AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
145 no)     ;;
146 *)      local_prefix=$with_local_prefix ;;
147 esac])
148
149 # Default local prefix if it is empty
150 if test x$local_prefix = x; then
151         local_prefix=/usr/local
152 fi
153
154 # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
155 # passed in by the toplevel make and thus we'd get different behavior
156 # depending on where we built the sources.
157 gcc_gxx_include_dir=
158 # Specify the g++ header file directory
159 AC_ARG_WITH(gxx-include-dir,
160 [  --with-gxx-include-dir=DIR
161                           specifies directory to put g++ header files],
162 [case "${withval}" in
163 yes)    AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
164 no)     ;;
165 *)      gcc_gxx_include_dir=$with_gxx_include_dir ;;
166 esac])
167
168 if test x${gcc_gxx_include_dir} = x; then
169   if test x${enable_version_specific_runtime_libs} = xyes; then
170     gcc_gxx_include_dir='${libsubdir}/include/c++'
171   else
172     topsrcdir=${srcdir}/.. . ${srcdir}/../config.if
173 changequote(<<, >>)dnl
174     gcc_gxx_include_dir="\$(libsubdir)/\$(unlibsubdir)/..\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/[^/]*|/..|g'\`/include/"${libstdcxx_incdir}
175 changequote([, ])dnl
176   fi
177 fi
178
179 # Determine whether or not multilibs are enabled.
180 AC_ARG_ENABLE(multilib,
181 [  --enable-multilib       enable library support for multiple ABIs],
182 [], [enable_multilib=yes])
183 AC_SUBST(enable_multilib)
184
185 # Enable expensive internal checks
186 AC_ARG_ENABLE(checking,
187 [  --enable-checking[=LIST]
188                           enable expensive run-time checks.  With LIST,
189                           enable only specific categories of checks.
190                           Categories are: misc,tree,rtl,gc,gcac; default
191                           is misc,tree,gc],
192 [ac_checking=
193 ac_tree_checking=
194 ac_rtl_checking=
195 ac_gc_checking=
196 ac_gc_always_collect=
197 case "${enableval}" in
198 yes)    ac_checking=1 ; ac_tree_checking=1 ; ac_gc_checking=1 ;;
199 no)     ;;
200 *)      IFS="${IFS=     }"; ac_save_IFS="$IFS"; IFS="$IFS,"
201         set fnord $enableval; shift
202         IFS="$ac_save_IFS"
203         for check
204         do
205                 case $check in
206                 misc)   ac_checking=1 ;;
207                 tree)   ac_tree_checking=1 ;;
208                 rtl)    ac_rtl_checking=1 ;;
209                 gc)     ac_gc_checking=1 ;;
210                 gcac)   ac_gc_always_collect=1 ;;
211                 *)      AC_MSG_ERROR(unknown check category $check) ;;
212                 esac
213         done
214         ;;
215 esac
216 ], 
217 [])
218 if test x$ac_checking != x ; then
219   AC_DEFINE(ENABLE_CHECKING, 1,
220 [Define if you want more run-time sanity checks.  This one gets a grab
221    bag of miscellaneous but relatively cheap checks.])
222 fi
223 if test x$ac_tree_checking != x ; then
224   AC_DEFINE(ENABLE_TREE_CHECKING, 1,
225 [Define if you want all operations on trees (the basic data
226    structure of the front ends) to be checked for dynamic type safety
227    at runtime.  This is moderately expensive.])
228 fi
229 if test x$ac_rtl_checking != x ; then
230   AC_DEFINE(ENABLE_RTL_CHECKING, 1,
231 [Define if you want all operations on RTL (the basic data structure
232    of the optimizer and back end) to be checked for dynamic type safety
233    at runtime.  This is quite expensive.])
234 fi
235 if test x$ac_gc_checking != x ; then
236   AC_DEFINE(ENABLE_GC_CHECKING, 1,
237 [Define if you want the garbage collector to do object poisoning and
238    other memory allocation checks.  This is quite expensive.])
239 fi
240 if test x$ac_gc_always_collect != x ; then
241   AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
242 [Define if you want the garbage collector to operate in maximally
243    paranoid mode, validating the entire heap and collecting garbage at
244    every opportunity.  This is extremely expensive.])
245 fi
246
247
248 AC_ARG_ENABLE(cpp,
249 [  --disable-cpp           don't provide a user-visible C preprocessor],
250 [], [enable_cpp=yes])
251
252 AC_ARG_WITH(cpp_install_dir,
253 [  --with-cpp-install-dir=DIR
254                           install the user visible C preprocessor in DIR
255                           (relative to PREFIX) as well as PREFIX/bin],
256 [if test x$withval = xyes; then
257   AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
258 elif test x$withval != xno; then
259   cpp_install_dir=$withval
260 fi])
261
262 # Enable __cxa_atexit for C++.
263 AC_ARG_ENABLE(__cxa_atexit,
264 [  --enable-__cxa_atexit   enable __cxa_atexit for C++],
265 [], [])
266 if test x$enable___cxa_atexit = xyes; then
267   AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 1,
268   [Define if you want to use __cxa_atexit, rather than atexit, to
269    register C++ destructors for local statics and global objects.
270    This is essential for fully standards-compliant handling of
271    destructors, but requires __cxa_atexit in libc.])
272 fi
273   
274 # Enable Multibyte Characters for C/C++
275 AC_ARG_ENABLE(c-mbchar,
276 [  --enable-c-mbchar       enable multibyte characters for C and C++],
277 if test x$enable_c_mbchar != xno; then
278   AC_DEFINE(MULTIBYTE_CHARS, 1,
279   [Define if you want the C and C++ compilers to support multibyte
280    character sets for source code.])
281 fi)
282   
283 # Enable threads
284 # Pass with no value to take the default
285 # Pass with a value to specify a thread package
286 AC_ARG_ENABLE(threads,
287 [  --enable-threads        enable thread usage for target GCC
288   --enable-threads=LIB    use LIB thread package for target GCC],,
289 enable_threads='')
290
291 enable_threads_flag=$enable_threads
292 # Check if a valid thread package
293 case x${enable_threads_flag} in
294         x | xno)
295                 # No threads
296                 target_thread_file='single'
297                 ;;
298         xyes)
299                 # default
300                 target_thread_file=''
301                 ;;
302         xdecosf1 | xirix | xmach | xos2 | xposix | xpthreads | xsingle | \
303         xsolaris | xwin32 | xdce | xrtems| xvxworks | xaix)
304                 target_thread_file=$enable_threads_flag
305                 ;;
306         *)
307                 echo "$enable_threads is an unknown thread package" 1>&2
308                 exit 1
309                 ;;
310 esac
311
312 AC_ARG_ENABLE(objc-gc,
313 [  --enable-objc-gc       enable the use of Boehm's garbage collector with
314                           the GNU Objective-C runtime],
315 if test x$enable_objc_gc = xno; then
316         objc_boehm_gc=''
317 else
318         objc_boehm_gc=1
319 fi,
320 objc_boehm_gc='')
321
322 AC_ARG_WITH(dwarf2,
323 [  --with-dwarf2           force the default debug format to be DWARF 2],
324 dwarf2="$with_dwarf2",
325 dwarf2=no)
326
327 AC_ARG_ENABLE(shared,
328 [  --disable-shared        don't provide a shared libgcc],
329 [
330   case $enable_shared in
331   yes | no) ;;
332   *)
333     enable_shared=no
334     IFS="${IFS=         }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
335     for pkg in $enableval; do
336       if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
337         enable_shared=yes
338       fi
339     done
340     IFS="$ac_save_ifs"
341     ;;
342   esac
343 ], [enable_shared=yes])
344 AC_SUBST(enable_shared)
345
346 # Determine the host, build, and target systems
347 AC_CANONICAL_SYSTEM
348
349 # Set program_transform_name
350 AC_ARG_PROGRAM
351
352 # Find the native compiler
353 AC_PROG_CC
354 AC_PROG_CC_C_O
355 # autoconf is lame and doesn't give us any substitution variable for this.
356 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
357   NO_MINUS_C_MINUS_O=yes
358 else
359   OUTPUT_OPTION='-o $@'
360 fi
361 AC_SUBST(NO_MINUS_C_MINUS_O)
362 AC_SUBST(OUTPUT_OPTION)
363
364 # See if GNAT has been installed
365 gcc_AC_PROG_GNAT
366
367 AC_CACHE_CHECK(whether ${CC-cc} accepts -Wno-long-long,
368 ac_cv_prog_cc_no_long_long,
369 [save_CFLAGS="$CFLAGS"
370 CFLAGS="-Wno-long-long"
371 AC_TRY_COMPILE(,,ac_cv_prog_cc_no_long_long=yes,
372                ac_cv_prog_cc_no_long_long=no)
373 CFLAGS="$save_CFLAGS"])
374
375 if test x$have_gnat != xno ; then 
376 AC_CACHE_CHECK(whether ${ADAC} accepts -Wno-long-long,
377 ac_cv_prog_adac_no_long_long,
378 [cat >conftest.adb <<EOF
379 procedure conftest is begin null; end conftest;
380 EOF
381 if $ADAC -Wno-long-long -c conftest.adb 1>&5 2>&5 ; then
382   ac_cv_prog_adac_no_long_long=yes
383 else
384   ac_cv_prog_adac_no_long_long=no
385 fi
386 rm -f conftest*])
387 else
388   ac_cv_prog_adac_no_long_long=yes
389 fi
390
391 strict1_warn=
392 if test $ac_cv_prog_cc_no_long_long = yes && \
393     test $ac_cv_prog_adac_no_long_long = yes ; then
394   strict1_warn="-pedantic -Wno-long-long"
395 fi
396 AC_SUBST(strict1_warn)
397
398 AC_PROG_CPP
399 AC_C_INLINE
400 gcc_AC_C_VOLATILE
401
402 gcc_AC_C_LONG_DOUBLE
403 gcc_AC_C_LONG_LONG
404 gcc_AC_C__BOOL
405
406 # sizeof(char) is 1 by definition.
407 gcc_AC_COMPILE_CHECK_SIZEOF(short)
408 gcc_AC_COMPILE_CHECK_SIZEOF(int)
409 gcc_AC_COMPILE_CHECK_SIZEOF(long)
410 if test $ac_cv_c_long_long = yes; then
411   gcc_AC_COMPILE_CHECK_SIZEOF(long long)
412 fi
413 if test $ac_cv_c___int64 = yes; then
414   gcc_AC_COMPILE_CHECK_SIZEOF(__int64)
415 fi
416
417 gcc_AC_C_CHARSET
418
419 # If the native compiler is GCC, we can enable warnings even in stage1.  
420 # That's useful for people building cross-compilers, or just running a
421 # quick `make'.
422 warn_cflags=
423 if test "x$GCC" = "xyes"; then
424   warn_cflags='$(GCC_WARN_CFLAGS)'
425 fi
426 AC_SUBST(warn_cflags)
427
428 # Stage specific cflags for build.
429 stage1_cflags=
430 case $build in
431 vax-*-*)
432   if test x$GCC = xyes
433   then
434     stage1_cflags="-Wa,-J"
435   else
436     stage1_cflags="-J"
437   fi
438   ;;
439 powerpc-*-darwin*)
440   # The spiffy cpp-precomp chokes on some legitimate constructs in GCC
441   # sources; use -no-cpp-precomp to get to GNU cpp.
442   # Apple's GCC has bugs in designated initializer handling, so disable
443   # that too.
444   stage1_cflags="-no-cpp-precomp -DHAVE_DESIGNATED_INITIALIZERS=0"
445   ;;
446 esac
447 AC_SUBST(stage1_cflags)
448
449 AC_PROG_MAKE_SET
450
451 AC_MSG_CHECKING([whether a default assembler was specified])
452 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
453     if test x"$gas_flag" = x"no"; then
454         AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
455     else
456         AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
457     fi
458 else
459     AC_MSG_RESULT(no)
460 fi
461
462 AC_MSG_CHECKING([whether a default linker was specified])
463 if test x"${DEFAULT_LINKER+set}" = x"set"; then
464     if test x"$gnu_ld_flag" = x"no"; then
465         AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
466     else
467         AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
468     fi
469 else
470     AC_MSG_RESULT(no)
471 fi
472
473 AC_MSG_CHECKING(for GNU C library)
474 AC_CACHE_VAL(gcc_cv_glibc,
475 [AC_TRY_COMPILE(
476   [#include <features.h>],[
477 #if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
478 #error Not a GNU C library system
479 #endif], 
480   [gcc_cv_glibc=yes], 
481   gcc_cv_glibc=no)])
482 AC_MSG_RESULT($gcc_cv_glibc)
483 if test $gcc_cv_glibc = yes; then
484   AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
485 fi
486
487 # Find some useful tools
488 AC_PROG_AWK
489 gcc_AC_PROG_LN
490 gcc_AC_PROG_LN_S
491 AC_PROG_RANLIB
492 gcc_AC_PROG_INSTALL
493
494 AC_HEADER_STDC
495 AC_HEADER_TIME
496 gcc_AC_HEADER_STDBOOL
497 gcc_AC_HEADER_STRING
498 AC_HEADER_SYS_WAIT
499 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h \
500                  fcntl.h unistd.h sys/file.h sys/time.h \
501                  sys/resource.h sys/param.h sys/times.h sys/stat.h \
502                  direct.h malloc.h langinfo.h)
503
504 # Check for thread headers.
505 AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
506 AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
507
508 # These tests can't be done till we know if we have limits.h.
509 gcc_AC_C_CHAR_BIT
510 gcc_AC_C_COMPILE_ENDIAN
511 gcc_AC_C_FLOAT_FORMAT
512
513 # See if we have the mktemp command.
514 AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
515
516 # Do we have a single-tree copy of texinfo?
517 if test -f $srcdir/../texinfo/Makefile.in; then
518   MAKEINFO='$(objdir)/../texinfo/makeinfo/makeinfo'
519   gcc_cv_prog_makeinfo_modern=yes
520   AC_MSG_RESULT([Using makeinfo from the unified source tree.])
521 else
522   # See if makeinfo has been installed and is modern enough
523   # that we can use it.
524   gcc_AC_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
525   [GNU texinfo.* \([0-9][0-9.]*\)],
526   [4.[1-9]*])
527 fi
528
529 if test $gcc_cv_prog_makeinfo_modern = no; then
530   AC_MSG_WARN([
531 *** Makeinfo is missing or too old.
532 *** Info documentation will not be built.])
533   BUILD_INFO=
534 else
535   BUILD_INFO=info               AC_SUBST(BUILD_INFO)
536 fi
537
538 # Is pod2man recent enough to regenerate manpages?
539 AC_MSG_CHECKING([for recent Pod::Man])
540 if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
541   AC_MSG_RESULT(yes)
542   GENERATED_MANPAGES=generated-manpages         AC_SUBST(GENERATED_MANPAGES)
543 else
544   AC_MSG_RESULT(no)
545   GENERATED_MANPAGES=
546 fi
547
548 # How about lex?
549 dnl Don't use AC_PROG_LEX; we insist on flex.
550 dnl LEXLIB is not useful in gcc.
551 if test -f $srcdir/../flex/skel.c; then
552   FLEX='$(objdir)/../flex/flex'
553 else
554   AC_CHECK_PROG(FLEX, flex, flex, false)
555 fi
556
557 # Bison?
558 # The -L switch is so bison can find its skeleton file.
559 if test -f $srcdir/../bison/bison.simple; then
560   BISON='$(objdir)/../bison/bison -L $(srcdir)/../bison/'
561 else
562   AC_CHECK_PROG(BISON, bison, bison, false)
563 fi
564
565 # These libraries may be used by collect2.
566 # We may need a special search path to get them linked.
567 AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
568 [save_LIBS="$LIBS"
569 for libs in '' -lld -lmld \
570                 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
571                 '-L/usr/lib/cmplrs/cc3.11 -lmld'
572 do
573         LIBS="$libs"
574         AC_TRY_LINK_FUNC(ldopen,
575                 [gcc_cv_collect2_libs="$libs"; break])
576 done
577 LIBS="$save_LIBS"
578 test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
579 case $gcc_cv_collect2_libs in
580         "none required")        ;;
581         *)      COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
582 esac
583 AC_SUBST(COLLECT2_LIBS)
584
585 # When building Ada code on Alpha, we need exc_resume which is usually in
586 # -lexc.  So test for it.
587 save_LIBS="$LIBS"
588 LIBS=
589 AC_SEARCH_LIBS(exc_resume, exc)
590 GNAT_LIBEXC="$LIBS"
591 LIBS="$save_LIBS"
592 AC_SUBST(GNAT_LIBEXC)
593
594 # See if the stage1 system preprocessor understands the ANSI C
595 # preprocessor stringification operator.  (Used by symcat.h.)
596 AC_C_STRINGIZE
597
598 # Use <inttypes.h> only if it exists,
599 # doesn't clash with <sys/types.h>, and declares intmax_t.
600 AC_MSG_CHECKING(for inttypes.h)
601 AC_CACHE_VAL(gcc_cv_header_inttypes_h,
602 [AC_TRY_COMPILE(
603   [#include <sys/types.h>
604 #include <inttypes.h>],
605   [intmax_t i = -1;],
606   [gcc_cv_header_inttypes_h=yes],
607   gcc_cv_header_inttypes_h=no)])
608 AC_MSG_RESULT($gcc_cv_header_inttypes_h)
609 if test $gcc_cv_header_inttypes_h = yes; then
610   AC_DEFINE(HAVE_INTTYPES_H, 1,
611         [Define if you have a working <inttypes.h> header file.])
612 fi
613
614 dnl Disabled until we have a complete test for buggy enum bitfields.
615 dnl gcc_AC_C_ENUM_BF_UNSIGNED
616
617 AC_CHECK_FUNCS(times clock dup2 kill getrlimit setrlimit atoll atoq \
618         sysconf strsignal putc_unlocked fputc_unlocked fputs_unlocked \
619         fwrite_unlocked fprintf_unlocked getrusage nl_langinfo lstat)
620
621 AC_CHECK_TYPE(ssize_t, int)
622
623 # Try to determine the array type of the second argument of getgroups
624 # for the target system (int or gid_t).
625 AC_TYPE_GETGROUPS
626 if test "${target}" = "${build}"; then
627   TARGET_GETGROUPS_T=$ac_cv_type_getgroups
628 else
629   case "${target}" in
630         # This condition may need some tweaking.  It should include all
631         # targets where the array type of the second argument of getgroups
632         # is int and the type of gid_t is not equivalent to int.
633         *-*-sunos* | *-*-ultrix*)
634                 TARGET_GETGROUPS_T=int
635                 ;;
636         *)
637                 TARGET_GETGROUPS_T=gid_t
638                 ;;
639   esac
640 fi
641 AC_SUBST(TARGET_GETGROUPS_T)
642
643 gcc_AC_FUNC_PRINTF_PTR
644
645 case "${host}" in
646 *-*-uwin*)
647   AC_MSG_ERROR([
648 *** UWIN may not be used as a host platform because
649 *** linking with posix.dll is not allowed by the GNU GPL])
650   ;;
651 *-*-*vms*)
652   # Under VMS, vfork works very different than on Unix. The standard test 
653   # won't work, and it isn't easily adaptable. It makes more sense to
654   # just force it.
655   ac_cv_func_vfork_works=yes
656   ;;
657 esac
658 AC_FUNC_VFORK
659 AC_FUNC_MMAP_ANYWHERE
660 AC_FUNC_MMAP_FILE
661
662 AM_ICONV
663
664 # We will need to find libiberty.h and ansidecl.h
665 saved_CFLAGS="$CFLAGS"
666 CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
667 gcc_AC_CHECK_DECLS(getenv atol sbrk abort atof getcwd getwd \
668         strsignal putc_unlocked fputs_unlocked fwrite_unlocked \
669         fprintf_unlocked strstr errno \
670         malloc realloc calloc free basename getopt clock, , ,[
671 #include "ansidecl.h"
672 #include "system.h"])
673
674 gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
675 #include "ansidecl.h"
676 #include "system.h"
677 #ifdef HAVE_SYS_RESOURCE_H
678 #include <sys/resource.h>
679 #endif
680 ])
681
682 gcc_AC_CHECK_DECLS(times, , ,[
683 #include "ansidecl.h"
684 #include "system.h"
685 #ifdef HAVE_SYS_TIMES_H
686 #include <sys/times.h>
687 #endif
688 ])
689
690 # More time-related stuff.
691 AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
692 AC_TRY_COMPILE([
693 #include "ansidecl.h"
694 #include "system.h"
695 #ifdef HAVE_SYS_TIMES_H
696 #include <sys/times.h>
697 #endif
698 ], [struct tms tms;], ac_cv_struct_tms=yes, ac_cv_struct_tms=no)])
699 if test $ac_cv_struct_tms = yes; then
700   AC_DEFINE(HAVE_STRUCT_TMS, 1,
701   [Define if <sys/times.h> defines struct tms.])
702 fi
703
704 # use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
705 # revisit after autoconf 2.50.
706 AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
707 AC_TRY_COMPILE([
708 #include "ansidecl.h"
709 #include "system.h"
710 ], [clock_t x;], gcc_cv_type_clock_t=yes, gcc_cv_type_clock_t=no)])
711 if test $gcc_cv_type_clock_t = yes; then
712   AC_DEFINE(HAVE_CLOCK_T, 1,
713   [Define if <time.h> defines clock_t.])
714 fi
715
716 # Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
717 CFLAGS="$saved_CFLAGS"
718
719 # mkdir takes a single argument on some systems. 
720 gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
721
722 # File extensions
723 manext='.1'
724 objext='.o'
725 AC_SUBST(manext)
726 AC_SUBST(objext)
727
728 build_xm_file=
729 build_xm_defines=
730 build_install_headers_dir=install-headers-tar
731 build_exeext=
732 host_xm_file=
733 host_xm_defines=
734 host_xmake_file=
735 host_truncate_target=
736 host_exeext=
737
738 # Decode the host machine, then the target machine.
739 # For the host machine, we save the xm_file variable as host_xm_file;
740 # then we decode the target machine and forget everything else
741 # that came from the host machine.
742 for machine in $build $host $target; do
743         . ${srcdir}/config.gcc
744 done
745
746 extra_objs="${host_extra_objs} ${extra_objs}"
747
748 # Default the target-machine variables that were not explicitly set.
749 if test x"$tm_file" = x
750 then tm_file=$cpu_type/$cpu_type.h; fi
751
752 if test x"$extra_headers" = x
753 then extra_headers=; fi
754
755 if test x$md_file = x
756 then md_file=$cpu_type/$cpu_type.md; fi
757
758 if test x$out_file = x
759 then out_file=$cpu_type/$cpu_type.c; fi
760
761 if test x"$tmake_file" = x
762 then tmake_file=$cpu_type/t-$cpu_type
763 fi
764
765 if test x"$dwarf2" = xyes
766 then tm_file="$tm_file tm-dwarf2.h"
767 fi
768
769 if test x$float_format = x
770 then float_format=i64
771 fi
772
773 if test $float_format = none
774 then float_h_file=Makefile.in
775 else float_h_file=float-$float_format.h
776 fi
777
778 # Handle cpp installation.
779 if test x$enable_cpp != xno
780 then
781   tmake_file="$tmake_file t-install-cpp"
782 fi
783
784 # Say what files are being used for the output code and MD file.
785 echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
786 echo "Using \`$srcdir/config/$md_file' as machine description file."
787
788 # If any of the xm_file variables contain nonexistent files, warn
789 # about them and drop them.
790
791 bx=
792 for x in $build_xm_file; do
793   if    test -f $srcdir/config/$x
794   then      bx="$bx $x"
795   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
796   fi
797 done
798 build_xm_file="$bx"
799
800 hx=
801 for x in $host_xm_file; do
802   if    test -f $srcdir/config/$x
803   then      hx="$hx $x"
804   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
805   fi
806 done
807 host_xm_file="$hx"
808
809 tx=
810 for x in $xm_file; do
811   if    test -f $srcdir/config/$x
812   then      tx="$tx $x"
813   else      AC_MSG_WARN($srcdir/config/$x does not exist.)
814   fi
815 done
816 xm_file="$tx"
817
818 count=a
819 for f in $tm_file; do
820         count=${count}x
821 done
822 if test $count = ax; then
823         echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
824 else
825         echo "Using the following target machine macro files:"
826         for f in $tm_file; do
827                 echo "  $srcdir/config/$f"
828         done
829 fi
830
831 count=a
832 for f in $host_xm_file; do
833         count=${count}x
834 done
835 if test $count = a; then
836         :
837 elif test $count = ax; then
838         echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
839 else
840         echo "Using the following host machine macro files:"
841         for f in $host_xm_file; do
842                 echo "  $srcdir/config/$f"
843         done
844 fi
845
846 if test "$host_xm_file" != "$build_xm_file"; then
847         count=a
848         for f in $build_xm_file; do
849                 count=${count}x
850         done
851         if test $count = a; then
852                 :
853         elif test $count = ax; then
854                 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
855         else
856                 echo "Using the following build machine macro files:"
857                 for f in $build_xm_file; do
858                         echo "  $srcdir/config/$f"
859                 done
860         fi
861 fi
862
863 if test x$thread_file = x; then
864         if test x$target_thread_file != x; then
865                 thread_file=$target_thread_file
866         else
867                 thread_file='single'
868         fi
869 fi
870
871 # auto-host.h is the file containing items generated by autoconf and is
872 # the first file included by config.h.
873 # If host=build, it is correct to have hconfig include auto-host.h
874 # as well.  If host!=build, we are in error and need to do more 
875 # work to find out the build config parameters.
876 if test x$host = x$build
877 then
878         build_auto=auto-host.h
879         FORBUILD=..
880 else
881         # We create a subdir, then run autoconf in the subdir.
882         # To prevent recursion we set host and build for the new
883         # invocation of configure to the build for this invocation
884         # of configure. 
885         tempdir=build.$$
886         rm -rf $tempdir
887         mkdir $tempdir
888         cd $tempdir
889         case ${srcdir} in
890         /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
891         *) realsrcdir=../${srcdir};;
892         esac
893         saved_CFLAGS="${CFLAGS}"
894         CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
895         ${realsrcdir}/configure \
896                 --target=$target_alias --host=$build_alias --build=$build_alias
897         CFLAGS="${saved_CFLAGS}"
898
899         # We just finished tests for the build machine, so rename
900         # the file auto-build.h in the gcc directory.
901         mv auto-host.h ../auto-build.h
902         cd ..
903         rm -rf $tempdir
904         build_auto=auto-build.h
905         FORBUILD=../$build
906 fi
907 AC_SUBST(FORBUILD)
908
909 tm_file="${tm_file} defaults.h"
910 host_xm_file="auto-host.h ansidecl.h ${host_xm_file} ${tm_file}"
911 build_xm_file="${build_auto} ansidecl.h ${build_xm_file} ${tm_file}"
912 xm_file="ansidecl.h ${xm_file} ${tm_file}"
913
914 # Truncate the target if necessary
915 if test x$host_truncate_target != x; then
916         target=`echo $target | sed -e 's/\(..............\).*/\1/'`
917 fi
918
919 # Get the version trigger filename from the toplevel
920 if test "${with_gcc_version_trigger+set}" = set; then
921         gcc_version_trigger=$with_gcc_version_trigger
922 else
923         gcc_version_trigger=${srcdir}/version.c
924 fi
925 changequote(,)dnl
926 gcc_version_full=`grep version_string ${gcc_version_trigger} | sed -e 's/.*"\([^"]*\)".*/\1/'`
927 gcc_version=`echo ${gcc_version_full} | sed -e 's/\([^ ]*\) .*/\1/'`
928
929 # Compile in configure arguments.
930 if test -f configargs.h ; then
931         # Being re-configured.
932         gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
933         gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
934 else
935         gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
936 fi
937 cat > configargs.h <<EOF
938 /* Generated automatically. */
939 static const char configuration_arguments[] = "$gcc_config_arguments";
940 static const char thread_model[] = "$thread_file";
941 EOF
942 changequote([,])dnl
943
944 # Internationalization
945 PACKAGE=gcc
946 VERSION="$gcc_version"
947 AC_SUBST(PACKAGE)
948 AC_SUBST(VERSION)
949
950 # Enable NLS support by default
951 AC_ARG_ENABLE(nls,
952   [  --enable-nls            use Native Language Support (default)],
953   , enable_nls=yes)
954
955 # if cross compiling, disable NLS support.
956 # It's not worth the trouble, at least for now.
957
958 if test "${build}" != "${host}" && test "x$enable_nls" = "xyes"; then
959   AC_MSG_WARN(Disabling NLS support for canadian cross compiler.)
960   enable_nls=no
961 fi
962
963 AM_GNU_GETTEXT
964
965 # Windows32 Registry support for specifying GCC installation paths.
966 AC_ARG_ENABLE(win32-registry,
967 [  --disable-win32-registry
968                           disable lookup of installation paths in the
969                           Registry on Windows hosts
970   --enable-win32-registry enable registry lookup (default)
971   --enable-win32-registry=KEY
972                           use KEY instead of GCC version as the last portion
973                           of the registry key],,)
974 case $host_os in
975         win32 | pe | cygwin* | mingw32* | uwin*)
976 AC_MSG_CHECKING(whether windows registry support is requested)
977 if test "x$enable_win32_registry" != xno; then
978   AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
979 [Define to 1 if installation paths should be looked up in Windows32
980    Registry. Ignored on non windows32 hosts.])
981   AC_MSG_RESULT(yes)
982   AC_SEARCH_LIBS(RegOpenKeyExA, advapi32)
983 else
984   AC_MSG_RESULT(no)
985 fi
986
987 # Check if user specified a different registry key.
988 case "x${enable_win32_registry}" in
989 x | xyes)
990   # default.
991   gcc_cv_win32_registry_key="$VERSION"
992   ;;
993 xno)
994   # no registry lookup.
995   gcc_cv_win32_registry_key=''
996   ;;
997 *)
998   # user-specified key.
999   gcc_cv_win32_registry_key="$enable_win32_registry"
1000   ;;
1001 esac
1002
1003 if test "x$enable_win32_registry" != xno; then
1004   AC_MSG_CHECKING(registry key on windows hosts)
1005   AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$gcc_cv_win32_registry_key",
1006         [Define to be the last portion of registry key on windows hosts.])
1007   AC_MSG_RESULT($gcc_cv_win32_registry_key)
1008 fi
1009 ;;
1010 esac
1011
1012 # Get an absolute path to the GCC top-level source directory
1013 holddir=`pwd`
1014 cd $srcdir
1015 topdir=`pwd`
1016 cd $holddir
1017
1018 # Conditionalize the makefile for this host machine.
1019 # Make-host contains the concatenation of all host makefile fragments
1020 # [there can be more than one].  This file is built by configure.frag.
1021 host_overrides=Make-host
1022 dep_host_xmake_file=
1023 for f in .. ${host_xmake_file}
1024 do
1025         if test -f ${srcdir}/config/$f
1026         then
1027                 dep_host_xmake_file="${dep_host_xmake_file} ${srcdir}/config/$f"
1028         fi
1029 done
1030
1031 # Conditionalize the makefile for this target machine.
1032 # Make-target contains the concatenation of all host makefile fragments
1033 # [there can be more than one].  This file is built by configure.frag.
1034 target_overrides=Make-target
1035 dep_tmake_file=
1036 for f in .. ${tmake_file}
1037 do
1038         if test -f ${srcdir}/config/$f
1039         then
1040                 dep_tmake_file="${dep_tmake_file} ${srcdir}/config/$f"
1041         fi
1042 done
1043
1044 # If the host doesn't support symlinks, modify CC in
1045 # FLAGS_TO_PASS so CC="stage1/xgcc -Bstage1/" works.
1046 # Otherwise, we can use "CC=$(CC)".
1047 rm -f symtest.tem
1048 if $symbolic_link $srcdir/gcc.c symtest.tem 2>/dev/null
1049 then
1050         cc_set_by_configure="\$(CC)"
1051         quoted_cc_set_by_configure="\$(CC)"
1052         stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1053         quoted_stage_prefix_set_by_configure="\$(STAGE_PREFIX)"
1054 else
1055         rm -f symtest.tem
1056         if cp -p $srcdir/gcc.c symtest.tem 2>/dev/null
1057         then
1058                 symbolic_link="cp -p"
1059         else
1060                 symbolic_link="cp"
1061         fi
1062         cc_set_by_configure="\`case '\$(CC)' in stage*) echo '\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\$(CC)';; esac\`"
1063         quoted_cc_set_by_configure="\\\`case '\\\$(CC)' in stage*) echo '\\\$(CC)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(CC)';; esac\\\`"
1064         stage_prefix_set_by_configure="\`case '\$(STAGE_PREFIX)' in stage*) echo '\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\$(STAGE_PREFIX)';; esac\`"
1065         quoted_stage_prefix_set_by_configure="\\\`case '\\\$(STAGE_PREFIX)' in stage*) echo '\\\$(STAGE_PREFIX)' | sed -e 's|stage|../stage|g';; *) echo '\\\$(STAGE_PREFIX)';; esac\\\`"
1066 fi
1067 rm -f symtest.tem
1068
1069 out_object_file=`basename $out_file .c`.o
1070
1071 tm_file_list=
1072 for f in $tm_file; do
1073   case $f in
1074     ansidecl.h )
1075        tm_file_list="${tm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1076     defaults.h )
1077        tm_file_list="${tm_file_list} $f" ;;
1078     *) tm_file_list="${tm_file_list} \$(srcdir)/config/$f" ;;
1079   esac
1080 done
1081
1082 tm_p_file_list=
1083 for f in $tm_p_file; do
1084     tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
1085 done
1086
1087 host_xm_file_list=
1088 for f in $host_xm_file; do
1089   case $f in
1090     ansidecl.h )
1091        host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1092     auto-host.h | defaults.h )
1093        host_xm_file_list="${host_xm_file_list} $f" ;;
1094     *) host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f" ;;
1095   esac
1096 done
1097
1098 build_xm_file_list=
1099 for f in $build_xm_file; do
1100   case $f in
1101     ansidecl.h )
1102        build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/ansidecl.h" ;;
1103     auto-build.h | auto-host.h | defaults.h )
1104        build_xm_file_list="${build_xm_file_list} $f" ;;
1105     *) build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f" ;;
1106   esac
1107 done
1108
1109 # Define macro CROSS_COMPILE in compilation if this is a cross-compiler.
1110 # Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1111 CROSS=                                          AC_SUBST(CROSS)
1112 ALL=all.internal                                AC_SUBST(ALL)
1113 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
1114 if test x$host != x$target
1115 then
1116         CROSS="-DCROSS_COMPILE"
1117         ALL=all.cross
1118         SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
1119 fi
1120
1121 # If this is a cross-compiler that does not
1122 # have its own set of headers then define
1123 # inhibit_libc
1124
1125 # If this is using newlib, then define inhibit_libc in LIBGCC2_CFLAGS.
1126 # This prevents libgcc2 from containing any code which requires libc
1127 # support.
1128 inhibit_libc=
1129 if [test x$host != x$target] && [test x$with_headers = x]; then
1130        inhibit_libc=-Dinhibit_libc
1131 else
1132        if [test x$with_newlib = xyes]; then
1133                inhibit_libc=-Dinhibit_libc
1134        fi
1135 fi
1136 AC_SUBST(inhibit_libc)
1137
1138 # When building gcc with a cross-compiler, we need to adjust things so
1139 # that the generator programs are still built with the native compiler.
1140 # Also, we cannot run fixincludes or fix-header.
1141 # Note that the terminology here is wrong; it should be BUILD_* throughout.
1142 # FIXME.
1143
1144 # These are the normal (build=host) settings:
1145 HOST_PREFIX=                    AC_SUBST(HOST_PREFIX)
1146 HOST_PREFIX_1=ignore-           AC_SUBST(HOST_PREFIX_1)
1147 HOST_CC='$(CC)'                 AC_SUBST(HOST_CC)
1148 HOST_CFLAGS='$(ALL_CFLAGS)'     AC_SUBST(HOST_CFLAGS)
1149
1150 STMP_FIXINC=stmp-fixinc         AC_SUBST(STMP_FIXINC)
1151 STMP_FIXPROTO=stmp-fixproto     AC_SUBST(STMP_FIXPROTO)
1152
1153 # And these apply if build != host.
1154 if test x$build != x$host
1155 then
1156     HOST_PREFIX=build-
1157     HOST_PREFIX_1=build-
1158     HOST_CC='$(CC_FOR_BUILD)'
1159     HOST_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD) $(XCFLAGS)'
1160
1161     STMP_FIXINC=
1162     STMP_FIXPROTO=
1163 fi
1164
1165 # Expand extra_headers to include complete path.
1166 # This substitutes for lots of t-* files.
1167 extra_headers_list=
1168 if test "x$extra_headers" = x
1169 then true
1170 else
1171         # Prepend ${srcdir}/config/${cpu_type}/ to every entry in extra_headers.
1172         for file in $extra_headers;
1173         do
1174                 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
1175         done
1176 fi
1177
1178 if test x$use_collect2 = xno; then
1179         use_collect2=
1180 fi
1181
1182 # Add a definition of USE_COLLECT2 if system wants one.
1183 if test x$use_collect2 != x
1184 then
1185         host_xm_defines="${host_xm_defines} USE_COLLECT2"
1186         xm_defines="${xm_defines} USE_COLLECT2"
1187 fi
1188
1189 # If we have gas in the build tree, make a link to it.
1190 if test -f ../gas/Makefile; then
1191         rm -f as; $symbolic_link ../gas/as-new$host_exeext as$host_exeext 2>/dev/null
1192 fi
1193
1194 # If we have nm and objdump in the build tree, make a link to them.
1195 if test -f ../binutils/Makefile; then
1196         rm -f nm; $symbolic_link ../binutils/nm-new$host_exeext nm$host_exeext 2>/dev/null
1197         rm -f objdump; $symbolic_link ../binutils/objdump$host_exeext objdump$host_exeext 2>/dev/null
1198 fi
1199
1200 # If we have ld in the build tree, make a link to it.
1201 if test -f ../ld/Makefile; then
1202         rm -f collect-ld; $symbolic_link ../ld/ld-new$host_exeext collect-ld$host_exeext 2>/dev/null
1203 fi
1204
1205 # Figure out what assembler we will be using.
1206 AC_MSG_CHECKING(what assembler to use)
1207 gcc_cv_as=
1208 gcc_cv_gas_major_version=
1209 gcc_cv_gas_minor_version=
1210 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
1211 gcc_cv_as_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1212 if test -x "$DEFAULT_ASSEMBLER"; then
1213         gcc_cv_as="$DEFAULT_ASSEMBLER"
1214 elif test -x "$AS"; then
1215         gcc_cv_as="$AS"
1216 elif test -x as$host_exeext; then
1217         # Build using assembler in the current directory.
1218         gcc_cv_as=./as$host_exeext
1219 elif test -f $gcc_cv_as_gas_srcdir/configure.in -a -f ../gas/Makefile; then
1220         # Single tree build which includes gas.
1221         for f in $gcc_cv_as_bfd_srcdir/configure $gcc_cv_as_gas_srcdir/configure $gcc_cv_as_gas_srcdir/configure.in $gcc_cv_as_gas_srcdir/Makefile.in
1222         do
1223 changequote(,)dnl
1224                 gcc_cv_gas_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1225 changequote([,])dnl
1226                 if test x$gcc_cv_gas_version != x; then
1227                         break
1228                 fi
1229         done
1230 changequote(,)dnl
1231         gcc_cv_gas_major_version=`expr "$gcc_cv_gas_version" : "VERSION=\([0-9]*\)"`
1232         gcc_cv_gas_minor_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1233         gcc_cv_gas_patch_version=`expr "$gcc_cv_gas_version" : "VERSION=[0-9]*\.[0-9]*\.\([0-9]*\)"`
1234 changequote([,])dnl
1235 fi
1236
1237 if test "x$gcc_cv_as" = x; then
1238         # Search the same directories that the installed compiler will
1239         # search.  Else we may find the wrong assembler and lose.  If we
1240         # do not find a suitable assembler binary, then try the user's
1241         # path.
1242         #
1243         # Also note we have to check MD_EXEC_PREFIX before checking the
1244         # user's path.  Unfortunately, there is no good way to get at the
1245         # value of MD_EXEC_PREFIX here.  So we do a brute force search
1246         # through all the known MD_EXEC_PREFIX values.  Ugh.  This needs
1247         # to be fixed as part of the make/configure rewrite too.
1248
1249         if test "x$exec_prefix" = xNONE; then
1250                 if test "x$prefix" = xNONE; then
1251                         test_prefix=/usr/local
1252                 else
1253                         test_prefix=$prefix
1254                 fi
1255         else
1256                 test_prefix=$exec_prefix
1257         fi
1258
1259         # If the loop below does not find an assembler, then use whatever
1260         # one we can find in the users's path.
1261         # user's path.
1262         if test "x$program_prefix" != xNONE; then
1263                 gcc_cv_as=${program_prefix}as$host_exeext
1264         else
1265                 gcc_cv_as=`echo as | sed ${program_transform_name}`$host_exeext
1266         fi
1267
1268         test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1269                    $test_prefix/lib/gcc-lib/$target_alias \
1270                    /usr/lib/gcc/$target_alias/$gcc_version \
1271                    /usr/lib/gcc/$target_alias \
1272                    $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1273                    $test_prefix/$target_alias/bin"
1274
1275         if test x$host = x$target; then
1276             test_dirs="$test_dirs \
1277                    /usr/libexec \
1278                    /usr/ccs/gcc \
1279                    /usr/ccs/bin \
1280                    /udk/usr/ccs/bin \
1281                    /bsd43/usr/lib/cmplrs/cc \
1282                    /usr/cross64/usr/bin \
1283                    /usr/lib/cmplrs/cc \
1284                    /sysv/usr/lib/cmplrs/cc \
1285                    /svr4/usr/lib/cmplrs/cc \
1286                    /usr/bin"
1287         fi
1288
1289         for dir in $test_dirs; do
1290                 if test -x $dir/as$host_exeext; then
1291                         gcc_cv_as=$dir/as$host_exeext
1292                         break;
1293                 fi
1294         done
1295 fi
1296 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1297   AC_MSG_RESULT("newly built gas")
1298 else
1299   AC_MSG_RESULT($gcc_cv_as)
1300 fi
1301
1302 # Figure out what linker we will be using.
1303 AC_MSG_CHECKING(what linker to use)
1304 gcc_cv_ld=
1305 gcc_cv_gld_major_version=
1306 gcc_cv_gld_minor_version=
1307 gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1308 gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1309 if test -x "$DEFAULT_LINKER"; then
1310         gcc_cv_ld="$DEFAULT_LINKER"
1311 elif test -x "$LD"; then
1312         gcc_cv_ld="$LD"
1313 elif test -x ld$host_exeext; then
1314         # Build using linker in the current directory.
1315         gcc_cv_ld=./ld$host_exeext
1316 elif test -f $gcc_cv_ld_gld_srcdir/configure.in -a -f ../ld/Makefile; then
1317         # Single tree build which includes ld.
1318         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
1319         do
1320 changequote(,)dnl
1321                 gcc_cv_gld_version=`grep '^VERSION=[0-9]*\.[0-9]*' $f`
1322 changequote([,])dnl
1323                 if test x$gcc_cv_gld_version != x; then
1324                         break
1325                 fi
1326         done
1327 changequote(,)dnl
1328         gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
1329         gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1330 changequote([,])dnl
1331 fi
1332
1333 if test "x$gcc_cv_ld" = x; then
1334         # Search the same directories that the installed compiler will
1335         # search.  Else we may find the wrong linker and lose.  If we
1336         # do not find a suitable linker binary, then try the user's
1337         # path.
1338         #
1339         # Also note we have to check MD_EXEC_PREFIX before checking the
1340         # user's path.  Unfortunately, there is no good way to get at the
1341         # value of MD_EXEC_PREFIX here.  So we do a brute force search
1342         # through all the known MD_EXEC_PREFIX values.  Ugh.  This needs
1343         # to be fixed as part of the make/configure rewrite too.
1344
1345         if test "x$exec_prefix" = xNONE; then
1346                 if test "x$prefix" = xNONE; then
1347                         test_prefix=/usr/local
1348                 else
1349                         test_prefix=$prefix
1350                 fi
1351         else
1352                 test_prefix=$exec_prefix
1353         fi
1354
1355         # If the loop below does not find an linker, then use whatever
1356         # one we can find in the users's path.
1357         # user's path.
1358         if test "x$program_prefix" != xNONE; then
1359                 gcc_cv_ld=${program_prefix}ld$host_exeext
1360         else
1361                 gcc_cv_ld=`echo ld | sed ${program_transform_name}`$host_exeext
1362         fi
1363
1364         test_dirs="$test_prefix/lib/gcc-lib/$target_alias/$gcc_version \
1365                    $test_prefix/lib/gcc-lib/$target_alias \
1366                    /usr/lib/gcc/$target_alias/$gcc_version \
1367                    /usr/lib/gcc/$target_alias \
1368                    $test_prefix/$target_alias/bin/$target_alias/$gcc_version \
1369                    $test_prefix/$target_alias/bin"
1370
1371         if test x$host = x$target; then
1372             test_dirs="$test_dirs \
1373                    /usr/libexec \
1374                    /usr/ccs/gcc \
1375                    /usr/ccs/bin \
1376                    /udk/usr/ccs/bin \
1377                    /bsd43/usr/lib/cmplrs/cc \
1378                    /usr/cross64/usr/bin \
1379                    /usr/lib/cmplrs/cc \
1380                    /sysv/usr/lib/cmplrs/cc \
1381                    /svr4/usr/lib/cmplrs/cc \
1382                    /usr/bin"
1383         fi
1384
1385         for dir in $test_dirs; do
1386                 if test -x $dir/ld$host_exeext; then
1387                         gcc_cv_ld=$dir/ld$host_exeext
1388                         break;
1389                 fi
1390         done
1391 fi
1392 if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
1393   AC_MSG_RESULT("newly built ld")
1394 else
1395   AC_MSG_RESULT($gcc_cv_ld)
1396 fi
1397
1398 # Figure out what nm we will be using.
1399 AC_MSG_CHECKING(what nm to use)
1400 if test -x nm$host_exeext; then
1401         gcc_cv_nm=./nm$host_exeext
1402 elif test "x$program_prefix" != xNONE; then
1403         gcc_cv_nm=${program_prefix}nm$host_exeext
1404 else
1405         gcc_cv_nm=`echo nm | sed ${program_transform_name}`$host_exeext
1406 fi
1407 AC_MSG_RESULT($gcc_cv_nm)
1408
1409 # Figure out what objdump we will be using.
1410 AC_MSG_CHECKING(what objdump to use)
1411 if test -x objdump$host_exeext; then
1412         gcc_cv_objdump=./objdump$host_exeext
1413 elif test "x$program_prefix" != xNONE; then
1414         gcc_cv_objdump=${program_prefix}objdump$host_exeext
1415 else
1416         gcc_cv_objdump=`echo objdump | sed ${program_transform_name}`$host_exeext
1417 fi
1418 AC_MSG_RESULT($gcc_cv_objdump)
1419
1420 # Figure out what assembler alignment features are present.
1421 AC_MSG_CHECKING(assembler alignment features)
1422 gcc_cv_as_alignment_features=none
1423 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1424         # Gas version 2.6 and later support for .balign and .p2align.
1425         # bytes to skip when using .p2align.
1426         if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 6 -o "$gcc_cv_gas_major_version" -gt 2; then
1427                 gcc_cv_as_alignment_features=".balign and .p2align"
1428                 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1429         fi
1430         # Gas version 2.8 and later support specifying the maximum
1431         # bytes to skip when using .p2align.
1432         if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 8 -o "$gcc_cv_gas_major_version" -gt 2; then
1433                 gcc_cv_as_alignment_features=".p2align including maximum skip"
1434                 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1435         fi
1436 elif test x$gcc_cv_as != x; then
1437         # Check if we have .balign and .p2align
1438         echo ".balign  4" > conftest.s
1439         echo ".p2align  2" >> conftest.s
1440         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1441                 gcc_cv_as_alignment_features=".balign and .p2align"
1442                 AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN)
1443         fi
1444         rm -f conftest.s conftest.o
1445         # Check if specifying the maximum bytes to skip when
1446         # using .p2align is supported.
1447         echo ".p2align 4,,7" > conftest.s
1448         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1449                 gcc_cv_as_alignment_features=".p2align including maximum skip"
1450                 AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN)
1451         fi
1452         rm -f conftest.s conftest.o
1453 fi
1454 AC_MSG_RESULT($gcc_cv_as_alignment_features)
1455
1456 AC_MSG_CHECKING(assembler subsection support)
1457 gcc_cv_as_subsections=no
1458 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1459   if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1460     gcc_cv_as_subsections="working .subsection -1"
1461   fi
1462 elif test x$gcc_cv_as != x; then
1463         # Check if we have .subsection
1464         echo ".subsection 1" > conftest.s
1465         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1466                 gcc_cv_as_subsections=".subsection"
1467                 if test x$gcc_cv_nm != x; then
1468                         cat > conftest.s <<EOF
1469 conftest_label1: .word 0
1470 .subsection -1
1471 conftest_label2: .word 0
1472 .previous
1473 EOF
1474                         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1475                                 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1476                                 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1477                                 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1; then
1478                                         :
1479                                 else
1480                                         gcc_cv_as_subsections="working .subsection -1"
1481                                 fi
1482                         fi
1483                 fi
1484         fi
1485         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1486 fi
1487 if test x"$gcc_cv_as_subsections" = x"working .subsection -1"; then
1488         AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1489 [Define if your assembler supports .subsection and .subsection -1 starts
1490    emitting at the beginning of your section.])
1491 fi
1492 AC_MSG_RESULT($gcc_cv_as_subsections)
1493
1494 AC_MSG_CHECKING(assembler weak support)
1495 gcc_cv_as_weak=no
1496 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1497   if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 2 -o "$gcc_cv_gas_major_version" -gt 2; then
1498     gcc_cv_as_weak="yes"
1499   fi
1500 elif test x$gcc_cv_as != x; then
1501         # Check if we have .weak
1502         echo "  .weak foobar" > conftest.s
1503         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1504                 gcc_cv_as_weak="yes"
1505         fi
1506         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1507 fi
1508 if test x"$gcc_cv_as_weak" = xyes; then
1509         AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])
1510 fi
1511 AC_MSG_RESULT($gcc_cv_as_weak)
1512
1513 AC_MSG_CHECKING(assembler hidden support)
1514 gcc_cv_as_hidden=no
1515 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1516   if test "$gcc_cv_gas_major_version" -eq 2     \
1517           -a "$gcc_cv_gas_minor_version" -eq 12 \
1518           -a "$gcc_cv_gas_patch_version" -ge 1  \
1519           -o "$gcc_cv_gas_major_version" -eq 2  \
1520           -a "$gcc_cv_gas_minor_version" -gt 12 \
1521           -o "$gcc_cv_gas_major_version" -gt 2  \
1522     && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1523     gcc_cv_as_hidden="yes"
1524   fi
1525 elif test x$gcc_cv_as != x; then
1526         # Check if we have .hidden
1527         echo "  .hidden foobar" > conftest.s
1528         echo "foobar:" >> conftest.s
1529         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1530                 gcc_cv_as_hidden="yes"
1531         fi
1532         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1533
1534         # GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
1535         # This is irritatingly difficult to feature test for.  Look for 
1536         # the date string after the version number.
1537         ld_ver=`$gcc_cv_ld --version 2>/dev/null | head -1`
1538         if echo "$ld_ver" | grep GNU > /dev/null; then
1539 changequote(,)dnl
1540                 ld_vers=`echo $ld_ver | sed -n 's,^.*[  ]\([0-9][0-9]*\.[0-9][0-9]*\(\|\.[0-9][0-9]*\)\)\([     ].*\|\)$,\1,p'`
1541                 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'`
1542                 if test 0"$ld_date" -lt 20020404; then
1543                         if test -n "$ld_date"; then
1544                                 # If there was date string, but was earlier than 2002-04-04, fail
1545                                 gcc_cv_as_hidden="no"
1546                         elif test -z "$ld_vers"; then
1547                                 # If there was no date string nor ld version number, something is wrong
1548                                 gcc_cv_as_hidden="no"
1549                         else
1550                                 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
1551                                 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
1552                                 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
1553                                 test -z "$ld_vers_patch" && ld_vers_patch=0
1554                                 if test "$ld_vers_major" -lt 2; then
1555                                         gcc_cv_as_hidden="no"
1556                                 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
1557                                         gcc_cv_as_hidden="no"
1558                                 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 \
1559                                           -a "$ld_vers_patch" -eq 0; then
1560                                         gcc_cv_as_hidden="no"
1561                                 fi
1562                         fi
1563                 fi
1564 changequote([,])dnl
1565         fi
1566 fi
1567
1568 if test x"$gcc_cv_as_hidden" = xyes; then
1569         AC_DEFINE(HAVE_GAS_HIDDEN, 1,
1570                 [Define if your assembler supports .hidden.])
1571 fi
1572 AC_MSG_RESULT($gcc_cv_as_hidden)
1573 libgcc_visibility=$gcc_cv_as_hidden
1574 AC_SUBST(libgcc_visibility)
1575
1576 AC_MSG_CHECKING(assembler leb128 support)
1577 gcc_cv_as_leb128=no
1578 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1579   if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 11 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1580     gcc_cv_as_leb128="yes"
1581   fi
1582 elif test x$gcc_cv_as != x; then
1583         # Check if we have .[us]leb128, and support symbol arithmetic with it.
1584         cat > conftest.s <<EOF
1585         .data
1586         .uleb128 L2 - L1
1587 L1:
1588         .uleb128 1280
1589         .sleb128 -1010
1590 L2:
1591 EOF
1592         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1593                 gcc_cv_as_leb128="yes"
1594
1595                 # GAS versions before 2.11 do not support uleb128,
1596                 # despite appearing to.
1597                 # ??? There exists an elf-specific test that will crash
1598                 # the assembler.  Perhaps it's better to figure out whether
1599                 # arbitrary sections are supported and try the test.
1600                 as_ver=`$gcc_cv_as --version 2>/dev/null | head -1`
1601                 if echo "$as_ver" | grep GNU > /dev/null; then
1602 changequote(,)dnl
1603                         as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
1604                         as_major=`echo $as_ver | sed 's/\..*//'`
1605                         as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
1606 changequote([,])dnl
1607                         if test $as_major -eq 2 -a $as_minor -lt 11; then
1608                                 gcc_cv_as_leb128="no"
1609                         fi
1610                 fi
1611         fi
1612         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1613 fi
1614 if test x"$gcc_cv_as_leb128" = xyes; then
1615         AC_DEFINE(HAVE_AS_LEB128, 1,
1616                 [Define if your assembler supports .uleb128.])
1617 fi
1618 AC_MSG_RESULT($gcc_cv_as_leb128)
1619
1620 AC_MSG_CHECKING(assembler eh_frame optimization)
1621 gcc_cv_as_eh_frame=no
1622 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1623   if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1624     gcc_cv_as_eh_frame="yes"
1625   fi
1626 elif test x$gcc_cv_as != x; then
1627         # Check if this is GAS.
1628         as_ver=`$gcc_cv_as --version < /dev/null 2> /dev/null | head -1`
1629         rm -f a.out 2> /dev/null
1630         if echo "$as_ver" | grep GNU > /dev/null; then
1631                 # Versions up to and including 2.11.0 may mis-optimize
1632                 # .eh_frame data.  Try something.
1633                 cat > conftest.s <<EOF
1634         .text
1635 .LFB1:
1636         .4byte  0
1637 .L1:
1638         .4byte  0
1639 .LFE1:
1640         .section        .eh_frame,"aw",@progbits
1641 __FRAME_BEGIN__:
1642         .4byte  .LECIE1-.LSCIE1
1643 .LSCIE1:
1644         .4byte  0x0
1645         .byte   0x1
1646         .ascii "z\0"
1647         .byte   0x1
1648         .byte   0x78
1649         .byte   0x1a
1650         .byte   0x0
1651         .byte   0x4
1652         .4byte  1
1653         .p2align 1
1654 .LECIE1:
1655 .LSFDE1:
1656         .4byte  .LEFDE1-.LASFDE1
1657 .LASFDE1:
1658         .4byte  .LASFDE1-__FRAME_BEGIN__
1659         .4byte  .LFB1
1660         .4byte  .LFE1-.LFB1
1661         .byte   0x4
1662         .4byte  .LFE1-.LFB1
1663         .byte   0x4
1664         .4byte  .L1-.LFB1
1665 .LEFDE1:
1666 EOF
1667                 cat > conftest.lit <<EOF
1668  0000 10000000 00000000 017a0001 781a0004  .........z..x...
1669  0010 01000000 12000000 18000000 00000000  ................
1670  0020 08000000 04080000 0044               .........D      
1671 EOF
1672                 cat > conftest.big <<EOF
1673  0000 00000010 00000000 017a0001 781a0004  .........z..x...
1674  0010 00000001 00000012 00000018 00000000  ................
1675  0020 00000008 04000000 0844               .........D      
1676 EOF
1677                 # If the assembler didn't choke, and we can objdump,
1678                 # and we got the correct data, then succeed.
1679                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
1680                    && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
1681                       | tail -3 > conftest.got \
1682                    && { cmp conftest.lit conftest.got > /dev/null 2>&1 \
1683                         || cmp conftest.big conftest.got > /dev/null 2>&1; }
1684                 then
1685                         gcc_cv_as_eh_frame="yes"
1686                 else
1687                         gcc_cv_as_eh_frame="bad"
1688                         if $gcc_cv_as -o conftest.o --traditional-format /dev/null; then
1689                                 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
1690         [Define if your assembler mis-optimizes .eh_frame data.])
1691                         fi
1692                 fi
1693         fi
1694         rm -f conftest.*
1695 fi
1696 AC_MSG_RESULT($gcc_cv_as_eh_frame)
1697
1698 AC_MSG_CHECKING(assembler section merging support)
1699 gcc_cv_as_shf_merge=no
1700 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1701   if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 12 -o "$gcc_cv_gas_major_version" -gt 2 && grep 'obj_format = elf' ../gas/Makefile > /dev/null; then
1702     gcc_cv_as_shf_merge=yes
1703   fi
1704 elif test x$gcc_cv_as != x; then
1705         # Check if we support SHF_MERGE sections
1706         echo '.section .rodata.str, "aMS", @progbits, 1' > conftest.s
1707         if $gcc_cv_as --fatal-warnings -o conftest.o conftest.s > /dev/null 2>&1; then
1708                 gcc_cv_as_shf_merge=yes
1709         fi
1710         rm -f conftest.s conftest.o
1711 fi
1712 if test x"$gcc_cv_as_shf_merge" = xyes; then
1713         AC_DEFINE(HAVE_GAS_SHF_MERGE, 1,
1714 [Define if your assembler supports marking sections with SHF_MERGE flag.])
1715 fi
1716 AC_MSG_RESULT($gcc_cv_as_shf_merge)
1717
1718 case "$target" in
1719   # All TARGET_ABI_OSF targets.
1720   alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
1721     AC_CACHE_CHECK([assembler supports explicit relocations],
1722         gcc_cv_as_explicit_relocs, [
1723         gcc_cv_as_explicit_relocs=unknown
1724         if test x$gcc_cv_gas_major_version != x \
1725                 -a x$gcc_cv_gas_minor_version != x
1726         then
1727            if test "$gcc_cv_gas_major_version" -eq 2 \
1728                    -a "$gcc_cv_gas_minor_version" -ge 12 \
1729                    -o "$gcc_cv_gas_major_version" -gt 2; then
1730               gcc_cv_as_explicit_relocs=yes
1731            fi
1732         elif test x$gcc_cv_as != x; then
1733             cat > conftest.s << 'EOF'
1734         .set nomacro
1735         .text
1736         extbl   $3, $2, $3      !lituse_bytoff!1
1737         ldq     $2, a($29)      !literal!1
1738         ldq     $4, b($29)      !literal!2
1739         ldq_u   $3, 0($2)       !lituse_base!1
1740         ldq     $27, f($29)     !literal!5
1741         jsr     $26, ($27), f   !lituse_jsr!5
1742         ldah    $29, 0($26)     !gpdisp!3
1743         lda     $0, c($29)      !gprel
1744         ldah    $1, d($29)      !gprelhigh
1745         lda     $1, d($1)       !gprellow
1746         lda     $29, 0($29)     !gpdisp!3
1747 EOF
1748             if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1749                 gcc_cv_as_explicit_relocs=yes
1750             else
1751                 gcc_cv_as_explicit_relocs=no
1752             fi
1753             rm -f conftest.s conftest.o
1754         fi
1755     ])
1756     if test "x$gcc_cv_as_explicit_relocs" = xyes; then
1757         AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
1758                 [Define if your assembler supports explicit relocations.])
1759     fi
1760     ;;
1761   sparc*-*-*)
1762     AC_CACHE_CHECK([assembler .register pseudo-op support],
1763         gcc_cv_as_register_pseudo_op, [
1764         gcc_cv_as_register_pseudo_op=unknown
1765         if test x$gcc_cv_as != x; then
1766             # Check if we have .register
1767             echo ".register %g2, #scratch" > conftest.s
1768             if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1769                 gcc_cv_as_register_pseudo_op=yes
1770             else
1771                 gcc_cv_as_register_pseudo_op=no
1772             fi
1773             rm -f conftest.s conftest.o
1774         fi
1775     ])
1776     if test "x$gcc_cv_as_register_pseudo_op" = xyes; then
1777         AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
1778                 [Define if your assembler supports .register.])
1779     fi
1780
1781     AC_CACHE_CHECK([assembler supports -relax],
1782         gcc_cv_as_relax_opt, [
1783         gcc_cv_as_relax_opt=unknown
1784         if test x$gcc_cv_as != x; then
1785             # Check if gas supports -relax
1786             echo ".text" > conftest.s
1787             if $gcc_cv_as -relax -o conftest.o conftest.s > /dev/null 2>&1; then
1788                 gcc_cv_as_relax_opt=yes
1789             else
1790                 gcc_cv_as_relax_opt=no
1791             fi
1792             rm -f conftest.s conftest.o
1793         fi
1794     ])
1795     if test "x$gcc_cv_as_relax_opt" = xyes; then
1796         AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
1797                 [Define if your assembler supports -relax option.])
1798     fi
1799
1800     AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs],
1801         gcc_cv_as_sparc_ua_pcrel, [
1802         gcc_cv_as_sparc_ua_pcrel=unknown
1803         if test x$gcc_cv_as != x -a x$gcc_cv_ld != x; then
1804             gcc_cv_as_sparc_ua_pcrel=no
1805             echo ".text; foo: nop; .data; .align 4; .byte 0; .uaword %r_disp32(foo)" > conftest.s
1806             if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
1807                && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
1808                 gcc_cv_as_sparc_ua_pcrel=yes
1809             fi
1810             rm -f conftest.s conftest.o conftest
1811         fi
1812     ])
1813     if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
1814         AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
1815                 [Define if your assembler and linker support unaligned PC relative relocs.])
1816     fi
1817
1818     AC_CACHE_CHECK([assembler and linker support unaligned pc related relocs against hidden symbols],
1819         gcc_cv_as_sparc_ua_pcrel_hidden, [
1820         if test "x$gcc_cv_as_sparc_ua_pcrel" = xyes; then
1821             gcc_cv_as_sparc_ua_pcrel_hidden=unknown
1822             if test x$gcc_cv_objdump != x; then
1823                 gcc_cv_as_sparc_ua_pcrel_hidden=no
1824                 echo ".data; .align 4; .byte 0x31; .uaword %r_disp32(foo)" > conftest.s
1825                 echo ".byte 0x32, 0x33, 0x34; .global foo; .hidden foo" >> conftest.s
1826                 echo "foo: .skip 4" >> conftest.s
1827                 if $gcc_cv_as -K PIC -o conftest.o conftest.s > /dev/null 2>&1 \
1828                    && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
1829                    && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
1830                       | grep ' 31000000 07323334' > /dev/null 2>&1; then
1831                     if $gcc_cv_objdump -R conftest 2> /dev/null \
1832                        | grep 'DISP32' > /dev/null 2>&1; then
1833                         :
1834                     else
1835                         gcc_cv_as_sparc_ua_pcrel_hidden=yes
1836                     fi
1837                 fi
1838             fi
1839             rm -f conftest.s conftest.o conftest
1840         else
1841             gcc_cv_as_sparc_ua_pcrel_hidden="$gcc_cv_as_sparc_ua_pcrel"
1842         fi
1843     ])
1844     if test "x$gcc_cv_as_sparc_ua_pcrel_hidden" = xyes; then
1845         AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
1846                 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])
1847     fi
1848
1849     AC_CACHE_CHECK([for assembler offsetable %lo() support],
1850         gcc_cv_as_offsetable_lo10, [
1851         gcc_cv_as_offsetable_lo10=unknown
1852         if test "x$gcc_cv_as" != x; then
1853             # Check if assembler has offsetable %lo()
1854             echo "or %g1, %lo(ab) + 12, %g1" > conftest.s
1855             echo "or %g1, %lo(ab + 12), %g1" > conftest1.s
1856             if $gcc_cv_as -xarch=v9 -o conftest.o conftest.s \
1857                     > /dev/null 2>&1 &&
1858                $gcc_cv_as -xarch=v9 -o conftest1.o conftest1.s \
1859                     > /dev/null 2>&1; then
1860                 if cmp conftest.o conftest1.o > /dev/null 2>&1; then
1861                     gcc_cv_as_offsetable_lo10=no
1862                 else
1863                     gcc_cv_as_offsetable_lo10=yes
1864                 fi
1865             else
1866                 gcc_cv_as_offsetable_lo10=no
1867             fi
1868             rm -f conftest.s conftest.o conftest1.s conftest1.o
1869         fi
1870     ])
1871     if test "x$gcc_cv_as_offsetable_lo10" = xyes; then
1872         AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
1873             [Define if your assembler supports offsetable %lo().])
1874     fi
1875
1876     ;;
1877
1878 changequote(,)dnl
1879   i[34567]86-*-* | x86_64-*-*)
1880 changequote([,])dnl
1881     AC_MSG_CHECKING(assembler instructions)
1882     gcc_cv_as_instructions=
1883     if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x; then
1884       if test "$gcc_cv_gas_major_version" -eq 2 -a "$gcc_cv_gas_minor_version" -ge 9 -o "$gcc_cv_gas_major_version" -gt 2; then
1885         gcc_cv_as_instructions="filds fists"
1886       fi
1887     elif test x$gcc_cv_as != x; then
1888         set "filds fists" "filds mem; fists mem"
1889         while test $# -gt 0
1890         do
1891                 echo "$2" > conftest.s
1892                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1893                         gcc_cv_as_instructions=${gcc_cv_as_instructions}$1" "
1894                 fi
1895                 shift 2
1896         done
1897         rm -f conftest.s conftest.o
1898     fi
1899     if test x"$gcc_cv_as_instructions" != x; then
1900         AC_DEFINE_UNQUOTED(HAVE_GAS_`echo "$gcc_cv_as_instructions" | sed -e 's/ $//' | tr '[a-z ]' '[A-Z_]'`)
1901     fi
1902     AC_MSG_RESULT($gcc_cv_as_instructions)
1903
1904     AC_MSG_CHECKING(assembler GOTOFF in data directives)
1905     gcc_cv_as_gotoff_in_data=no
1906     if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x
1907     then
1908       if test "$gcc_cv_gas_major_version" -eq 2 \
1909          -a "$gcc_cv_gas_minor_version" -ge 11 \
1910          -o "$gcc_cv_gas_major_version" -gt 2; then
1911         gcc_cv_as_gotoff_in_data=yes
1912       fi
1913     elif test x$gcc_cv_as != x; then
1914         cat > conftest.s <<EOF
1915         .text
1916 .L0:
1917         nop
1918         .data
1919         .long .L0@GOTOFF
1920 EOF
1921         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
1922           gcc_cv_as_gotoff_in_data=yes
1923         fi
1924     fi
1925     AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
1926       [`if test $gcc_cv_as_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
1927       [Define true if the assembler supports '.long foo@GOTOFF'.])
1928     AC_MSG_RESULT($gcc_cv_as_gotoff_in_data)
1929     ;;
1930 esac
1931
1932 AC_MSG_CHECKING(assembler dwarf2 debug_line support)
1933 gcc_cv_as_dwarf2_debug_line=no
1934 # ??? Not all targets support dwarf2 debug_line, even within a version
1935 # of gas.  Moreover, we need to emit a valid instruction to trigger any
1936 # info to the output file.  So, as supported targets are added to gas 2.11,
1937 # add some instruction here to (also) show we expect this might work.
1938 # ??? Once 2.11 is released, probably need to add first known working
1939 # version to the per-target configury.
1940 case "$target" in
1941   i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* | x86_64*-*-*)
1942     insn="nop"
1943     ;;
1944   ia64*-*-*)
1945     insn="nop 0"
1946     ;;
1947   esac
1948 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
1949 then
1950   if test "$gcc_cv_gas_major_version" -eq 2 \
1951         -a "$gcc_cv_gas_minor_version" -ge 11 \
1952         -o "$gcc_cv_gas_major_version" -gt 2 \
1953      && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1954      && test x"$insn" != x ; then
1955     gcc_cv_as_dwarf2_debug_line="yes"
1956   fi
1957 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
1958         echo '  .file 1 "conftest.s"' > conftest.s
1959         echo '  .loc 1 3 0' >> conftest.s
1960         echo "  $insn" >> conftest.s
1961         # ??? This fails with non-gnu grep.
1962         if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
1963            && grep debug_line conftest.o > /dev/null 2>&1 ; then
1964                 # The .debug_line file table must be in the exact order that
1965                 # we specified the files, since these indices are also used
1966                 # by DW_AT_decl_file.  Approximate this test by testing if
1967                 # the assembler bitches if the same index is assigned twice.
1968                 echo '  .file 1 "foo.s"' > conftest.s
1969                 echo '  .file 1 "bar.s"' >> conftest.s
1970                 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1
1971                 then
1972                   gcc_cv_as_dwarf2_debug_line="no"
1973                 else
1974                   gcc_cv_as_dwarf2_debug_line="yes"
1975                 fi
1976         fi
1977         rm -f conftest.s conftest.o conftest.nm1 conftest.nm2
1978 fi
1979 if test x"$gcc_cv_as_dwarf2_debug_line" = xyes; then
1980         AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
1981 [Define if your assembler supports dwarf2 .file/.loc directives,
1982    and preserves file table indices exactly as given.])
1983 fi
1984 AC_MSG_RESULT($gcc_cv_as_dwarf2_debug_line)
1985
1986 AC_MSG_CHECKING(assembler --gdwarf2 support)
1987 gcc_cv_as_gdwarf2_flag=no
1988 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
1989 then
1990   if test "$gcc_cv_gas_major_version" -eq 2 \
1991         -a "$gcc_cv_gas_minor_version" -ge 11 \
1992         -o "$gcc_cv_gas_major_version" -gt 2 \
1993      && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1994      && test x"$insn" != x ; then
1995     gcc_cv_as_gdwarf2_debug_flag="yes"
1996   fi
1997 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
1998         echo '' > conftest.s
1999         # ??? This fails with non-gnu grep.
2000         if $gcc_cv_as --gdwarf2 -o conftest.o conftest.s > /dev/null 2>&1
2001           then
2002           gcc_cv_as_gdwarf2_flag="yes"
2003         fi
2004         rm -f conftest.s conftest.o
2005 fi
2006 if test x"$gcc_cv_as_gdwarf2_flag" = xyes; then
2007         AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
2008 [Define if your assembler supports the --gdwarf2 option.])
2009 fi
2010 AC_MSG_RESULT($gcc_cv_as_gdwarf2_flag)
2011
2012 AC_MSG_CHECKING(assembler --gstabs support)
2013 gcc_cv_as_gstabs_flag=no
2014 if test x$gcc_cv_gas_major_version != x -a x$gcc_cv_gas_minor_version != x;
2015 then
2016   if test "$gcc_cv_gas_major_version" -eq 2 \
2017         -a "$gcc_cv_gas_minor_version" -ge 11 \
2018         -o "$gcc_cv_gas_major_version" -gt 2 \
2019      && grep 'obj_format = elf' ../gas/Makefile > /dev/null \
2020      && test x"$insn" != x ; then
2021     gcc_cv_as_gstabs_debug_flag="yes"
2022   fi
2023 elif test x$gcc_cv_as != x -a x"$insn" != x ; then
2024         echo '' > conftest.s
2025         # ??? This fails with non-gnu grep.
2026         if $gcc_cv_as --gstabs -o conftest.o conftest.s > /dev/null 2>&1 ; then
2027           gcc_cv_as_gstabs_flag="yes"
2028         fi
2029         rm -f conftest.s conftest.o
2030 fi
2031 if test x"$gcc_cv_as_gstabs_flag" = xyes; then
2032         AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
2033 [Define if your assembler supports the --gstabs option.])
2034 fi
2035 AC_MSG_RESULT($gcc_cv_as_gstabs_flag)
2036
2037 AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
2038 gcc_cv_ld_eh_frame_hdr=no
2039 if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
2040   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 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
2041     gcc_cv_ld_eh_frame_hdr=yes
2042   fi
2043 elif test x$gcc_cv_ld != x; then
2044         # Check if linker supports --eh-frame-hdr option
2045         if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
2046                 gcc_cv_ld_eh_frame_hdr=yes
2047         fi
2048 fi
2049 AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
2050 if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
2051   AC_MSG_CHECKING(whether linker eh_frame optimizations work properly)
2052   gcc_cv_ld_eh_frame_hdr_works=no
2053   if test x$gcc_cv_gld_major_version != x -a x$gcc_cv_gld_minor_version != x; then
2054     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 && grep 'EMUL = elf' ../ld/Makefile > /dev/null; then
2055       gcc_cv_ld_eh_frame_hdr_works=yes
2056     fi
2057   elif test x$gcc_cv_ld != x; then
2058     for gcc_WS in 4 8; do
2059       cat > conftest.s <<EOF
2060         .text
2061 .LFB1:  .skip   64
2062 .LFE1:
2063 .LFB2:  .skip   64
2064 .LFE2:
2065 .LFB3:  .skip   64
2066 .LFE3:
2067         .section .eh_frame,"aw",@progbits
2068 .Lframe1:
2069         .4byte  .LECIE1-.LSCIE1
2070 .LSCIE1:
2071         .4byte  0x0
2072         .byte   0x1
2073         .ascii "zR\0"
2074         .uleb128 0x1
2075         .sleb128 -4
2076         .byte   0x8
2077         .uleb128 0x1
2078         .byte   0x50
2079         .byte   0xc
2080         .uleb128 0x4
2081         .uleb128 0x4
2082         .byte   0x88
2083         .uleb128 0x1
2084         .balign ${gcc_WS}
2085 .LECIE1:
2086 .LSFDE1:
2087         .4byte  .LEFDE1-.LASFDE1
2088 .LASFDE1:
2089         .4byte  .LASFDE1-.Lframe1
2090         .${gcc_WS}byte  .LFB1
2091         .${gcc_WS}byte  .LFE1-.LFB1
2092         .uleb128 0x0
2093         .balign ${gcc_WS}
2094 .LEFDE1:
2095 .LSFDE2:
2096         .4byte  .LEFDE2-.LASFDE2
2097 .LASFDE2:
2098         .4byte  .LASFDE2-.Lframe1
2099         .${gcc_WS}byte  .LFB2
2100         .${gcc_WS}byte  .LFE2-.LFB2
2101         .uleb128 0x0
2102         .balign ${gcc_WS}
2103 .LEFDE2:
2104 .LSFDE3:
2105         .4byte  .LEFDE3-.LASFDE3
2106 .LASFDE3:
2107         .4byte  .LASFDE3-.Lframe1
2108         .${gcc_WS}byte  .LFB3
2109         .${gcc_WS}byte  .LFE3-.LFB3
2110         .uleb128 0x0
2111         .balign ${gcc_WS}
2112 .LEFDE3:
2113         .4byte  0
2114 EOF
2115       if ($gcc_cv_as -o conftest.o conftest.s; exit $?) 1>&AC_FD_CC 2>&1; then
2116         if ($gcc_cv_ld --eh-frame-hdr -shared -o conftest.so conftest.o; exit $?) 1>&AC_FD_CC 2>&1; then
2117 changequote(,)dnl
2118           if $gcc_cv_objdump -h conftest.so 2>&AC_FD_CC \
2119              | grep 'eh_frame_hdr[      ]*0*[01][048cC][        ]' 1>&AC_FD_CC 2>&1; then
2120             gcc_cv_ld_eh_frame_hdr_works=yes; break
2121           else
2122             $gcc_cv_objdump -h conftest.so 2>/dev/null | grep eh_frame_hdr 1>&AC_FD_CC 2>&1
2123           fi
2124 changequote([,])dnl
2125         fi
2126       fi
2127       rm -f conftest.*
2128     done
2129   fi
2130   AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr_works)
2131 fi
2132 if test x"$gcc_cv_ld_eh_frame_hdr" = xyes \
2133    && test x"$gcc_cv_ld_eh_frame_hdr_works" = xyes; then
2134         AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
2135 [Define if your linker supports --eh-frame-hdr option.])
2136 fi
2137
2138 if test "$prefix" != "/usr" && test "$prefix" != "/usr/local" ; then
2139   AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include")
2140 fi
2141
2142 # Figure out what language subdirectories are present.
2143 # Look if the user specified --enable-languages="..."; if not, use
2144 # the environment variable $LANGUAGES if defined. $LANGUAGES might
2145 # go away some day.
2146 # NB:  embedded tabs in this IF block -- do not untabify
2147 if test x"${enable_languages+set}" != xset; then
2148         if test x"${LANGUAGES+set}" = xset; then
2149                 enable_languages="${LANGUAGES}"
2150                 AC_MSG_WARN([setting LANGUAGES is deprecated, use --enable-languages instead])
2151
2152         else
2153                 enable_languages=all
2154         fi
2155 else
2156         if test x"${enable_languages}" = x ||
2157            test x"${enable_languages}" = xyes;
2158         then
2159                 AC_MSG_ERROR([--enable-languages needs at least one language argument])
2160         fi
2161 fi
2162 enable_languages=`echo "${enable_languages}" | sed -e 's/[[     ,]][[   ,]]*/,/g' -e 's/,$//'`
2163
2164 # First scan to see if an enabled language requires some other language.
2165 # We assume that a given config-lang.in will list all the language
2166 # front ends it requires, even if some are required indirectly.
2167 for lang in ${srcdir}/*/config-lang.in ..
2168 do
2169    case $lang in
2170     ..)
2171        ;;
2172     # The odd quoting in the next line works around
2173     # an apparent bug in bash 1.12 on linux.
2174 changequote(,)dnl
2175     ${srcdir}/[*]/config-lang.in)
2176        ;;
2177     *)
2178        lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^      ]*\).*$,\1,p' $lang`
2179        this_lang_requires=`sed -n -e 's,^lang_requires=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^lang_requires=\([^    ]*\).*$,\1,p' $lang`
2180        for other in $this_lang_requires
2181        do
2182           case ,${enable_languages}, in
2183            *,$other,*)
2184               ;;
2185            *,all,*)
2186               ;;
2187            *,$lang_alias,*)
2188               enable_languages="$enable_languages,$other"
2189               ;;
2190           esac
2191        done
2192        ;;
2193 changequote([,])dnl
2194    esac
2195 done
2196
2197 subdirs=
2198 for lang in ${srcdir}/*/config-lang.in ..
2199 do
2200         case $lang in
2201         ..) ;;
2202         # The odd quoting in the next line works around
2203         # an apparent bug in bash 1.12 on linux.
2204 changequote(,)dnl
2205         ${srcdir}/[*]/config-lang.in) ;;
2206         *)
2207           lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^   ]*\).*$,\1,p' $lang`
2208           this_lang_libs=`sed -n -e 's,^target_libs=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^target_libs=\([^         ]*\).*$,\1,p' $lang`
2209           build_by_default=`sed -n -e 's,^build_by_default=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^build_by_default=\([^     ]*\).*$,\1,p' $lang`
2210           if test "x$lang_alias" = x
2211           then
2212                 echo "$lang doesn't set \$language." 1>&2
2213                 exit 1
2214           fi
2215           case ${build_by_default},${enable_languages}, in
2216           *,$lang_alias,*) add_this_lang=yes ;;
2217           no,*) add_this_lang=no ;;
2218           *,all,*) add_this_lang=yes ;;
2219           *) add_this_lang=no ;;
2220           esac
2221           if test x"${add_this_lang}" = xyes; then
2222                 case $lang in
2223                     ${srcdir}/ada/config-lang.in)
2224                         if test x$have_gnat = xyes ; then
2225                                 subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2226                         fi
2227                         ;;
2228                     *)
2229                         subdirs="$subdirs `echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
2230                         ;;
2231                 esac
2232           fi
2233           ;;
2234 changequote([,])dnl
2235         esac
2236 done
2237
2238 # Make gthr-default.h if we have a thread file.
2239 gthread_flags=
2240 if test $thread_file != single; then
2241     rm -f gthr-default.h
2242     echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
2243     gthread_flags=-DHAVE_GTHR_DEFAULT
2244 fi
2245 AC_SUBST(gthread_flags)
2246
2247 # Find out what GC implementation we want, or may, use.
2248 AC_ARG_WITH(gc,
2249 [  --with-gc={simple,page} choose the garbage collection mechanism to use
2250                           with the compiler],
2251 [case "$withval" in
2252   simple | page)
2253     GGC=ggc-$withval
2254     ;;
2255   *)
2256     AC_MSG_ERROR([$withval is an invalid option to --with-gc])
2257     ;;
2258 esac],
2259 [GGC=ggc-page])
2260 AC_SUBST(GGC)
2261 echo "Using $GGC for garbage collection."
2262
2263 # Use the system's zlib library.
2264 zlibdir=-L../zlib
2265 zlibinc="-I\$(srcdir)/../zlib"
2266 AC_ARG_WITH(system-zlib,
2267 [  --with-system-zlib      use installed libz],
2268 zlibdir=
2269 zlibinc=
2270 )
2271 AC_SUBST(zlibdir)
2272 AC_SUBST(zlibinc)
2273
2274 dnl Very limited version of automake's enable-maintainer-mode
2275
2276 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
2277   dnl maintainer-mode is disabled by default
2278   AC_ARG_ENABLE(maintainer-mode,
2279 [  --enable-maintainer-mode
2280                           enable make rules and dependencies not useful
2281                           (and sometimes confusing) to the casual installer],
2282       maintainer_mode=$enableval,
2283       maintainer_mode=no)
2284
2285 AC_MSG_RESULT($maintainer_mode)
2286
2287 if test "$maintainer_mode" = "yes"; then
2288   MAINT=''
2289 else
2290   MAINT='#'
2291 fi
2292 AC_SUBST(MAINT)dnl
2293
2294 # With Setjmp/Longjmp based exception handling.
2295 AC_ARG_ENABLE(sjlj-exceptions,
2296 [  --enable-sjlj-exceptions
2297                           arrange to use setjmp/longjmp exception handling],
2298 [sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
2299 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
2300   [Define 0/1 to force the choice for exception handling model.])])
2301
2302 # Make empty files to contain the specs and options for each language.
2303 # Then add #include lines to for a compiler that has specs and/or options.
2304
2305 lang_specs_files=
2306 lang_options_files=
2307 lang_tree_files=
2308 for subdir in . $subdirs
2309 do
2310         if test -f $srcdir/$subdir/lang-specs.h; then
2311             lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
2312         fi
2313         if test -f $srcdir/$subdir/lang-options.h; then
2314             lang_options_files="$lang_options_files $srcdir/$subdir/lang-options.h"
2315         fi
2316         if test -f $srcdir/$subdir/$subdir-tree.def; then
2317             lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
2318         fi
2319 done
2320
2321 # These (without "all_") are set in each config-lang.in.
2322 # `language' must be a single word so is spelled singularly.
2323 all_languages=
2324 all_boot_languages=
2325 all_compilers=
2326 all_stagestuff=
2327 all_outputs='Makefile intl/Makefile fixinc/Makefile gccbug mklibgcc'
2328 # List of language makefile fragments.
2329 all_lang_makefiles=
2330
2331 # Add the language fragments.
2332 # Languages are added via two mechanisms.  Some information must be
2333 # recorded in makefile variables, these are defined in config-lang.in.
2334 # We accumulate them and plug them into the main Makefile.
2335 # The other mechanism is a set of hooks for each of the main targets
2336 # like `clean', `install', etc.
2337
2338 language_fragments="Make-lang"
2339 language_hooks="Make-hooks"
2340
2341 for s in .. $subdirs
2342 do
2343         if test $s != ".."
2344         then
2345                 language=
2346                 boot_language=
2347                 compilers=
2348                 stagestuff=
2349                 outputs=
2350                 . ${srcdir}/$s/config-lang.in
2351                 if test "x$language" = x
2352                 then
2353                         echo "${srcdir}/$s/config-lang.in doesn't set \$language." 1>&2
2354                         exit 1
2355                 fi
2356                 all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Make-lang.in"
2357                 if test -f ${srcdir}/$s/Makefile.in
2358                 then all_lang_makefiles="$all_lang_makefiles ${srcdir}/$s/Makefile.in"
2359                 fi
2360                 all_languages="$all_languages $language"
2361                 if test "x$boot_language" = xyes
2362                 then
2363                         all_boot_languages="$all_boot_languages $language"
2364                 fi
2365                 all_compilers="$all_compilers $compilers"
2366                 all_stagestuff="$all_stagestuff $stagestuff"
2367                 all_outputs="$all_outputs $outputs"
2368         fi
2369 done
2370
2371 check_languages=
2372 for language in .. $all_languages
2373 do
2374         if test $language != ".."
2375         then
2376                 check_languages="$check_languages check-$language"
2377         fi
2378 done
2379
2380 # Since we can't use `::' targets, we link each language in
2381 # with a set of hooks, reached indirectly via lang.${target}.
2382
2383 rm -f Make-hooks
2384 touch Make-hooks
2385 target_list="all.build all.cross start.encap rest.encap \
2386         info dvi generated-manpages \
2387         install-normal install-common install-info install-man \
2388         uninstall \
2389         mostlyclean clean distclean extraclean maintainer-clean \
2390         stage1 stage2 stage3 stage4"
2391 for t in $target_list
2392 do
2393         x=
2394         for lang in .. $all_languages
2395         do
2396                 if test $lang != ".."; then
2397                         x="$x $lang.$t"
2398                 fi
2399         done
2400         echo "lang.$t: $x" >> Make-hooks
2401 done
2402
2403 # Create .gdbinit.
2404
2405 echo "dir ." > .gdbinit
2406 echo "dir ${srcdir}" >> .gdbinit
2407 if test x$gdb_needs_out_file_path = xyes
2408 then
2409         echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
2410 fi
2411 if test "x$subdirs" != x; then
2412         for s in $subdirs
2413         do
2414                 echo "dir ${srcdir}/$s" >> .gdbinit
2415         done
2416 fi
2417 echo "source ${srcdir}/gdbinit.in" >> .gdbinit
2418
2419 # Define variables host_canonical and build_canonical
2420 # because some Cygnus local changes in the Makefile depend on them.
2421 build_canonical=${build}
2422 host_canonical=${host}
2423 target_subdir=
2424 if test "${host}" != "${target}" ; then
2425     target_subdir=${target_alias}/
2426 fi
2427 AC_SUBST(build_canonical)
2428 AC_SUBST(host_canonical)
2429 AC_SUBST(target_subdir)
2430         
2431 # If $(exec_prefix) exists and is not the same as $(prefix), then compute an
2432 # absolute path for gcc_tooldir based on inserting the number of up-directory
2433 # movements required to get from $(exec_prefix) to $(prefix) into the basic
2434 # $(libsubdir)/@(unlibsubdir) based path.
2435 # Don't set gcc_tooldir to tooldir since that's only passed in by the toplevel
2436 # make and thus we'd get different behavior depending on where we built the
2437 # sources.
2438 if test x$exec_prefix = xNONE -o x$exec_prefix = x$prefix; then
2439     gcc_tooldir='$(libsubdir)/$(unlibsubdir)/../$(target_alias)'
2440 else
2441 changequote(<<, >>)dnl
2442 # An explanation of the sed strings:
2443 #  -e 's|^\$(prefix)||'   matches and eliminates 'prefix' from 'exec_prefix'
2444 #  -e 's|/$||'            match a trailing forward slash and eliminates it
2445 #  -e 's|^[^/]|/|'        forces the string to start with a forward slash (*)
2446 #  -e 's|/[^/]*|../|g'    replaces each occurrence of /<directory> with ../
2447 #
2448 # (*) Note this pattern overwrites the first character of the string
2449 # with a forward slash if one is not already present.  This is not a
2450 # problem because the exact names of the sub-directories concerned is
2451 # unimportant, just the number of them matters.
2452 #
2453 # The practical upshot of these patterns is like this:
2454 #
2455 #  prefix     exec_prefix        result
2456 #  ------     -----------        ------
2457 #   /foo        /foo/bar          ../
2458 #   /foo/       /foo/bar          ../
2459 #   /foo        /foo/bar/         ../
2460 #   /foo/       /foo/bar/         ../
2461 #   /foo        /foo/bar/ugg      ../../
2462 #
2463     dollar='$$'
2464     gcc_tooldir="\$(libsubdir)/\$(unlibsubdir)/\`echo \$(exec_prefix) | sed -e 's|^\$(prefix)||' -e 's|/\$(dollar)||' -e 's|^[^/]|/|' -e 's|/[^/]*|../|g'\`\$(target_alias)"
2465 changequote([, ])dnl
2466 fi
2467 AC_SUBST(gcc_tooldir)
2468 AC_SUBST(dollar)
2469
2470 # Find a directory in which to install a shared libgcc.
2471
2472 AC_ARG_ENABLE(version-specific-runtime-libs,
2473 [  --enable-version-specific-runtime-libs
2474                           specify that runtime libraries should be
2475                           installed in a compiler-specific directory])
2476
2477 AC_ARG_WITH(slibdir,
2478 [  --with-slibdir=DIR      shared libraries in DIR [LIBDIR]],
2479 slibdir="$with_slibdir",
2480 if test "${enable_version_specific_runtime_libs+set}" = set; then
2481   slibdir='$(libsubdir)'
2482 elif test "$host" != "$target"; then
2483   slibdir='$(build_tooldir)/lib'
2484 else
2485   slibdir='$(libdir)'
2486 fi)
2487 AC_SUBST(slibdir)
2488
2489 # Nothing to do for FLOAT_H, float_format already handled.
2490 objdir=`pwd`
2491 AC_SUBST(objdir)
2492
2493 # Process the language and host/target makefile fragments.
2494 ${CONFIG_SHELL-/bin/sh} $srcdir/configure.frag $srcdir "$subdirs" "$dep_host_xmake_file" "$dep_tmake_file"
2495
2496 # Substitute configuration variables
2497 AC_SUBST(subdirs)
2498 AC_SUBST(all_boot_languages)
2499 AC_SUBST(all_compilers)
2500 AC_SUBST(all_lang_makefiles)
2501 AC_SUBST(all_languages)
2502 AC_SUBST(all_stagestuff)
2503 AC_SUBST(build_exeext)
2504 AC_SUBST(build_install_headers_dir)
2505 AC_SUBST(build_xm_file_list)
2506 AC_SUBST(build_xm_file)
2507 AC_SUBST(build_xm_defines)
2508 AC_SUBST(check_languages)
2509 AC_SUBST(cc_set_by_configure)
2510 AC_SUBST(quoted_cc_set_by_configure)
2511 AC_SUBST(cpp_install_dir)
2512 AC_SUBST(dep_host_xmake_file)
2513 AC_SUBST(dep_tmake_file)
2514 AC_SUBST(extra_headers_list)
2515 AC_SUBST(extra_objs)
2516 AC_SUBST(extra_parts)
2517 AC_SUBST(extra_passes)
2518 AC_SUBST(extra_programs)
2519 AC_SUBST(float_h_file)
2520 AC_SUBST(gcc_config_arguments)
2521 AC_SUBST(gcc_gxx_include_dir)
2522 AC_SUBST(libstdcxx_incdir)
2523 AC_SUBST(gcc_version)
2524 AC_SUBST(gcc_version_full)
2525 AC_SUBST(gcc_version_trigger)
2526 AC_SUBST(host_exeext)
2527 AC_SUBST(host_extra_gcc_objs)
2528 AC_SUBST(host_xm_file_list)
2529 AC_SUBST(host_xm_file)
2530 AC_SUBST(host_xm_defines)
2531 AC_SUBST(install)
2532 AC_SUBST(lang_options_files)
2533 AC_SUBST(lang_specs_files)
2534 AC_SUBST(lang_tree_files)
2535 AC_SUBST(local_prefix)
2536 AC_SUBST(md_file)
2537 AC_SUBST(objc_boehm_gc)
2538 AC_SUBST(out_file)
2539 AC_SUBST(out_object_file)
2540 AC_SUBST(stage_prefix_set_by_configure)
2541 AC_SUBST(quoted_stage_prefix_set_by_configure)
2542 AC_SUBST(symbolic_link)
2543 AC_SUBST(thread_file)
2544 AC_SUBST(tm_file_list)
2545 AC_SUBST(tm_file)
2546 AC_SUBST(tm_p_file_list)
2547 AC_SUBST(tm_p_file)
2548 AC_SUBST(xm_file)
2549 AC_SUBST(xm_defines)
2550 AC_SUBST(target_alias)
2551 AC_SUBST(c_target_objs)
2552 AC_SUBST(cxx_target_objs)
2553 AC_SUBST(target_cpu_default)
2554
2555 AC_SUBST_FILE(target_overrides)
2556 AC_SUBST_FILE(host_overrides)
2557 AC_SUBST_FILE(language_fragments)
2558 AC_SUBST_FILE(language_hooks)
2559
2560 # Echo that links are built
2561 if test x$host = x$target
2562 then
2563         str1="native "
2564 else
2565         str1="cross-"
2566         str2=" from $host"
2567 fi
2568
2569 if test x$host != x$build
2570 then
2571         str3=" on a $build system"
2572 fi
2573
2574 if test "x$str2" != x || test "x$str3" != x
2575 then
2576         str4=
2577 fi
2578
2579 echo "Links are now set up to build a ${str1}compiler for ${target}$str4" 1>&2
2580
2581 if test "x$str2" != x || test "x$str3" != x
2582 then
2583         echo " ${str2}${str3}." 1>&2
2584 fi
2585
2586 # Truncate the target if necessary
2587 if test x$host_truncate_target != x; then
2588         target=`echo $target | sed -e 's/\(..............\).*/\1/'`
2589 fi
2590
2591 # Configure the subdirectories
2592 # AC_CONFIG_SUBDIRS($subdirs)
2593
2594 # Create the Makefile
2595 # and configure language subdirectories
2596 AC_OUTPUT($all_outputs,
2597 [
2598 case x$CONFIG_HEADERS in
2599 xauto-host.h:config.in)
2600 echo > cstamp-h ;;
2601 esac
2602 # If the host supports symlinks, point stage[1234] at ../stage[1234] so
2603 # bootstrapping and the installation procedure can still use
2604 # CC="stage1/xgcc -Bstage1/".  If the host doesn't support symlinks,
2605 # FLAGS_TO_PASS has been modified to solve the problem there.
2606 # This is virtually a duplicate of what happens in configure.lang; we do
2607 # an extra check to make sure this only happens if ln -s can be used.
2608 if test "$symbolic_link" = "ln -s"; then
2609  for d in .. ${subdirs} fixinc ; do
2610    if test $d != ..; then
2611         STARTDIR=`pwd`
2612         cd $d
2613         for t in stage1 stage2 stage3 stage4 include
2614         do
2615                 rm -f $t
2616                 $symbolic_link ../$t $t 2>/dev/null
2617         done
2618         cd $STARTDIR
2619    fi
2620  done
2621 else true ; fi
2622 # Avoid having to add intl to our include paths.
2623 if test -f intl/libintl.h; then
2624   echo creating libintl.h
2625   echo '#include "intl/libintl.h"' >libintl.h
2626 fi
2627 ], 
2628 [subdirs='$subdirs'
2629 symbolic_link='$symbolic_link'
2630 ])