]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/configure.ac
configure.ac: Test for .dtprelword support on MIPS.
[thirdparty/gcc.git] / gcc / configure.ac
1 # configure.ac for GCC
2 # Process this file with autoconf to generate a configuration script.
3
4 # Copyright 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
5 # Free Software Foundation, Inc.
6
7 #This file is part of GCC.
8
9 #GCC is free software; you can redistribute it and/or modify it under
10 #the terms of the GNU General Public License as published by the Free
11 #Software Foundation; either version 2, or (at your option) any later
12 #version.
13
14 #GCC is distributed in the hope that it will be useful, but WITHOUT
15 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
16 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 #for more details.
18
19 #You should have received a copy of the GNU General Public License
20 #along with GCC; see the file COPYING. If not, write to the Free
21 #Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
22 #02110-1301, USA.
23
24 # --------------------------------
25 # Initialization and sanity checks
26 # --------------------------------
27
28 AC_PREREQ(2.59)
29 AC_INIT
30 AC_CONFIG_SRCDIR(tree.c)
31 AC_CONFIG_HEADER(auto-host.h:config.in)
32
33 gcc_version=`cat $srcdir/BASE-VER`
34
35 # Determine the host, build, and target systems
36 AC_CANONICAL_BUILD
37 AC_CANONICAL_HOST
38 AC_CANONICAL_TARGET
39
40 # Determine the noncanonical target name, for directory use.
41 ACX_NONCANONICAL_TARGET
42
43 # Determine the target- and build-specific subdirectories
44 GCC_TOPLEV_SUBDIRS
45
46 # Set program_transform_name
47 AC_ARG_PROGRAM
48
49 # Check for bogus environment variables.
50 # Test if LIBRARY_PATH contains the notation for the current directory
51 # since this would lead to problems installing/building glibc.
52 # LIBRARY_PATH contains the current directory if one of the following
53 # is true:
54 # - one of the terminals (":" and ";") is the first or last sign
55 # - two terminals occur directly after each other
56 # - the path contains an element with a dot in it
57 AC_MSG_CHECKING(LIBRARY_PATH variable)
58 changequote(,)dnl
59 case ${LIBRARY_PATH} in
60 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
61 library_path_setting="contains current directory"
62 ;;
63 *)
64 library_path_setting="ok"
65 ;;
66 esac
67 changequote([,])dnl
68 AC_MSG_RESULT($library_path_setting)
69 if test "$library_path_setting" != "ok"; then
70 AC_MSG_ERROR([
71 *** LIBRARY_PATH shouldn't contain the current directory when
72 *** building gcc. Please change the environment variable
73 *** and run configure again.])
74 fi
75
76 # Test if GCC_EXEC_PREFIX contains the notation for the current directory
77 # since this would lead to problems installing/building glibc.
78 # GCC_EXEC_PREFIX contains the current directory if one of the following
79 # is true:
80 # - one of the terminals (":" and ";") is the first or last sign
81 # - two terminals occur directly after each other
82 # - the path contains an element with a dot in it
83 AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
84 changequote(,)dnl
85 case ${GCC_EXEC_PREFIX} in
86 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
87 gcc_exec_prefix_setting="contains current directory"
88 ;;
89 *)
90 gcc_exec_prefix_setting="ok"
91 ;;
92 esac
93 changequote([,])dnl
94 AC_MSG_RESULT($gcc_exec_prefix_setting)
95 if test "$gcc_exec_prefix_setting" != "ok"; then
96 AC_MSG_ERROR([
97 *** GCC_EXEC_PREFIX shouldn't contain the current directory when
98 *** building gcc. Please change the environment variable
99 *** and run configure again.])
100 fi
101
102 # -----------
103 # Directories
104 # -----------
105
106 # Specify the local prefix
107 local_prefix=
108 AC_ARG_WITH(local-prefix,
109 [ --with-local-prefix=DIR specifies directory to put local include],
110 [case "${withval}" in
111 yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
112 no) ;;
113 *) local_prefix=$with_local_prefix ;;
114 esac])
115
116 # Default local prefix if it is empty
117 if test x$local_prefix = x; then
118 local_prefix=/usr/local
119 fi
120
121 # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
122 # passed in by the toplevel make and thus we'd get different behavior
123 # depending on where we built the sources.
124 gcc_gxx_include_dir=
125 # Specify the g++ header file directory
126 AC_ARG_WITH(gxx-include-dir,
127 [ --with-gxx-include-dir=DIR
128 specifies directory to put g++ header files],
129 [case "${withval}" in
130 yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
131 no) ;;
132 *) gcc_gxx_include_dir=$with_gxx_include_dir ;;
133 esac])
134
135 # This logic must match libstdc++-v3/acinclude.m4:GLIBCXX_EXPORT_INSTALL_INFO.
136 if test x${gcc_gxx_include_dir} = x; then
137 if test x${enable_version_specific_runtime_libs} = xyes; then
138 gcc_gxx_include_dir='${libsubdir}/include/c++'
139 else
140 libstdcxx_incdir='include/c++/$(version)'
141 if test x$host != x$target; then
142 libstdcxx_incdir="$target_alias/$libstdcxx_incdir"
143 fi
144 gcc_gxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libstdcxx_incdir"
145 fi
146 fi
147
148 AC_ARG_WITH(cpp_install_dir,
149 [ --with-cpp-install-dir=DIR
150 install the user visible C preprocessor in DIR
151 (relative to PREFIX) as well as PREFIX/bin],
152 [if test x$withval = xyes; then
153 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
154 elif test x$withval != xno; then
155 cpp_install_dir=$withval
156 fi])
157
158 # We would like to our source tree to be readonly. However when releases or
159 # pre-releases are generated, the flex/bison generated files as well as the
160 # various formats of manuals need to be included along with the rest of the
161 # sources. Therefore we have --enable-generated-files-in-srcdir to do
162 # just that.
163
164 AC_MSG_CHECKING([whether to place generated files in the source directory])
165 dnl generated-files-in-srcdir is disabled by default
166 AC_ARG_ENABLE(generated-files-in-srcdir,
167 [ --enable-generated-files-in-srcdir
168 put copies of generated files in source dir
169 intended for creating source tarballs for users
170 without texinfo bison or flex.],
171 generated_files_in_srcdir=$enableval,
172 generated_files_in_srcdir=no)
173
174 AC_MSG_RESULT($generated_files_in_srcdir)
175
176 if test "$generated_files_in_srcdir" = "yes"; then
177 GENINSRC=''
178 else
179 GENINSRC='#'
180 fi
181 AC_SUBST(GENINSRC)
182
183 # -------------------
184 # Find default linker
185 # -------------------
186
187 # With GNU ld
188 AC_ARG_WITH(gnu-ld,
189 [ --with-gnu-ld arrange to work with GNU ld.],
190 gnu_ld_flag="$with_gnu_ld",
191 gnu_ld_flag=no)
192
193 # With pre-defined ld
194 AC_ARG_WITH(ld,
195 [ --with-ld arrange to use the specified ld (full pathname)],
196 DEFAULT_LINKER="$with_ld")
197 if test x"${DEFAULT_LINKER+set}" = x"set"; then
198 if test ! -x "$DEFAULT_LINKER"; then
199 AC_MSG_ERROR([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
200 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
201 gnu_ld_flag=yes
202 fi
203 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
204 [Define to enable the use of a default linker.])
205 fi
206
207 gnu_ld=`if test x"$gnu_ld_flag" = x"yes"; then echo 1; else echo 0; fi`
208 AC_DEFINE_UNQUOTED(HAVE_GNU_LD, $gnu_ld, [Define if using GNU ld.])
209
210 AC_MSG_CHECKING([whether a default linker was specified])
211 if test x"${DEFAULT_LINKER+set}" = x"set"; then
212 if test x"$gnu_ld_flag" = x"no"; then
213 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
214 else
215 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
216 fi
217 else
218 AC_MSG_RESULT(no)
219 fi
220
221 # With demangler in GNU ld
222 AC_ARG_WITH(demangler-in-ld,
223 [ --with-demangler-in-ld try to use demangler in GNU ld.],
224 demangler_in_ld="$with_demangler_in_ld",
225 demangler_in_ld=no)
226
227 # ----------------------
228 # Find default assembler
229 # ----------------------
230
231 # With GNU as
232 AC_ARG_WITH(gnu-as,
233 [ --with-gnu-as arrange to work with GNU as],
234 gas_flag="$with_gnu_as",
235 gas_flag=no)
236
237 AC_ARG_WITH(as,
238 [ --with-as arrange to use the specified as (full pathname)],
239 DEFAULT_ASSEMBLER="$with_as")
240 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
241 if test ! -x "$DEFAULT_ASSEMBLER"; then
242 AC_MSG_ERROR([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
243 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
244 gas_flag=yes
245 fi
246 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
247 [Define to enable the use of a default assembler.])
248 fi
249
250 AC_MSG_CHECKING([whether a default assembler was specified])
251 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
252 if test x"$gas_flag" = x"no"; then
253 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
254 else
255 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
256 fi
257 else
258 AC_MSG_RESULT(no)
259 fi
260
261 # ---------------
262 # Find C compiler
263 # ---------------
264
265 # If a non-executable a.out is present (e.g. created by GNU as above even if
266 # invoked with -v only), the IRIX 6 native ld just overwrites the existing
267 # file, even when creating an executable, so an execution test fails.
268 # Remove possible default executable files to avoid this.
269 #
270 # FIXME: This really belongs into AC_PROG_CC and can be removed once
271 # Autoconf includes it.
272 rm -f a.out a.exe b.out
273
274 # Find the native compiler
275 AC_PROG_CC
276 AM_PROG_CC_C_O
277 # autoconf is lame and doesn't give us any substitution variable for this.
278 if eval "test \"`echo '$ac_cv_prog_cc_'${ac_cc}_c_o`\" = no"; then
279 NO_MINUS_C_MINUS_O=yes
280 else
281 OUTPUT_OPTION='-o $@'
282 fi
283 AC_SUBST(NO_MINUS_C_MINUS_O)
284 AC_SUBST(OUTPUT_OPTION)
285
286 # Remove the -O2: for historical reasons, unless bootstrapping we prefer
287 # optimizations to be activated explicitly by the toplevel.
288 case "$CC" in
289 */prev-gcc/xgcc*) ;;
290 *) CFLAGS=`echo $CFLAGS | sed "s/-O[[s0-9]]* *//" ` ;;
291 esac
292 AC_SUBST(CFLAGS)
293
294 # -------------------------
295 # Check C compiler features
296 # -------------------------
297
298 AC_PROG_CPP
299 AC_C_INLINE
300
301 # sizeof(char) is 1 by definition.
302 AC_CHECK_SIZEOF(void *)
303 AC_CHECK_SIZEOF(short)
304 AC_CHECK_SIZEOF(int)
305 AC_CHECK_SIZEOF(long)
306 AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
307 AC_CHECK_TYPES([__int64], [AC_CHECK_SIZEOF(__int64)])
308
309 # ---------------------
310 # Warnings and checking
311 # ---------------------
312
313 # Check $CC warning features (if it's GCC).
314 # We want to use -pedantic, but we don't want warnings about
315 # * 'long long'
316 # * variadic macros
317 # * overlong strings
318 # So, we only use -pedantic if we can disable those warnings.
319
320 ACX_PROG_CC_WARNING_OPTS([-W -Wall -Wwrite-strings -Wstrict-prototypes \
321 -Wmissing-prototypes], [loose_warn])
322 ACX_PROG_CC_WARNING_OPTS([-Wc++-compat], [cxx_compat_warn])
323 ACX_PROG_CC_WARNING_OPTS([-Wold-style-definition \
324 -Wmissing-format-attribute], [strict_warn])
325 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC([-Wno-long-long -Wno-variadic-macros \
326 -Wno-overlength-strings], [strict_warn])
327 ACX_PROG_CC_WARNINGS_ARE_ERRORS([manual], [strict_warn])
328
329 # The above macros do nothing if the compiler is not GCC. However, the
330 # Makefile has more goo to add other flags, so this variabl is used to
331 # enables warnings only for GCC.
332 warn_cflags=
333 if test "x$GCC" = "xyes"; then
334 warn_cflags='$(GCC_WARN_CFLAGS)'
335 fi
336 AC_SUBST(warn_cflags)
337
338 # Enable expensive internal checks
339 is_release=
340 if test x"`cat $srcdir/DEV-PHASE`" != xexperimental; then
341 is_release=yes
342 fi
343
344 AC_ARG_ENABLE(checking,
345 [ --enable-checking[=LIST]
346 enable expensive run-time checks. With LIST,
347 enable only specific categories of checks.
348 Categories are: yes,no,all,none,release.
349 Flags are: assert,df,fold,gc,gcac,misc,
350 rtlflag,rtl,runtime,tree,valgrind.],
351 [ac_checking_flags="${enableval}"],[
352 # Determine the default checks.
353 if test x$is_release = x ; then
354 ac_checking_flags=yes
355 else
356 ac_checking_flags=release
357 fi])
358 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
359 for check in release $ac_checking_flags
360 do
361 case $check in
362 # these set all the flags to specific states
363 yes) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
364 ac_fold_checking= ; ac_gc_checking=1 ;
365 ac_gc_always_collect= ; ac_rtl_checking= ;
366 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
367 ac_tree_checking=1 ; ac_valgrind_checking= ;;
368 no|none) ac_assert_checking= ; ac_checking= ; ac_df_checking= ;
369 ac_fold_checking= ; ac_gc_checking= ;
370 ac_gc_always_collect= ; ac_rtl_checking= ;
371 ac_rtlflag_checking= ; ac_runtime_checking= ;
372 ac_tree_checking= ; ac_valgrind_checking= ;;
373 all) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
374 ac_fold_checking=1 ; ac_gc_checking=1 ;
375 ac_gc_always_collect=1 ; ac_rtl_checking=1 ;
376 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
377 ac_tree_checking=1 ; ac_valgrind_checking= ;;
378 release) ac_assert_checking=1 ; ac_checking= ; ac_df_checking= ;
379 ac_fold_checking= ; ac_gc_checking= ;
380 ac_gc_always_collect= ; ac_rtl_checking= ;
381 ac_rtlflag_checking= ; ac_runtime_checking=1 ;
382 ac_tree_checking= ; ac_valgrind_checking= ;;
383 # these enable particular checks
384 assert) ac_assert_checking=1 ;;
385 df) ac_df_checking=1 ;;
386 fold) ac_fold_checking=1 ;;
387 gc) ac_gc_checking=1 ;;
388 gcac) ac_gc_always_collect=1 ;;
389 misc) ac_checking=1 ;;
390 rtl) ac_rtl_checking=1 ;;
391 rtlflag) ac_rtlflag_checking=1 ;;
392 runtime) ac_runtime_checking=1 ;;
393 tree) ac_tree_checking=1 ;;
394 valgrind) ac_valgrind_checking=1 ;;
395 *) AC_MSG_ERROR(unknown check category $check) ;;
396 esac
397 done
398 IFS="$ac_save_IFS"
399
400 nocommon_flag=""
401 if test x$ac_checking != x ; then
402 AC_DEFINE(ENABLE_CHECKING, 1,
403 [Define if you want more run-time sanity checks. This one gets a grab
404 bag of miscellaneous but relatively cheap checks.])
405 nocommon_flag=-fno-common
406 fi
407 AC_SUBST(nocommon_flag)
408 if test x$ac_df_checking != x ; then
409 AC_DEFINE(ENABLE_DF_CHECKING, 1,
410 [Define if you want more run-time sanity checks for dataflow.])
411 fi
412 if test x$ac_assert_checking != x ; then
413 AC_DEFINE(ENABLE_ASSERT_CHECKING, 1,
414 [Define if you want assertions enabled. This is a cheap check.])
415 fi
416 GCC_TARGET_TEMPLATE(ENABLE_RUNTIME_CHECKING)
417 if test x$ac_runtime_checking != x ; then
418 AC_DEFINE(ENABLE_RUNTIME_CHECKING, 1,
419 [Define if you want runtime assertions enabled. This is a cheap check.])
420 fi
421 if test x$ac_tree_checking != x ; then
422 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
423 [Define if you want all operations on trees (the basic data
424 structure of the front ends) to be checked for dynamic type safety
425 at runtime. This is moderately expensive. The tree browser debugging
426 routines will also be enabled by this option.
427 ])
428 TREEBROWSER=tree-browser.o
429 fi
430 AC_SUBST(TREEBROWSER)
431 if test x$ac_rtl_checking != x ; then
432 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
433 [Define if you want all operations on RTL (the basic data structure
434 of the optimizer and back end) to be checked for dynamic type safety
435 at runtime. This is quite expensive.])
436 fi
437 if test x$ac_rtlflag_checking != x ; then
438 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
439 [Define if you want RTL flag accesses to be checked against the RTL
440 codes that are supported for each access macro. This is relatively
441 cheap.])
442 fi
443 if test x$ac_gc_checking != x ; then
444 AC_DEFINE(ENABLE_GC_CHECKING, 1,
445 [Define if you want the garbage collector to do object poisoning and
446 other memory allocation checks. This is quite expensive.])
447 fi
448 if test x$ac_gc_always_collect != x ; then
449 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
450 [Define if you want the garbage collector to operate in maximally
451 paranoid mode, validating the entire heap and collecting garbage at
452 every opportunity. This is extremely expensive.])
453 fi
454 if test x$ac_fold_checking != x ; then
455 AC_DEFINE(ENABLE_FOLD_CHECKING, 1,
456 [Define if you want fold checked that it never destructs its argument.
457 This is quite expensive.])
458 fi
459 valgrind_path_defines=
460 valgrind_command=
461
462 dnl # This check AC_REQUIREs various stuff, so it *must not* be inside
463 dnl # an if statement. This was the source of very frustrating bugs
464 dnl # in converting to autoconf 2.5x!
465 AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
466
467 if test x$ac_valgrind_checking != x ; then
468 # It is certainly possible that there's valgrind but no valgrind.h.
469 # GCC relies on making annotations so we must have both.
470 AC_MSG_CHECKING(for VALGRIND_DISCARD in <valgrind/memcheck.h>)
471 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
472 [[#include <valgrind/memcheck.h>
473 #ifndef VALGRIND_DISCARD
474 #error VALGRIND_DISCARD not defined
475 #endif]])],
476 [gcc_cv_header_valgrind_memcheck_h=yes],
477 [gcc_cv_header_valgrind_memcheck_h=no])
478 AC_MSG_RESULT($gcc_cv_header_valgrind_memcheck_h)
479 AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
480 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
481 [[#include <memcheck.h>
482 #ifndef VALGRIND_DISCARD
483 #error VALGRIND_DISCARD not defined
484 #endif]])],
485 [gcc_cv_header_memcheck_h=yes],
486 [gcc_cv_header_memcheck_h=no])
487 AC_MSG_RESULT($gcc_cv_header_memcheck_h)
488 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
489 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
490 if test "x$valgrind_path" = "x" \
491 || (test $have_valgrind_h = no \
492 && test $gcc_cv_header_memcheck_h = no \
493 && test $gcc_cv_header_valgrind_memcheck_h = no); then
494 AC_MSG_ERROR([*** Can't find both valgrind and valgrind/memcheck.h, memcheck.h or valgrind.h])
495 fi
496 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
497 valgrind_command="$valgrind_path -q"
498 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
499 [Define if you want to run subprograms and generated programs
500 through valgrind (a memory checker). This is extremely expensive.])
501 if test $gcc_cv_header_valgrind_memcheck_h = yes; then
502 AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1,
503 [Define if valgrind's valgrind/memcheck.h header is installed.])
504 fi
505 if test $gcc_cv_header_memcheck_h = yes; then
506 AC_DEFINE(HAVE_MEMCHECK_H, 1,
507 [Define if valgrind's memcheck.h header is installed.])
508 fi
509 fi
510 AC_SUBST(valgrind_path_defines)
511 AC_SUBST(valgrind_command)
512
513 AC_ARG_ENABLE(mapped-location,
514 [ --enable-mapped-location location_t is fileline integer cookie],,
515 enable_mapped_location=no)
516
517 if test "$enable_mapped_location" = yes ; then
518 AC_DEFINE(USE_MAPPED_LOCATION, 1,
519 [Define if location_t is fileline integer cookie.])
520 fi
521
522 # Enable code coverage collection
523 AC_ARG_ENABLE(coverage,
524 [ --enable-coverage[=LEVEL]
525 enable compiler's code coverage collection.
526 Use to measure compiler performance and locate
527 unused parts of the compiler. With LEVEL, specify
528 optimization. Values are opt, noopt,
529 default is noopt],
530 [case "${enableval}" in
531 yes|noopt)
532 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0"
533 ;;
534 opt)
535 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2"
536 ;;
537 no)
538 # a.k.a. --disable-coverage
539 coverage_flags=""
540 ;;
541 *)
542 AC_MSG_ERROR(unknown coverage setting $enableval)
543 ;;
544 esac],
545 [coverage_flags=""])
546 AC_SUBST(coverage_flags)
547
548 AC_ARG_ENABLE(gather-detailed-mem-stats,
549 [ --enable-gather-detailed-mem-stats enable detailed memory allocation stats gathering], [],
550 [enable_gather_detailed_mem_stats=no])
551 if test x$enable_gather_detailed_mem_stats = xyes ; then
552 AC_DEFINE(GATHER_STATISTICS, 1,
553 [Define to enable detailed memory allocation stats gathering.])
554 fi
555
556 # -------------------------------
557 # Miscenalleous configure options
558 # -------------------------------
559
560 # With stabs
561 AC_ARG_WITH(stabs,
562 [ --with-stabs arrange to use stabs instead of host debug format],
563 stabs="$with_stabs",
564 stabs=no)
565
566 # Determine whether or not multilibs are enabled.
567 AC_ARG_ENABLE(multilib,
568 [ --enable-multilib enable library support for multiple ABIs],
569 [], [enable_multilib=yes])
570 AC_SUBST(enable_multilib)
571
572 # Enable __cxa_atexit for C++.
573 AC_ARG_ENABLE(__cxa_atexit,
574 [ --enable-__cxa_atexit enable __cxa_atexit for C++],
575 [], [])
576
577 # Enable C extension for decimal float if target supports it.
578 AC_ARG_ENABLE(decimal-float,
579 [ --enable-decimal-float={no,yes,bid,dpd}
580 enable decimal float extension to C. Selecting 'bid'
581 or 'dpd' choses which decimal floating point format
582 to use],
583 [
584 case $enable_decimal_float in
585 yes | no | bid | dpd) ;;
586 *) AC_MSG_ERROR(['$enable_decimal_float' is an invalid value for --enable-decimal-float.
587 Valid choices are 'yes', 'bid', 'dpd', and 'no'.]) ;;
588 esac
589 ],
590 [
591 case $target in
592 powerpc*-*-linux* | i?86*-*-linux* | x86_64*-*-linux*)
593 enable_decimal_float=yes
594 ;;
595 *)
596 AC_MSG_WARN(decimal float is not supported for this target, ignored)
597 enable_decimal_float=no
598 ;;
599 esac
600 ])
601
602 dfp=`if test $enable_decimal_float != no; then echo 1; else echo 0; fi`
603 AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_FLOAT, $dfp,
604 [Define to 1 to enable decimal float extension to C.])
605
606 # x86's use BID format instead of DPD
607 case x$enable_decimal_float in
608 xyes)
609 case $target in
610 i?86*-*-linux* | x86_64*-*-linux*)
611 enable_decimal_float=bid
612 ;;
613 *)
614 enable_decimal_float=dpd
615 ;;
616 esac
617 ;;
618 xno)
619 # ENABLE_DECIMAL_FLOAT is set to 0. But we have to have proper
620 # dependency on libdecnumber.
621 enable_decimal_float=dpd
622 ;;
623 esac
624 AC_SUBST(enable_decimal_float)
625
626 bid=`if test $enable_decimal_float = bid; then echo 1; else echo 0; fi`
627 AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_BID_FORMAT, $bid,
628 [Define to 1 to specify that we are using the BID decimal floating
629 point format instead of DPD])
630
631 # Enable threads
632 # Pass with no value to take the default
633 # Pass with a value to specify a thread package
634 AC_ARG_ENABLE(threads,
635 [ --enable-threads enable thread usage for target GCC
636 --enable-threads=LIB use LIB thread package for target GCC],,
637 [enable_threads=''])
638
639 AC_ARG_ENABLE(tls,
640 [ --enable-tls enable or disable generation of tls code
641 overriding the assembler check for tls support],
642 [
643 case $enable_tls in
644 yes | no) ;;
645 *) AC_MSG_ERROR(['$enable_tls' is an invalid value for --enable-tls.
646 Valid choices are 'yes' and 'no'.]) ;;
647 esac
648 ], [enable_tls=''])
649
650 AC_ARG_ENABLE(objc-gc,
651 [ --enable-objc-gc enable the use of Boehm's garbage collector with
652 the GNU Objective-C runtime],
653 if test x$enable_objc_gc = xno; then
654 objc_boehm_gc=''
655 else
656 objc_boehm_gc=1
657 fi,
658 objc_boehm_gc='')
659
660 AC_ARG_WITH(dwarf2,
661 [ --with-dwarf2 force the default debug format to be DWARF 2],
662 dwarf2="$with_dwarf2",
663 dwarf2=no)
664
665 AC_ARG_ENABLE(shared,
666 [ --disable-shared don't provide a shared libgcc],
667 [
668 case $enable_shared in
669 yes | no) ;;
670 *)
671 enable_shared=no
672 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
673 for pkg in $enableval; do
674 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
675 enable_shared=yes
676 fi
677 done
678 IFS="$ac_save_ifs"
679 ;;
680 esac
681 ], [enable_shared=yes])
682 AC_SUBST(enable_shared)
683
684 AC_ARG_WITH(build-sysroot,
685 [ --with-build-sysroot=sysroot
686 use sysroot as the system root during the build])
687
688 AC_ARG_WITH(sysroot,
689 [ --with-sysroot[=DIR] Search for usr/lib, usr/include, et al, within DIR.],
690 [
691 case ${with_sysroot} in
692 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_noncanonical}/sys-root' ;;
693 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
694 esac
695
696 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
697 CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
698
699 if test "x$prefix" = xNONE; then
700 test_prefix=/usr/local
701 else
702 test_prefix=$prefix
703 fi
704 if test "x$exec_prefix" = xNONE; then
705 test_exec_prefix=$test_prefix
706 else
707 test_exec_prefix=$exec_prefix
708 fi
709 case ${TARGET_SYSTEM_ROOT} in
710 "${test_prefix}"|"${test_prefix}/"*|\
711 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
712 '${prefix}'|'${prefix}/'*|\
713 '${exec_prefix}'|'${exec_prefix}/'*)
714 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
715 TARGET_SYSTEM_ROOT_DEFINE="$t"
716 ;;
717 esac
718 ], [
719 TARGET_SYSTEM_ROOT=
720 TARGET_SYSTEM_ROOT_DEFINE=
721 CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
722 ])
723 AC_SUBST(TARGET_SYSTEM_ROOT)
724 AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
725 AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
726
727 # Build with intermodule optimisations
728 AC_ARG_ENABLE(intermodule,
729 [ --enable-intermodule build the compiler in one step],
730 [case ${enable_intermodule} in
731 yes) onestep="-onestep";;
732 *) onestep="";;
733 esac],
734 [onestep=""])
735 AC_SUBST(onestep)
736
737 # Sanity check enable_languages in case someone does not run the toplevel
738 # configure # script.
739 AC_ARG_ENABLE(languages,
740 [ --enable-languages=LIST specify which front-ends to build],
741 [case ,${enable_languages}, in
742 ,,|,yes,)
743 # go safe -- we cannot be much sure without the toplevel
744 # configure's
745 # analysis of which target libs are present and usable
746 enable_languages=c
747 ;;
748 *,all,*)
749 AC_MSG_ERROR([only the toplevel supports --enable-languages=all])
750 ;;
751 *,c,*)
752 ;;
753 *)
754 enable_languages=c,${enable_languages}
755 ;;
756 esac],
757 [enable_languages=c])
758
759 # Used by documentation targets
760 AC_SUBST(datarootdir)
761 AC_SUBST(docdir)
762 AC_SUBST(htmldir)
763
764 # -------------------------
765 # Checks for other programs
766 # -------------------------
767
768 AC_PROG_MAKE_SET
769
770 # Find some useful tools
771 AC_PROG_AWK
772 # We need awk to create options.c and options.h.
773 # Bail out if it's missing.
774 case ${AWK} in
775 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
776 esac
777
778 gcc_AC_PROG_LN_S
779 ACX_PROG_LN($LN_S)
780 AC_PROG_RANLIB
781 case "${host}" in
782 *-*-darwin*)
783 # By default, the Darwin ranlib will not treat common symbols as
784 # definitions when building the archive table of contents. Other
785 # ranlibs do that; pass an option to the Darwin ranlib that makes
786 # it behave similarly.
787 ranlib_flags="-c"
788 ;;
789 *)
790 ranlib_flags=""
791 esac
792 AC_SUBST(ranlib_flags)
793
794 gcc_AC_PROG_INSTALL
795
796 # See if cmp has --ignore-initial.
797 gcc_AC_PROG_CMP_IGNORE_INITIAL
798
799 # See if we have the mktemp command.
800 AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
801
802 # See if makeinfo has been installed and is modern enough
803 # that we can use it.
804 ACX_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
805 [GNU texinfo.* \([0-9][0-9.]*\)],
806 [4.[4-9]*])
807 if test $gcc_cv_prog_makeinfo_modern = no; then
808 AC_MSG_WARN([
809 *** Makeinfo is missing or too old.
810 *** Info documentation will not be built.])
811 BUILD_INFO=
812 else
813 BUILD_INFO=info
814 fi
815 AC_SUBST(BUILD_INFO)
816
817 # Is pod2man recent enough to regenerate manpages?
818 AC_MSG_CHECKING([for recent Pod::Man])
819 if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
820 AC_MSG_RESULT(yes)
821 GENERATED_MANPAGES=generated-manpages
822 else
823 AC_MSG_RESULT(no)
824 GENERATED_MANPAGES=
825 fi
826 AC_SUBST(GENERATED_MANPAGES)
827
828 MISSING="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing"
829
830 # How about lex?
831 dnl Don't use AC_PROG_LEX; we insist on flex.
832 dnl LEXLIB is not useful in gcc.
833 AC_CHECK_PROGS([FLEX], flex, [$MISSING flex])
834
835 # Bison?
836 AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
837
838 # Binutils are not build modules, unlike bison/flex/makeinfo. So we
839 # check for build == host before using them.
840
841 # NM
842 if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
843 && test -d ../binutils ; then
844 NM='$(objdir)/../binutils/nm-new'
845 else
846 AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
847 fi
848
849 # AR
850 if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
851 && test -d ../binutils ; then
852 AR='$(objdir)/../binutils/ar'
853 else
854 AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
855 fi
856
857
858 # --------------------
859 # Checks for C headers
860 # --------------------
861
862 AC_MSG_CHECKING(for GNU C library)
863 AC_CACHE_VAL(gcc_cv_glibc,
864 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
865 [[#include <features.h>]], [[
866 #if ! (defined __GLIBC__ || defined __GNU_LIBRARY__)
867 #error Not a GNU C library system
868 #endif]])],
869 [gcc_cv_glibc=yes],
870 [gcc_cv_glibc=no])])
871 AC_MSG_RESULT($gcc_cv_glibc)
872 if test $gcc_cv_glibc = yes; then
873 AC_DEFINE(_GNU_SOURCE, 1, [Always define this when using the GNU C Library])
874 fi
875
876 # Need to reject headers which give warnings, so that the -Werror bootstrap
877 # works later. *sigh* This needs to come before all header checks.
878 AC_PROG_CPP_WERROR
879
880 AC_HEADER_STDC
881 AC_HEADER_TIME
882 ACX_HEADER_STRING
883 AC_HEADER_SYS_WAIT
884 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h iconv.h \
885 fcntl.h unistd.h sys/file.h sys/time.h sys/mman.h \
886 sys/resource.h sys/param.h sys/times.h sys/stat.h \
887 direct.h malloc.h langinfo.h ldfcn.h locale.h wchar.h)
888
889 # Check for thread headers.
890 AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
891 AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
892
893 # These tests can't be done till we know if we have limits.h.
894 gcc_AC_C_CHAR_BIT
895 AC_C_BIGENDIAN
896
897 # --------
898 # UNSORTED
899 # --------
900
901
902 # These libraries may be used by collect2.
903 # We may need a special search path to get them linked.
904 AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
905 [save_LIBS="$LIBS"
906 for libs in '' -lld -lmld \
907 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
908 '-L/usr/lib/cmplrs/cc3.11 -lmld'
909 do
910 LIBS="$libs"
911 AC_TRY_LINK_FUNC(ldopen,
912 [gcc_cv_collect2_libs="$libs"; break])
913 done
914 LIBS="$save_LIBS"
915 test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
916 case $gcc_cv_collect2_libs in
917 "none required") ;;
918 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
919 esac
920 AC_SUBST(COLLECT2_LIBS)
921
922 # When building Ada code on Alpha, we need exc_resume which is usually in
923 # -lexc. So test for it.
924 save_LIBS="$LIBS"
925 LIBS=
926 AC_SEARCH_LIBS(exc_resume, exc)
927 GNAT_LIBEXC="$LIBS"
928 LIBS="$save_LIBS"
929 AC_SUBST(GNAT_LIBEXC)
930
931 # Some systems put ldexp and frexp in libm instead of libc; assume
932 # they're both in the same place. jcf-dump needs them.
933 save_LIBS="$LIBS"
934 LIBS=
935 AC_SEARCH_LIBS(ldexp, m)
936 LDEXP_LIB="$LIBS"
937 LIBS="$save_LIBS"
938 AC_SUBST(LDEXP_LIB)
939
940 # Use <inttypes.h> only if it exists,
941 # doesn't clash with <sys/types.h>, and declares intmax_t.
942 AC_MSG_CHECKING(for inttypes.h)
943 AC_CACHE_VAL(gcc_cv_header_inttypes_h,
944 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
945 [[#include <sys/types.h>
946 #include <inttypes.h>]],
947 [[intmax_t i = -1;]])],
948 [gcc_cv_header_inttypes_h=yes],
949 [gcc_cv_header_inttypes_h=no])])
950 AC_MSG_RESULT($gcc_cv_header_inttypes_h)
951 if test $gcc_cv_header_inttypes_h = yes; then
952 AC_DEFINE(HAVE_INTTYPES_H, 1,
953 [Define if you have a working <inttypes.h> header file.])
954 fi
955
956 dnl Disabled until we have a complete test for buggy enum bitfields.
957 dnl gcc_AC_C_ENUM_BF_UNSIGNED
958
959 define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
960 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
961 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
962 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
963 putchar_unlocked putc_unlocked)
964 AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoll atoq \
965 sysconf strsignal getrusage nl_langinfo scandir alphasort \
966 gettimeofday mbstowcs wcswidth mmap mincore setlocale \
967 gcc_UNLOCKED_FUNCS)
968
969 if test x$ac_cv_func_mbstowcs = xyes; then
970 AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
971 [ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
972 int main()
973 {
974 mbstowcs(0, "", 0);
975 return 0;
976 }]])],
977 [gcc_cv_func_mbstowcs_works=yes],
978 [gcc_cv_func_mbstowcs_works=no],
979 [gcc_cv_func_mbstowcs_works=yes])])
980 if test x$gcc_cv_func_mbstowcs_works = xyes; then
981 AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
982 [Define this macro if mbstowcs does not crash when its
983 first argument is NULL.])
984 fi
985 fi
986
987 AC_CHECK_TYPE(ssize_t, int)
988
989 # Try to determine the array type of the second argument of getgroups
990 # for the target system (int or gid_t).
991 AC_TYPE_GETGROUPS
992 if test "${target}" = "${build}"; then
993 TARGET_GETGROUPS_T=$ac_cv_type_getgroups
994 else
995 case "${target}" in
996 # This condition may need some tweaking. It should include all
997 # targets where the array type of the second argument of getgroups
998 # is int and the type of gid_t is not equivalent to int.
999 *-*-sunos* | *-*-ultrix*)
1000 TARGET_GETGROUPS_T=int
1001 ;;
1002 *)
1003 TARGET_GETGROUPS_T=gid_t
1004 ;;
1005 esac
1006 fi
1007 AC_SUBST(TARGET_GETGROUPS_T)
1008
1009 gcc_AC_FUNC_MMAP_BLACKLIST
1010
1011 case "${host}" in
1012 *-*-*vms*)
1013 # Under VMS, vfork works very differently than on Unix. The standard test
1014 # won't work, and it isn't easily adaptable. It makes more sense to
1015 # just force it.
1016 ac_cv_func_vfork_works=yes
1017 ;;
1018 esac
1019 AC_FUNC_FORK
1020
1021 AM_ICONV
1022 # Until we have in-tree GNU iconv:
1023 LIBICONV_DEP=
1024 AC_SUBST(LIBICONV_DEP)
1025
1026 AM_LC_MESSAGES
1027
1028 AM_LANGINFO_CODESET
1029
1030 # We will need to find libiberty.h and ansidecl.h
1031 saved_CFLAGS="$CFLAGS"
1032 CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include"
1033 gcc_AC_CHECK_DECLS(getenv atol asprintf sbrk abort atof getcwd getwd \
1034 strsignal strstr strverscmp \
1035 errno snprintf vsnprintf vasprintf malloc realloc calloc \
1036 free basename getopt clock getpagesize gcc_UNLOCKED_FUNCS, , ,[
1037 #include "ansidecl.h"
1038 #include "system.h"])
1039
1040 gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
1041 #include "ansidecl.h"
1042 #include "system.h"
1043 #ifdef HAVE_SYS_RESOURCE_H
1044 #include <sys/resource.h>
1045 #endif
1046 ])
1047
1048 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1049 #include "ansidecl.h"
1050 #include "system.h"
1051 #ifdef HAVE_SYS_RESOURCE_H
1052 #include <sys/resource.h>
1053 #endif
1054 ]], [[rlim_t l = 0;]])],[],[AC_DEFINE([rlim_t],[long],
1055 [Define to \`long' if <sys/resource.h> doesn't define.])])
1056
1057 # On AIX 5.2, <ldfcn.h> conflicts with <fcntl.h>, as both define incompatible
1058 # FREAD and FWRITE macros. Fortunately, for GCC's single usage of ldgetname
1059 # in collect2.c, <fcntl.h> isn't visible, but the configure test below needs
1060 # to undef these macros to get the correct value for HAVE_DECL_LDGETNAME.
1061 gcc_AC_CHECK_DECLS(ldgetname, , ,[
1062 #include "ansidecl.h"
1063 #include "system.h"
1064 #ifdef HAVE_LDFCN_H
1065 #undef FREAD
1066 #undef FWRITE
1067 #include <ldfcn.h>
1068 #endif
1069 ])
1070
1071 gcc_AC_CHECK_DECLS(times, , ,[
1072 #include "ansidecl.h"
1073 #include "system.h"
1074 #ifdef HAVE_SYS_TIMES_H
1075 #include <sys/times.h>
1076 #endif
1077 ])
1078
1079 gcc_AC_CHECK_DECLS(sigaltstack, , ,[
1080 #include "ansidecl.h"
1081 #include "system.h"
1082 #include <signal.h>
1083 ])
1084
1085 # More time-related stuff.
1086 AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
1087 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1088 #include "ansidecl.h"
1089 #include "system.h"
1090 #ifdef HAVE_SYS_TIMES_H
1091 #include <sys/times.h>
1092 #endif
1093 ]], [[struct tms tms;]])],[ac_cv_struct_tms=yes],[ac_cv_struct_tms=no])])
1094 if test $ac_cv_struct_tms = yes; then
1095 AC_DEFINE(HAVE_STRUCT_TMS, 1,
1096 [Define if <sys/times.h> defines struct tms.])
1097 fi
1098
1099 # use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
1100 # revisit after autoconf 2.50.
1101 AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
1102 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1103 #include "ansidecl.h"
1104 #include "system.h"
1105 ]], [[clock_t x;]])],[gcc_cv_type_clock_t=yes],[gcc_cv_type_clock_t=no])])
1106 if test $gcc_cv_type_clock_t = yes; then
1107 AC_DEFINE(HAVE_CLOCK_T, 1,
1108 [Define if <time.h> defines clock_t.])
1109 fi
1110
1111 # Restore CFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
1112 CFLAGS="$saved_CFLAGS"
1113
1114 gcc_AC_INITFINI_ARRAY
1115
1116 # mkdir takes a single argument on some systems.
1117 gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
1118
1119 # File extensions
1120 manext='.1'
1121 objext='.o'
1122 AC_SUBST(manext)
1123 AC_SUBST(objext)
1124
1125 # With Setjmp/Longjmp based exception handling.
1126 AC_ARG_ENABLE(sjlj-exceptions,
1127 [ --enable-sjlj-exceptions
1128 arrange to use setjmp/longjmp exception handling],
1129 [sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
1130 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
1131 [Define 0/1 to force the choice for exception handling model.])])
1132
1133 # For platforms with the unwind ABI which includes an unwind library,
1134 # libunwind, we can choose to use the system libunwind.
1135 AC_ARG_WITH(system-libunwind,
1136 [ --with-system-libunwind use installed libunwind])
1137
1138 # config.gcc also contains tests of with_system_libunwind.
1139 if test x$with_system_libunwind = xyes; then
1140 AC_DEFINE(HAVE_GETIPINFO, 1,
1141 [Define to 1 if system unwind library has _Unwind_GetIPInfo.])
1142 fi
1143
1144 # --------------------------------------------------------
1145 # Build, host, and target specific configuration fragments
1146 # --------------------------------------------------------
1147
1148 # Collect build-machine-specific information.
1149 . ${srcdir}/config.build
1150
1151 # Collect host-machine-specific information.
1152 . ${srcdir}/config.host
1153
1154 target_gtfiles=
1155
1156 # Collect target-machine-specific information.
1157 . ${srcdir}/config.gcc
1158
1159 extra_objs="${host_extra_objs} ${extra_objs}"
1160 extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
1161
1162 # Default the target-machine variables that were not explicitly set.
1163 if test x"$tm_file" = x
1164 then tm_file=$cpu_type/$cpu_type.h; fi
1165
1166 if test x"$extra_headers" = x
1167 then extra_headers=; fi
1168
1169 if test x$md_file = x
1170 then md_file=$cpu_type/$cpu_type.md; fi
1171
1172 if test x$out_file = x
1173 then out_file=$cpu_type/$cpu_type.c; fi
1174
1175 if test x"$tmake_file" = x
1176 then tmake_file=$cpu_type/t-$cpu_type
1177 fi
1178
1179 if test x"$dwarf2" = xyes
1180 then tm_file="$tm_file tm-dwarf2.h"
1181 fi
1182
1183 # Say what files are being used for the output code and MD file.
1184 echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
1185 echo "Using \`$srcdir/config/$md_file' as machine description file."
1186
1187 # If any of the xm_file variables contain nonexistent files, warn
1188 # about them and drop them.
1189
1190 bx=
1191 for x in $build_xm_file; do
1192 if test -f $srcdir/config/$x
1193 then bx="$bx $x"
1194 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1195 fi
1196 done
1197 build_xm_file="$bx"
1198
1199 hx=
1200 for x in $host_xm_file; do
1201 if test -f $srcdir/config/$x
1202 then hx="$hx $x"
1203 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1204 fi
1205 done
1206 host_xm_file="$hx"
1207
1208 tx=
1209 for x in $xm_file; do
1210 if test -f $srcdir/config/$x
1211 then tx="$tx $x"
1212 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1213 fi
1214 done
1215 xm_file="$tx"
1216
1217 count=a
1218 for f in $tm_file; do
1219 count=${count}x
1220 done
1221 if test $count = ax; then
1222 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1223 else
1224 echo "Using the following target machine macro files:"
1225 for f in $tm_file; do
1226 echo " $srcdir/config/$f"
1227 done
1228 fi
1229
1230 if test x$need_64bit_hwint = xyes; then
1231 AC_DEFINE(NEED_64BIT_HOST_WIDE_INT, 1,
1232 [Define to 1 if HOST_WIDE_INT must be 64 bits wide (see hwint.h).])
1233 fi
1234
1235 if test x$use_long_long_for_widest_fast_int = xyes; then
1236 AC_DEFINE(USE_LONG_LONG_FOR_WIDEST_FAST_INT, 1,
1237 [Define to 1 if the 'long long' (or '__int64') is wider than 'long' but still
1238 efficiently supported by the host hardware.])
1239 fi
1240
1241 count=a
1242 for f in $host_xm_file; do
1243 count=${count}x
1244 done
1245 if test $count = a; then
1246 :
1247 elif test $count = ax; then
1248 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1249 else
1250 echo "Using the following host machine macro files:"
1251 for f in $host_xm_file; do
1252 echo " $srcdir/config/$f"
1253 done
1254 fi
1255 echo "Using ${out_host_hook_obj} for host machine hooks."
1256
1257 if test "$host_xm_file" != "$build_xm_file"; then
1258 count=a
1259 for f in $build_xm_file; do
1260 count=${count}x
1261 done
1262 if test $count = a; then
1263 :
1264 elif test $count = ax; then
1265 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
1266 else
1267 echo "Using the following build machine macro files:"
1268 for f in $build_xm_file; do
1269 echo " $srcdir/config/$f"
1270 done
1271 fi
1272 fi
1273
1274 case ${host} in
1275 powerpc*-*-darwin*)
1276 AC_CACHE_CHECK([whether mcontext_t fields have underscores],
1277 gcc_cv_mcontext_underscores,
1278 AC_COMPILE_IFELSE([
1279 #include <sys/cdefs.h>
1280 #include <sys/signal.h>
1281 #include <ucontext.h>
1282 int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; }
1283 ],
1284 gcc_cv_mcontext_underscores=no, gcc_cv_mcontext_underscores=yes))
1285 if test $gcc_cv_mcontext_underscores = yes; then
1286 AC_DEFINE(HAS_MCONTEXT_T_UNDERSCORES,,dnl
1287 [mcontext_t fields start with __])
1288 fi
1289 ;;
1290 esac
1291
1292 # ---------
1293 # Threading
1294 # ---------
1295
1296 # Check if a valid thread package
1297 case ${enable_threads} in
1298 "" | no)
1299 # No threads
1300 target_thread_file='single'
1301 ;;
1302 yes)
1303 # default
1304 target_thread_file='single'
1305 ;;
1306 aix | dce | gnat | irix | posix | posix95 | rtems | \
1307 single | solaris | vxworks | win32 )
1308 target_thread_file=${enable_threads}
1309 ;;
1310 *)
1311 echo "${enable_threads} is an unknown thread package" 1>&2
1312 exit 1
1313 ;;
1314 esac
1315
1316 if test x${thread_file} = x; then
1317 # No thread file set by target-specific clauses in config.gcc,
1318 # so use file chosen by default logic above
1319 thread_file=${target_thread_file}
1320 fi
1321
1322 # Make gthr-default.h if we have a thread file.
1323 gthread_flags=
1324 if test $thread_file != single; then
1325 rm -f gthr-default.h
1326 echo "#include \"gthr-${thread_file}.h\"" > gthr-default.h
1327 gthread_flags=-DHAVE_GTHR_DEFAULT
1328 fi
1329 AC_SUBST(gthread_flags)
1330
1331 # --------
1332 # UNSORTED
1333 # --------
1334
1335 use_cxa_atexit=no
1336 if test x$enable___cxa_atexit = xyes || \
1337 test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
1338 if test x$host = x$target; then
1339 case $host in
1340 # mingw32 doesn't have __cxa_atexit but uses atexit registration
1341 # keyed to flag_use_cxa_atexit
1342 *-*-mingw32*)
1343 use_cxa_atexit=yes
1344 ;;
1345 *)
1346 AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes],
1347 [echo "__cxa_atexit can't be enabled on this target"])
1348 ;;
1349 esac
1350 else
1351 # We can't check for __cxa_atexit when building a cross, so assume
1352 # it is available
1353 use_cxa_atexit=yes
1354 fi
1355 if test x$use_cxa_atexit = xyes; then
1356 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 2,
1357 [Define if you want to use __cxa_atexit, rather than atexit, to
1358 register C++ destructors for local statics and global objects.
1359 This is essential for fully standards-compliant handling of
1360 destructors, but requires __cxa_atexit in libc.])
1361 fi
1362 fi
1363
1364 use_getipinfo=yes
1365 if test x$with_system_libunwind = xyes; then
1366 if test x$host = x$target; then
1367 AC_SEARCH_LIBS(_Unwind_GetIPInfo, unwind,, [use_getipinfo=no])
1368 fi
1369 fi
1370 GCC_TARGET_TEMPLATE(HAVE_GETIPINFO)
1371 if test x$use_getipinfo = xyes; then
1372 AC_DEFINE(HAVE_GETIPINFO, 1,
1373 [Define to 1 if system unwind library has _Unwind_GetIPInfo.])
1374 else
1375 echo "The system unwind library does not support _Unwind_GetIPInfo."
1376 fi
1377
1378 # Look for a file containing extra machine modes.
1379 if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
1380 extra_modes_file='$(srcdir)'/config/${extra_modes}
1381 AC_SUBST(extra_modes_file)
1382 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "config/$extra_modes",
1383 [Define to the name of a file containing a list of extra machine modes
1384 for this architecture.])
1385 fi
1386
1387 # Convert extra_options into a form suitable for Makefile use.
1388 extra_opt_files=
1389 for f in $extra_options; do
1390 extra_opt_files="$extra_opt_files \$(srcdir)/config/$f"
1391 done
1392 AC_SUBST(extra_opt_files)
1393
1394 # auto-host.h is the file containing items generated by autoconf and is
1395 # the first file included by config.h.
1396 # If host=build, it is correct to have bconfig include auto-host.h
1397 # as well. If host!=build, we are in error and need to do more
1398 # work to find out the build config parameters.
1399 if test x$host = x$build
1400 then
1401 build_auto=auto-host.h
1402 else
1403 # We create a subdir, then run autoconf in the subdir.
1404 # To prevent recursion we set host and build for the new
1405 # invocation of configure to the build for this invocation
1406 # of configure.
1407 tempdir=build.$$
1408 rm -rf $tempdir
1409 mkdir $tempdir
1410 cd $tempdir
1411 case ${srcdir} in
1412 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
1413 *) realsrcdir=../${srcdir};;
1414 esac
1415 saved_CFLAGS="${CFLAGS}"
1416 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
1417 ${realsrcdir}/configure \
1418 --enable-languages=${enable_languages-all} \
1419 --target=$target_alias --host=$build_alias --build=$build_alias
1420 CFLAGS="${saved_CFLAGS}"
1421
1422 # We just finished tests for the build machine, so rename
1423 # the file auto-build.h in the gcc directory.
1424 mv auto-host.h ../auto-build.h
1425 cd ..
1426 rm -rf $tempdir
1427 build_auto=auto-build.h
1428 fi
1429 AC_SUBST(build_subdir)
1430
1431 tm_file="${tm_file} defaults.h"
1432 tm_p_file="${tm_p_file} tm-preds.h"
1433 host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
1434 build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
1435 # We don't want ansidecl.h in target files, write code there in ISO/GNU C.
1436 # put this back in temporarily.
1437 xm_file="auto-host.h ansidecl.h ${xm_file}"
1438
1439 # --------
1440 # UNSORTED
1441 # --------
1442
1443 changequote(,)dnl
1444 # Compile in configure arguments.
1445 if test -f configargs.h ; then
1446 # Being re-configured.
1447 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
1448 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
1449 else
1450 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
1451 fi
1452
1453 # Double all backslashes and backslash all quotes to turn
1454 # gcc_config_arguments into a C string.
1455 sed -e 's/\\/\\\\/g; s/"/\\"/g' <<EOF >conftest.out
1456 $gcc_config_arguments
1457 EOF
1458 gcc_config_arguments_str=`cat conftest.out`
1459 rm -f conftest.out
1460
1461 cat > configargs.h <<EOF
1462 /* Generated automatically. */
1463 static const char configuration_arguments[] = "$gcc_config_arguments_str";
1464 static const char thread_model[] = "$thread_file";
1465
1466 static const struct {
1467 const char *name, *value;
1468 } configure_default_options[] = $configure_default_options;
1469 EOF
1470 changequote([,])dnl
1471
1472 # Internationalization
1473 ZW_GNU_GETTEXT_SISTER_DIR
1474
1475 # If LIBINTL contains LIBICONV, then clear LIBICONV so we don't get
1476 # -liconv on the link line twice.
1477 case "$LIBINTL" in *$LIBICONV*)
1478 LIBICONV= ;;
1479 esac
1480
1481 AC_ARG_ENABLE(secureplt,
1482 [ --enable-secureplt enable -msecure-plt by default for PowerPC],
1483 [], [])
1484
1485 # Windows32 Registry support for specifying GCC installation paths.
1486 AC_ARG_ENABLE(win32-registry,
1487 [ --disable-win32-registry
1488 disable lookup of installation paths in the
1489 Registry on Windows hosts
1490 --enable-win32-registry enable registry lookup (default)
1491 --enable-win32-registry=KEY
1492 use KEY instead of GCC version as the last portion
1493 of the registry key],,)
1494
1495 case $host_os in
1496 win32 | pe | cygwin* | mingw32* | uwin*)
1497 if test "x$enable_win32_registry" != xno; then
1498 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32,, [enable_win32_registry=no])
1499 fi
1500
1501 if test "x$enable_win32_registry" != xno; then
1502 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
1503 [Define to 1 if installation paths should be looked up in the Windows
1504 Registry. Ignored on non-Windows hosts.])
1505
1506 if test "x$enable_win32_registry" != xyes \
1507 && test "x$enable_win32_registry" != x; then
1508 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$enable_win32_registry",
1509 [Define to be the last component of the Windows registry key under which
1510 to look for installation paths. The full key used will be
1511 HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
1512 The default is the GCC version number.])
1513 fi
1514 fi
1515 ;;
1516 esac
1517
1518 # Get an absolute path to the GCC top-level source directory
1519 holddir=`${PWDCMD-pwd}`
1520 cd $srcdir
1521 topdir=`${PWDCMD-pwd}`
1522 cd $holddir
1523
1524 # Conditionalize the makefile for this host machine.
1525 xmake_file=
1526 for f in ${host_xmake_file}
1527 do
1528 if test -f ${srcdir}/config/$f
1529 then
1530 xmake_file="${xmake_file} \$(srcdir)/config/$f"
1531 fi
1532 done
1533
1534 # Conditionalize the makefile for this target machine.
1535 tmake_file_=
1536 for f in ${tmake_file}
1537 do
1538 if test -f ${srcdir}/config/$f
1539 then
1540 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
1541 fi
1542 done
1543 tmake_file="${tmake_file_}"
1544
1545 # This is a terrible hack which will go away some day.
1546 host_cc_for_libada=${CC}
1547 AC_SUBST(host_cc_for_libada)
1548
1549 out_object_file=`basename $out_file .c`.o
1550
1551 tm_file_list="options.h"
1552 tm_include_list="options.h"
1553 for f in $tm_file; do
1554 case $f in
1555 ./* )
1556 f=`echo $f | sed 's/^..//'`
1557 tm_file_list="${tm_file_list} $f"
1558 tm_include_list="${tm_include_list} $f"
1559 ;;
1560 defaults.h )
1561 tm_file_list="${tm_file_list} \$(srcdir)/$f"
1562 tm_include_list="${tm_include_list} $f"
1563 ;;
1564 * )
1565 tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
1566 tm_include_list="${tm_include_list} config/$f"
1567 ;;
1568 esac
1569 done
1570
1571 tm_p_file_list=
1572 tm_p_include_list=
1573 for f in $tm_p_file; do
1574 case $f in
1575 tm-preds.h )
1576 tm_p_file_list="${tm_p_file_list} $f"
1577 tm_p_include_list="${tm_p_include_list} $f"
1578 ;;
1579 * )
1580 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
1581 tm_p_include_list="${tm_p_include_list} config/$f"
1582 esac
1583 done
1584
1585 xm_file_list=
1586 xm_include_list=
1587 for f in $xm_file; do
1588 case $f in
1589 ansidecl.h )
1590 xm_file_list="${xm_file_list} \$(srcdir)/../include/$f"
1591 xm_include_list="${xm_include_list} $f"
1592 ;;
1593 auto-host.h )
1594 xm_file_list="${xm_file_list} $f"
1595 xm_include_list="${xm_include_list} $f"
1596 ;;
1597 * )
1598 xm_file_list="${xm_file_list} \$(srcdir)/config/$f"
1599 xm_include_list="${xm_include_list} config/$f"
1600 ;;
1601 esac
1602 done
1603
1604 host_xm_file_list=
1605 host_xm_include_list=
1606 for f in $host_xm_file; do
1607 case $f in
1608 ansidecl.h )
1609 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/$f"
1610 host_xm_include_list="${host_xm_include_list} $f"
1611 ;;
1612 auto-host.h )
1613 host_xm_file_list="${host_xm_file_list} $f"
1614 host_xm_include_list="${host_xm_include_list} $f"
1615 ;;
1616 * )
1617 host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f"
1618 host_xm_include_list="${host_xm_include_list} config/$f"
1619 ;;
1620 esac
1621 done
1622
1623 build_xm_file_list=
1624 for f in $build_xm_file; do
1625 case $f in
1626 ansidecl.h )
1627 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/$f"
1628 build_xm_include_list="${build_xm_include_list} $f"
1629 ;;
1630 auto-build.h | auto-host.h )
1631 build_xm_file_list="${build_xm_file_list} $f"
1632 build_xm_include_list="${build_xm_include_list} $f"
1633 ;;
1634 * )
1635 build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f"
1636 build_xm_include_list="${build_xm_include_list} config/$f"
1637 ;;
1638 esac
1639 done
1640
1641 # Define macro CROSS_DIRECTORY_STRUCTURE in compilation if this is a
1642 # cross-compiler which does not use the native headers and libraries.
1643 # Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
1644 CROSS= AC_SUBST(CROSS)
1645 ALL=all.internal AC_SUBST(ALL)
1646 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
1647
1648 if test "x$with_build_sysroot" != x; then
1649 build_system_header_dir=$with_build_sysroot'$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
1650 else
1651 # This value is used, even on a native system, because
1652 # CROSS_SYSTEM_HEADER_DIR is just
1653 # $(TARGET_SYSTEM_ROOT)$(NATIVE_SYSTEM_HEADER_DIR).
1654 build_system_header_dir='$(CROSS_SYSTEM_HEADER_DIR)'
1655 fi
1656
1657 if test x$host != x$target
1658 then
1659 CROSS="-DCROSS_DIRECTORY_STRUCTURE"
1660 ALL=all.cross
1661 SYSTEM_HEADER_DIR=$build_system_header_dir
1662 case "$host","$target" in
1663 # Darwin crosses can use the host system's libraries and headers,
1664 # because of the fat library support. Of course, it must be the
1665 # same version of Darwin on both sides. Allow the user to
1666 # just say --target=foo-darwin without a version number to mean
1667 # "the version on this system".
1668 *-*-darwin*,*-*-darwin*)
1669 hostos=`echo $host | sed 's/.*-darwin/darwin/'`
1670 targetos=`echo $target | sed 's/.*-darwin/darwin/'`
1671 if test $hostos = $targetos -o $targetos = darwin ; then
1672 CROSS=
1673 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)'
1674 with_headers=yes
1675 fi
1676 ;;
1677
1678 i?86-*-*,x86_64-*-* \
1679 | powerpc*-*-*,powerpc64*-*-*)
1680 CROSS="$CROSS -DNATIVE_CROSS" ;;
1681 esac
1682 elif test "x$TARGET_SYSTEM_ROOT" != x; then
1683 SYSTEM_HEADER_DIR=$build_system_header_dir
1684 fi
1685
1686 # If this is a cross-compiler that does not
1687 # have its own set of headers then define
1688 # inhibit_libc
1689
1690 # If this is using newlib, without having the headers available now,
1691 # then define inhibit_libc in LIBGCC2_CFLAGS.
1692 # This prevents libgcc2 from containing any code which requires libc
1693 # support.
1694 inhibit_libc=false
1695 if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
1696 test x$with_newlib = xyes ; } &&
1697 { test "x$with_headers" = x || test "x$with_headers" = xno ; } ; then
1698 inhibit_libc=true
1699 fi
1700 AC_SUBST(inhibit_libc)
1701
1702 # When building gcc with a cross-compiler, we need to adjust things so
1703 # that the generator programs are still built with the native compiler.
1704 # Also, we cannot run fixincludes or fix-header.
1705
1706 # These are the normal (build=host) settings:
1707 CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
1708 BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
1709 STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
1710
1711 # Possibly disable fixproto, on a per-target basis.
1712 case ${use_fixproto} in
1713 no)
1714 STMP_FIXPROTO=
1715 ;;
1716 yes)
1717 STMP_FIXPROTO=stmp-fixproto
1718 ;;
1719 esac
1720 AC_SUBST(STMP_FIXPROTO)
1721
1722 # And these apply if build != host, or we are generating coverage data
1723 if test x$build != x$host || test "x$coverage_flags" != x
1724 then
1725 BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS_FOR_BUILD)'
1726
1727 if test "x$TARGET_SYSTEM_ROOT" = x; then
1728 if test "x$STMP_FIXPROTO" != x; then
1729 STMP_FIXPROTO=stmp-install-fixproto
1730 fi
1731 fi
1732 fi
1733
1734 # Expand extra_headers to include complete path.
1735 # This substitutes for lots of t-* files.
1736 extra_headers_list=
1737 # Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers.
1738 for file in ${extra_headers} ; do
1739 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
1740 done
1741
1742 # Define collect2 in Makefile.
1743 case $host_can_use_collect2 in
1744 no) collect2= ;;
1745 *) collect2='collect2$(exeext)' ;;
1746 esac
1747 AC_SUBST([collect2])
1748
1749 # Add a definition of USE_COLLECT2 if system wants one.
1750 case $use_collect2 in
1751 no) use_collect2= ;;
1752 "") ;;
1753 *)
1754 host_xm_defines="${host_xm_defines} USE_COLLECT2"
1755 xm_defines="${xm_defines} USE_COLLECT2"
1756 case $host_can_use_collect2 in
1757 no)
1758 AC_MSG_ERROR([collect2 is required but cannot be built on this system])
1759 ;;
1760 esac
1761 ;;
1762 esac
1763
1764 # ---------------------------
1765 # Assembler & linker features
1766 # ---------------------------
1767
1768 # Identify the assembler which will work hand-in-glove with the newly
1769 # built GCC, so that we can examine its features. This is the assembler
1770 # which will be driven by the driver program.
1771 #
1772 # If build != host, and we aren't building gas in-tree, we identify a
1773 # build->target assembler and hope that it will have the same features
1774 # as the host->target assembler we'll be using.
1775 gcc_cv_gas_major_version=
1776 gcc_cv_gas_minor_version=
1777 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
1778
1779 m4_pattern_allow([AS_FOR_TARGET])dnl
1780 AS_VAR_SET_IF(gcc_cv_as,, [
1781 if test -x "$DEFAULT_ASSEMBLER"; then
1782 gcc_cv_as="$DEFAULT_ASSEMBLER"
1783 elif test -f $gcc_cv_as_gas_srcdir/configure.in \
1784 && test -f ../gas/Makefile \
1785 && test x$build = x$host; then
1786 gcc_cv_as=../gas/as-new$build_exeext
1787 elif test -x as$build_exeext; then
1788 # Build using assembler in the current directory.
1789 gcc_cv_as=./as$build_exeext
1790 elif test -x $AS_FOR_TARGET; then
1791 gcc_cv_as="$AS_FOR_TARGET"
1792 else
1793 AC_PATH_PROG(gcc_cv_as, $AS_FOR_TARGET)
1794 fi])
1795
1796 ORIGINAL_AS_FOR_TARGET=$gcc_cv_as
1797 AC_SUBST(ORIGINAL_AS_FOR_TARGET)
1798 case "$ORIGINAL_AS_FOR_TARGET" in
1799 ./as | ./as$build_exeext) ;;
1800 *) AC_CONFIG_FILES(as:exec-tool.in, [chmod +x as]) ;;
1801 esac
1802
1803 AC_MSG_CHECKING(what assembler to use)
1804 if test "$gcc_cv_as" = ../gas/as-new$build_exeext; then
1805 # Single tree build which includes gas. We want to prefer it
1806 # over whatever linker top-level may have detected, since
1807 # we'll use what we're building after installation anyway.
1808 AC_MSG_RESULT(newly built gas)
1809 in_tree_gas=yes
1810 _gcc_COMPUTE_GAS_VERSION
1811 in_tree_gas_is_elf=no
1812 if grep 'obj_format = elf' ../gas/Makefile > /dev/null \
1813 || (grep 'obj_format = multi' ../gas/Makefile \
1814 && grep 'extra_objects =.* obj-elf' ../gas/Makefile) > /dev/null
1815 then
1816 in_tree_gas_is_elf=yes
1817 fi
1818 else
1819 AC_MSG_RESULT($gcc_cv_as)
1820 in_tree_gas=no
1821 fi
1822
1823 # Identify the linker which will work hand-in-glove with the newly
1824 # built GCC, so that we can examine its features. This is the linker
1825 # which will be driven by the driver program.
1826 #
1827 # If build != host, and we aren't building gas in-tree, we identify a
1828 # build->target linker and hope that it will have the same features
1829 # as the host->target linker we'll be using.
1830 gcc_cv_gld_major_version=
1831 gcc_cv_gld_minor_version=
1832 gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
1833 gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
1834
1835 AS_VAR_SET_IF(gcc_cv_ld,, [
1836 if test -x "$DEFAULT_LINKER"; then
1837 gcc_cv_ld="$DEFAULT_LINKER"
1838 elif test -f $gcc_cv_ld_gld_srcdir/configure.in \
1839 && test -f ../ld/Makefile \
1840 && test x$build = x$host; then
1841 gcc_cv_ld=../ld/ld-new$build_exeext
1842 elif test -x collect-ld$build_exeext; then
1843 # Build using linker in the current directory.
1844 gcc_cv_ld=./collect-ld$build_exeext
1845 elif test -x $LD_FOR_TARGET; then
1846 gcc_cv_ld="$LD_FOR_TARGET"
1847 else
1848 AC_PATH_PROG(gcc_cv_ld, $LD_FOR_TARGET)
1849 fi])
1850
1851 ORIGINAL_LD_FOR_TARGET=$gcc_cv_ld
1852 AC_SUBST(ORIGINAL_LD_FOR_TARGET)
1853 case "$ORIGINAL_LD_FOR_TARGET" in
1854 ./collect-ld | ./collect-ld$build_exeext) ;;
1855 *) AC_CONFIG_FILES(collect-ld:exec-tool.in, [chmod +x collect-ld]) ;;
1856 esac
1857
1858 AC_MSG_CHECKING(what linker to use)
1859 if test "$gcc_cv_ld" = ../ld/ld-new$build_exeext; then
1860 # Single tree build which includes ld. We want to prefer it
1861 # over whatever linker top-level may have detected, since
1862 # we'll use what we're building after installation anyway.
1863 AC_MSG_RESULT(newly built ld)
1864 in_tree_ld=yes
1865 in_tree_ld_is_elf=no
1866 if (grep 'EMUL = .*elf' ../ld/Makefile \
1867 || grep 'EMUL = .*linux' ../ld/Makefile \
1868 || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then
1869 in_tree_ld_is_elf=yes
1870 fi
1871 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
1872 do
1873 changequote(,)dnl
1874 gcc_cv_gld_version=`sed -n -e 's/^[ ]*\(VERSION=[0-9]*\.[0-9]*.*\)/\1/p' < $f`
1875 if test x$gcc_cv_gld_version != x; then
1876 break
1877 fi
1878 done
1879 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
1880 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
1881 changequote([,])dnl
1882 else
1883 AC_MSG_RESULT($gcc_cv_ld)
1884 in_tree_ld=no
1885 fi
1886
1887 # Figure out what nm we will be using.
1888 gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
1889 AS_VAR_SET_IF(gcc_cv_nm,, [
1890 if test -f $gcc_cv_binutils_srcdir/configure.in \
1891 && test -f ../binutils/Makefile \
1892 && test x$build = x$host; then
1893 gcc_cv_nm=../binutils/nm-new$build_exeext
1894 elif test -x nm$build_exeext; then
1895 gcc_cv_nm=./nm$build_exeext
1896 elif test -x $NM_FOR_TARGET; then
1897 gcc_cv_nm="$NM_FOR_TARGET"
1898 else
1899 AC_PATH_PROG(gcc_cv_nm, $NM_FOR_TARGET)
1900 fi])
1901
1902 AC_MSG_CHECKING(what nm to use)
1903 if test "$gcc_cv_nm" = ../binutils/nm-new$build_exeext; then
1904 # Single tree build which includes binutils.
1905 AC_MSG_RESULT(newly built nm)
1906 in_tree_nm=yes
1907 else
1908 AC_MSG_RESULT($gcc_cv_nm)
1909 in_tree_nm=no
1910 fi
1911
1912 ORIGINAL_NM_FOR_TARGET=$gcc_cv_nm
1913 AC_SUBST(ORIGINAL_NM_FOR_TARGET)
1914 case "$ORIGINAL_NM_FOR_TARGET" in
1915 ./nm | ./nm$build_exeext) ;;
1916 *) AC_CONFIG_FILES(nm:exec-tool.in, [chmod +x nm]) ;;
1917 esac
1918
1919
1920 # Figure out what objdump we will be using.
1921 AS_VAR_SET_IF(gcc_cv_objdump,, [
1922 if test -f $gcc_cv_binutils_srcdir/configure.in \
1923 && test -f ../binutils/Makefile \
1924 && test x$build = x$host; then
1925 # Single tree build which includes binutils.
1926 gcc_cv_objdump=../binutils/objdump$build_exeext
1927 elif test -x objdump$build_exeext; then
1928 gcc_cv_objdump=./objdump$build_exeext
1929 elif test -x $OBJDUMP_FOR_TARGET; then
1930 gcc_cv_objdump="$OBJDUMP_FOR_TARGET"
1931 else
1932 AC_PATH_PROG(gcc_cv_objdump, $OBJDUMP_FOR_TARGET)
1933 fi])
1934
1935 AC_MSG_CHECKING(what objdump to use)
1936 if test "$gcc_cv_objdump" = ../binutils/objdump$build_exeext; then
1937 # Single tree build which includes binutils.
1938 AC_MSG_RESULT(newly built objdump)
1939 elif test x$gcc_cv_objdump = x; then
1940 AC_MSG_RESULT(not found)
1941 else
1942 AC_MSG_RESULT($gcc_cv_objdump)
1943 fi
1944
1945 # Figure out what assembler alignment features are present.
1946 gcc_GAS_CHECK_FEATURE([.balign and .p2align], gcc_cv_as_balign_and_p2align,
1947 [2,6,0],,
1948 [.balign 4
1949 .p2align 2],,
1950 [AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN, 1,
1951 [Define if your assembler supports .balign and .p2align.])])
1952
1953 gcc_GAS_CHECK_FEATURE([.p2align with maximum skip], gcc_cv_as_max_skip_p2align,
1954 [2,8,0],,
1955 [.p2align 4,,7],,
1956 [AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN, 1,
1957 [Define if your assembler supports specifying the maximum number
1958 of bytes to skip when using the GAS .p2align command.])])
1959
1960 gcc_GAS_CHECK_FEATURE([.literal16], gcc_cv_as_literal16,
1961 [2,8,0],,
1962 [.literal16],,
1963 [AC_DEFINE(HAVE_GAS_LITERAL16, 1,
1964 [Define if your assembler supports .literal16.])])
1965
1966 gcc_GAS_CHECK_FEATURE([working .subsection -1], gcc_cv_as_subsection_m1,
1967 [elf,2,9,0],,
1968 [conftest_label1: .word 0
1969 .subsection -1
1970 conftest_label2: .word 0
1971 .previous],
1972 [if test x$gcc_cv_nm != x; then
1973 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
1974 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
1975 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1
1976 then :
1977 else gcc_cv_as_subsection_m1=yes
1978 fi
1979 rm -f conftest.nm1 conftest.nm2
1980 fi],
1981 [AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
1982 [Define if your assembler supports .subsection and .subsection -1 starts
1983 emitting at the beginning of your section.])])
1984
1985 gcc_GAS_CHECK_FEATURE([.weak], gcc_cv_as_weak,
1986 [2,2,0],,
1987 [ .weak foobar],,
1988 [AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])])
1989
1990 gcc_GAS_CHECK_FEATURE([.weakref], gcc_cv_as_weakref,
1991 [2,17,0],,
1992 [ .weakref foobar, barfnot],,
1993 [AC_DEFINE(HAVE_GAS_WEAKREF, 1, [Define if your assembler supports .weakref.])])
1994
1995 gcc_GAS_CHECK_FEATURE([.nsubspa comdat], gcc_cv_as_nsubspa_comdat,
1996 [2,15,91],,
1997 [ .SPACE $TEXT$
1998 .NSUBSPA $CODE$,COMDAT],,
1999 [AC_DEFINE(HAVE_GAS_NSUBSPA_COMDAT, 1, [Define if your assembler supports .nsubspa comdat option.])])
2000
2001 # .hidden needs to be supported in both the assembler and the linker,
2002 # because GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
2003 # This is irritatingly difficult to feature test for; we have to check the
2004 # date string after the version number. If we've got an in-tree
2005 # ld, we don't know its patchlevel version, so we set the baseline at 2.13
2006 # to be safe.
2007 # The gcc_GAS_CHECK_FEATURE call just sets a cache variable.
2008 gcc_GAS_CHECK_FEATURE([.hidden], gcc_cv_as_hidden,
2009 [elf,2,13,0],,
2010 [ .hidden foobar
2011 foobar:])
2012
2013 AC_CACHE_CHECK(linker for .hidden support, gcc_cv_ld_hidden,
2014 [if test $in_tree_ld = yes ; then
2015 gcc_cv_ld_hidden=no
2016 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 \
2017 && test $in_tree_ld_is_elf = yes; then
2018 gcc_cv_ld_hidden=yes
2019 fi
2020 else
2021 gcc_cv_ld_hidden=yes
2022 ld_ver=`$gcc_cv_ld --version 2>/dev/null | sed 1q`
2023 if echo "$ld_ver" | grep GNU > /dev/null; then
2024 changequote(,)dnl
2025 ld_vers=`echo $ld_ver | sed -n \
2026 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
2027 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
2028 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)$,\1,p' \
2029 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
2030 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
2031 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ ].*$,\1,p' \
2032 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\.[0-9][0-9]*\)[ -].*$,\1,p'`
2033 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'`
2034 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
2035 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
2036 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
2037 if test 0"$ld_date" -lt 20020404; then
2038 if test -n "$ld_date"; then
2039 # If there was date string, but was earlier than 2002-04-04, fail
2040 gcc_cv_ld_hidden=no
2041 elif test -z "$ld_vers"; then
2042 # If there was no date string nor ld version number, something is wrong
2043 gcc_cv_ld_hidden=no
2044 else
2045 test -z "$ld_vers_patch" && ld_vers_patch=0
2046 if test "$ld_vers_major" -lt 2; then
2047 gcc_cv_ld_hidden=no
2048 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
2049 gcc_cv_ld_hidden="no"
2050 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 -a "$ld_vers_patch" -eq 0; then
2051 gcc_cv_ld_hidden=no
2052 fi
2053 fi
2054 changequote([,])dnl
2055 fi
2056 else
2057 case "${target}" in
2058 hppa64*-*-hpux* | ia64*-*-hpux*)
2059 gcc_cv_ld_hidden=yes
2060 ;;
2061 *)
2062 gcc_cv_ld_hidden=no
2063 ;;
2064 esac
2065 fi
2066 fi])
2067 libgcc_visibility=no
2068 AC_SUBST(libgcc_visibility)
2069 GCC_TARGET_TEMPLATE([HAVE_GAS_HIDDEN])
2070 if test $gcc_cv_as_hidden = yes && test $gcc_cv_ld_hidden = yes; then
2071 libgcc_visibility=yes
2072 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
2073 [Define if your assembler and linker support .hidden.])
2074 fi
2075
2076 # Check if we have .[us]leb128, and support symbol arithmetic with it.
2077 gcc_GAS_CHECK_FEATURE([.sleb128 and .uleb128], gcc_cv_as_leb128,
2078 [elf,2,11,0],,
2079 [ .data
2080 .uleb128 L2 - L1
2081 L1:
2082 .uleb128 1280
2083 .sleb128 -1010
2084 L2:],
2085 [# GAS versions before 2.11 do not support uleb128,
2086 # despite appearing to.
2087 # ??? There exists an elf-specific test that will crash
2088 # the assembler. Perhaps it's better to figure out whether
2089 # arbitrary sections are supported and try the test.
2090 as_ver=`$gcc_cv_as --version 2>/dev/null | sed 1q`
2091 if echo "$as_ver" | grep GNU > /dev/null; then
2092 changequote(,)dnl
2093 as_ver=`echo $as_ver | sed -e 's/GNU assembler \([0-9.][0-9.]*\).*/\1/'`
2094 as_major=`echo $as_ver | sed 's/\..*//'`
2095 as_minor=`echo $as_ver | sed 's/[^.]*\.\([0-9]*\).*/\1/'`
2096 changequote([,])dnl
2097 if test $as_major -eq 2 && test $as_minor -lt 11
2098 then :
2099 else gcc_cv_as_leb128=yes
2100 fi
2101 fi],
2102 [AC_DEFINE(HAVE_AS_LEB128, 1,
2103 [Define if your assembler supports .sleb128 and .uleb128.])])
2104
2105 # GAS versions up to and including 2.11.0 may mis-optimize
2106 # .eh_frame data.
2107 gcc_GAS_CHECK_FEATURE(eh_frame optimization, gcc_cv_as_eh_frame,
2108 [elf,2,12,0],,
2109 [ .text
2110 .LFB1:
2111 .4byte 0
2112 .L1:
2113 .4byte 0
2114 .LFE1:
2115 .section .eh_frame,"aw",@progbits
2116 __FRAME_BEGIN__:
2117 .4byte .LECIE1-.LSCIE1
2118 .LSCIE1:
2119 .4byte 0x0
2120 .byte 0x1
2121 .ascii "z\0"
2122 .byte 0x1
2123 .byte 0x78
2124 .byte 0x1a
2125 .byte 0x0
2126 .byte 0x4
2127 .4byte 1
2128 .p2align 1
2129 .LECIE1:
2130 .LSFDE1:
2131 .4byte .LEFDE1-.LASFDE1
2132 .LASFDE1:
2133 .4byte .LASFDE1-__FRAME_BEGIN__
2134 .4byte .LFB1
2135 .4byte .LFE1-.LFB1
2136 .byte 0x4
2137 .4byte .LFE1-.LFB1
2138 .byte 0x4
2139 .4byte .L1-.LFB1
2140 .LEFDE1:],
2141 [ dnl # For autoconf 2.5x, must protect trailing spaces with @&t@.
2142 cat > conftest.lit <<EOF
2143 0000 10000000 00000000 017a0001 781a0004 .........z..x...
2144 0010 01000000 12000000 18000000 00000000 ................
2145 0020 08000000 04080000 0044 .........D @&t@
2146 EOF
2147 cat > conftest.big <<EOF
2148 0000 00000010 00000000 017a0001 781a0004 .........z..x...
2149 0010 00000001 00000012 00000018 00000000 ................
2150 0020 00000008 04000000 0844 .........D @&t@
2151 EOF
2152 # If the assembler didn't choke, and we can objdump,
2153 # and we got the correct data, then succeed.
2154 # The text in the here-document typically retains its unix-style line
2155 # endings, while the output of objdump will use host line endings.
2156 # Therefore, use diff -b for the comparisons.
2157 if test x$gcc_cv_objdump != x \
2158 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
2159 | tail -3 > conftest.got \
2160 && { diff -b conftest.lit conftest.got > /dev/null 2>&1 \
2161 || diff -b conftest.big conftest.got > /dev/null 2>&1; }
2162 then
2163 gcc_cv_as_eh_frame=yes
2164 elif AC_TRY_COMMAND($gcc_cv_as -o conftest.o --traditional-format /dev/null); then
2165 gcc_cv_as_eh_frame=buggy
2166 else
2167 # Uh oh, what do we do now?
2168 gcc_cv_as_eh_frame=no
2169 fi])
2170
2171 if test $gcc_cv_as_eh_frame = buggy; then
2172 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
2173 [Define if your assembler mis-optimizes .eh_frame data.])
2174 fi
2175
2176 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2177 [elf,2,12,0], [--fatal-warnings],
2178 [.section .rodata.str, "aMS", @progbits, 1])
2179 if test $gcc_cv_as_shf_merge = no; then
2180 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
2181 [elf,2,12,0], [--fatal-warnings],
2182 [.section .rodata.str, "aMS", %progbits, 1])
2183 fi
2184 AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_MERGE,
2185 [`if test $gcc_cv_as_shf_merge = yes; then echo 1; else echo 0; fi`],
2186 [Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.])
2187
2188 gcc_GAS_CHECK_FEATURE(COMDAT group support, gcc_cv_as_comdat_group,
2189 [elf,2,16,0], [--fatal-warnings],
2190 [.section .text,"axG",@progbits,.foo,comdat])
2191 if test $gcc_cv_as_comdat_group = yes; then
2192 gcc_cv_as_comdat_group_percent=no
2193 else
2194 gcc_GAS_CHECK_FEATURE(COMDAT group support, gcc_cv_as_comdat_group_percent,
2195 [elf,2,16,0], [--fatal-warnings],
2196 [.section .text,"axG",%progbits,.foo,comdat])
2197 fi
2198 if test $in_tree_ld != yes && test x"$ld_vers" != x; then
2199 comdat_group=yes
2200 if test 0"$ld_date" -lt 20050308; then
2201 if test -n "$ld_date"; then
2202 # If there was date string, but was earlier than 2005-03-08, fail
2203 comdat_group=no
2204 elif test "$ld_vers_major" -lt 2; then
2205 comdat_group=no
2206 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
2207 comdat_group=no
2208 fi
2209 fi
2210 else
2211 # assume linkers other than GNU ld don't support COMDAT group
2212 comdat_group=no
2213 fi
2214 if test $comdat_group = no; then
2215 gcc_cv_as_comdat_group=no
2216 gcc_cv_as_comdat_group_percent=no
2217 fi
2218 AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
2219 [`if test $gcc_cv_as_comdat_group = yes || test $gcc_cv_as_comdat_group_percent = yes; then echo 1; else echo 0; fi`],
2220 [Define 0/1 if your assembler and linker support COMDAT groups.])
2221
2222 # Thread-local storage - the check is heavily parametrized.
2223 conftest_s=
2224 tls_first_major=
2225 tls_first_minor=
2226 tls_as_opt=
2227 case "$target" in
2228 changequote(,)dnl
2229 alpha*-*-*)
2230 conftest_s='
2231 .section ".tdata","awT",@progbits
2232 foo: .long 25
2233 .text
2234 ldq $27,__tls_get_addr($29) !literal!1
2235 lda $16,foo($29) !tlsgd!1
2236 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
2237 ldq $27,__tls_get_addr($29) !literal!2
2238 lda $16,foo($29) !tlsldm!2
2239 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
2240 ldq $1,foo($29) !gotdtprel
2241 ldah $2,foo($29) !dtprelhi
2242 lda $3,foo($2) !dtprello
2243 lda $4,foo($29) !dtprel
2244 ldq $1,foo($29) !gottprel
2245 ldah $2,foo($29) !tprelhi
2246 lda $3,foo($2) !tprello
2247 lda $4,foo($29) !tprel'
2248 tls_first_major=2
2249 tls_first_minor=13
2250 tls_as_opt=--fatal-warnings
2251 ;;
2252 frv*-*-*)
2253 conftest_s='
2254 .section ".tdata","awT",@progbits
2255 x: .long 25
2256 .text
2257 call #gettlsoff(x)'
2258 tls_first_major=2
2259 tls_first_minor=14
2260 ;;
2261 hppa*-*-linux*)
2262 conftest_s='
2263 t1: .reg %r20
2264 t2: .reg %r21
2265 gp: .reg %r19
2266 .section ".tdata","awT",@progbits
2267 foo: .long 25
2268 .text
2269 .align 4
2270 addil LT%foo-$tls_gdidx$,gp
2271 ldo RT%foo-$tls_gdidx$(%r1),%arg0
2272 b __tls_get_addr
2273 nop
2274 addil LT%foo-$tls_ldidx$,gp
2275 b __tls_get_addr
2276 ldo RT%foo-$tls_ldidx$(%r1),%arg0
2277 addil LR%foo-$tls_dtpoff$,%ret0
2278 ldo RR%foo-$tls_dtpoff$(%r1),%t1
2279 mfctl %cr27,%t1
2280 addil LT%foo-$tls_ieoff$,gp
2281 ldw RT%foo-$tls_ieoff$(%r1),%t2
2282 add %t1,%t2,%t3
2283 mfctl %cr27,%t1
2284 addil LR%foo-$tls_leoff$,%t1
2285 ldo RR%foo-$tls_leoff$(%r1),%t2'
2286 tls_first_major=2
2287 tls_first_minor=15
2288 tls_as_opt=--fatal-warnings
2289 ;;
2290 arm*-*-*)
2291 conftest_s='
2292 .section ".tdata","awT",%progbits
2293 foo: .long 25
2294 .text
2295 .word foo(gottpoff)
2296 .word foo(tpoff)
2297 .word foo(tlsgd)
2298 .word foo(tlsldm)
2299 .word foo(tlsldo)'
2300 tls_first_major=2
2301 tls_first_minor=17
2302 ;;
2303 i[34567]86-*-*)
2304 conftest_s='
2305 .section ".tdata","awT",@progbits
2306 foo: .long 25
2307 .text
2308 movl %gs:0, %eax
2309 leal foo@TLSGD(,%ebx,1), %eax
2310 leal foo@TLSLDM(%ebx), %eax
2311 leal foo@DTPOFF(%eax), %edx
2312 movl foo@GOTTPOFF(%ebx), %eax
2313 subl foo@GOTTPOFF(%ebx), %eax
2314 addl foo@GOTNTPOFF(%ebx), %eax
2315 movl foo@INDNTPOFF, %eax
2316 movl $foo@TPOFF, %eax
2317 subl $foo@TPOFF, %eax
2318 leal foo@NTPOFF(%ecx), %eax'
2319 tls_first_major=2
2320 tls_first_minor=14
2321 tls_as_opt=--fatal-warnings
2322 ;;
2323 x86_64-*-*)
2324 conftest_s='
2325 .section ".tdata","awT",@progbits
2326 foo: .long 25
2327 .text
2328 movq %fs:0, %rax
2329 leaq foo@TLSGD(%rip), %rdi
2330 leaq foo@TLSLD(%rip), %rdi
2331 leaq foo@DTPOFF(%rax), %rdx
2332 movq foo@GOTTPOFF(%rip), %rax
2333 movq $foo@TPOFF, %rax'
2334 tls_first_major=2
2335 tls_first_minor=14
2336 tls_as_opt=--fatal-warnings
2337 ;;
2338 ia64-*-*)
2339 conftest_s='
2340 .section ".tdata","awT",@progbits
2341 foo: data8 25
2342 .text
2343 addl r16 = @ltoff(@dtpmod(foo#)), gp
2344 addl r17 = @ltoff(@dtprel(foo#)), gp
2345 addl r18 = @ltoff(@tprel(foo#)), gp
2346 addl r19 = @dtprel(foo#), gp
2347 adds r21 = @dtprel(foo#), r13
2348 movl r23 = @dtprel(foo#)
2349 addl r20 = @tprel(foo#), gp
2350 adds r22 = @tprel(foo#), r13
2351 movl r24 = @tprel(foo#)'
2352 tls_first_major=2
2353 tls_first_minor=13
2354 tls_as_opt=--fatal-warnings
2355 ;;
2356 mips*-*-*)
2357 conftest_s='
2358 .section .tdata,"awT",@progbits
2359 x:
2360 .word 2
2361 .text
2362 addiu $4, $28, %tlsgd(x)
2363 addiu $4, $28, %tlsldm(x)
2364 lui $4, %dtprel_hi(x)
2365 addiu $4, $4, %dtprel_lo(x)
2366 lw $4, %gottprel(x)($28)
2367 lui $4, %tprel_hi(x)
2368 addiu $4, $4, %tprel_lo(x)'
2369 tls_first_major=2
2370 tls_first_minor=16
2371 tls_as_opt='-32 --fatal-warnings'
2372 ;;
2373 powerpc-*-*)
2374 conftest_s='
2375 .section ".tdata","awT",@progbits
2376 .align 2
2377 ld0: .space 4
2378 ld1: .space 4
2379 x1: .space 4
2380 x2: .space 4
2381 x3: .space 4
2382 .text
2383 addi 3,31,ld0@got@tlsgd
2384 bl __tls_get_addr
2385 addi 3,31,x1@got@tlsld
2386 bl __tls_get_addr
2387 addi 9,3,x1@dtprel
2388 addis 9,3,x2@dtprel@ha
2389 addi 9,9,x2@dtprel@l
2390 lwz 9,x3@got@tprel(31)
2391 add 9,9,x@tls
2392 addi 9,2,x1@tprel
2393 addis 9,2,x2@tprel@ha
2394 addi 9,9,x2@tprel@l'
2395 tls_first_major=2
2396 tls_first_minor=14
2397 tls_as_opt="-a32 --fatal-warnings"
2398 ;;
2399 powerpc64-*-*)
2400 conftest_s='
2401 .section ".tdata","awT",@progbits
2402 .align 3
2403 ld0: .space 8
2404 ld1: .space 8
2405 x1: .space 8
2406 x2: .space 8
2407 x3: .space 8
2408 .text
2409 addi 3,2,ld0@got@tlsgd
2410 bl .__tls_get_addr
2411 nop
2412 addi 3,2,ld1@toc
2413 bl .__tls_get_addr
2414 nop
2415 addi 3,2,x1@got@tlsld
2416 bl .__tls_get_addr
2417 nop
2418 addi 9,3,x1@dtprel
2419 bl .__tls_get_addr
2420 nop
2421 addis 9,3,x2@dtprel@ha
2422 addi 9,9,x2@dtprel@l
2423 bl .__tls_get_addr
2424 nop
2425 ld 9,x3@got@dtprel(2)
2426 add 9,9,3
2427 bl .__tls_get_addr
2428 nop'
2429 tls_first_major=2
2430 tls_first_minor=14
2431 tls_as_opt="-a64 --fatal-warnings"
2432 ;;
2433 s390-*-*)
2434 conftest_s='
2435 .section ".tdata","awT",@progbits
2436 foo: .long 25
2437 .text
2438 .long foo@TLSGD
2439 .long foo@TLSLDM
2440 .long foo@DTPOFF
2441 .long foo@NTPOFF
2442 .long foo@GOTNTPOFF
2443 .long foo@INDNTPOFF
2444 l %r1,foo@GOTNTPOFF(%r12)
2445 l %r1,0(%r1):tls_load:foo
2446 bas %r14,0(%r1,%r13):tls_gdcall:foo
2447 bas %r14,0(%r1,%r13):tls_ldcall:foo'
2448 tls_first_major=2
2449 tls_first_minor=14
2450 tls_as_opt="-m31 --fatal-warnings"
2451 ;;
2452 s390x-*-*)
2453 conftest_s='
2454 .section ".tdata","awT",@progbits
2455 foo: .long 25
2456 .text
2457 .quad foo@TLSGD
2458 .quad foo@TLSLDM
2459 .quad foo@DTPOFF
2460 .quad foo@NTPOFF
2461 .quad foo@GOTNTPOFF
2462 lg %r1,foo@GOTNTPOFF(%r12)
2463 larl %r1,foo@INDNTPOFF
2464 brasl %r14,__tls_get_offset@PLT:tls_gdcall:foo
2465 brasl %r14,__tls_get_offset@PLT:tls_ldcall:foo'
2466 tls_first_major=2
2467 tls_first_minor=14
2468 tls_as_opt="-m64 -Aesame --fatal-warnings"
2469 ;;
2470 sh-*-* | sh[34]-*-*)
2471 conftest_s='
2472 .section ".tdata","awT",@progbits
2473 foo: .long 25
2474 .text
2475 .long foo@TLSGD
2476 .long foo@TLSLDM
2477 .long foo@DTPOFF
2478 .long foo@GOTTPOFF
2479 .long foo@TPOFF'
2480 tls_first_major=2
2481 tls_first_minor=13
2482 tls_as_opt=--fatal-warnings
2483 ;;
2484 sparc*-*-*)
2485 case "$target" in
2486 sparc*-sun-solaris2.[56789]*)
2487 # TLS was introduced in the Solaris 9 4/04 release but
2488 # we do not enable it by default on Solaris 9 either.
2489 if test "x$enable_tls" = xyes ; then
2490 on_solaris=yes
2491 else
2492 enable_tls=no;
2493 fi
2494 ;;
2495 sparc*-sun-solaris2.*)
2496 on_solaris=yes
2497 ;;
2498 *)
2499 on_solaris=no
2500 ;;
2501 esac
2502 if test x$on_solaris = xyes && test x$gas_flag = xno; then
2503 conftest_s='
2504 .section ".tdata",#alloc,#write,#tls
2505 foo: .long 25
2506 .text
2507 sethi %tgd_hi22(foo), %o0
2508 add %o0, %tgd_lo10(foo), %o1
2509 add %l7, %o1, %o0, %tgd_add(foo)
2510 call __tls_get_addr, %tgd_call(foo)
2511 sethi %tldm_hi22(foo), %l1
2512 add %l1, %tldm_lo10(foo), %l2
2513 add %l7, %l2, %o0, %tldm_add(foo)
2514 call __tls_get_addr, %tldm_call(foo)
2515 sethi %tldo_hix22(foo), %l3
2516 xor %l3, %tldo_lox10(foo), %l4
2517 add %o0, %l4, %l5, %tldo_add(foo)
2518 sethi %tie_hi22(foo), %o3
2519 add %o3, %tie_lo10(foo), %o3
2520 ld [%l7 + %o3], %o2, %tie_ld(foo)
2521 add %g7, %o2, %o4, %tie_add(foo)
2522 sethi %tle_hix22(foo), %l1
2523 xor %l1, %tle_lox10(foo), %o5
2524 ld [%g7 + %o5], %o1'
2525 tls_first_major=0
2526 tls_first_minor=0
2527 else
2528 conftest_s='
2529 .section ".tdata","awT",@progbits
2530 foo: .long 25
2531 .text
2532 sethi %tgd_hi22(foo), %o0
2533 add %o0, %tgd_lo10(foo), %o1
2534 add %l7, %o1, %o0, %tgd_add(foo)
2535 call __tls_get_addr, %tgd_call(foo)
2536 sethi %tldm_hi22(foo), %l1
2537 add %l1, %tldm_lo10(foo), %l2
2538 add %l7, %l2, %o0, %tldm_add(foo)
2539 call __tls_get_addr, %tldm_call(foo)
2540 sethi %tldo_hix22(foo), %l3
2541 xor %l3, %tldo_lox10(foo), %l4
2542 add %o0, %l4, %l5, %tldo_add(foo)
2543 sethi %tie_hi22(foo), %o3
2544 add %o3, %tie_lo10(foo), %o3
2545 ld [%l7 + %o3], %o2, %tie_ld(foo)
2546 add %g7, %o2, %o4, %tie_add(foo)
2547 sethi %tle_hix22(foo), %l1
2548 xor %l1, %tle_lox10(foo), %o5
2549 ld [%g7 + %o5], %o1'
2550 tls_first_major=2
2551 tls_first_minor=14
2552 tls_as_opt="-32 --fatal-warnings"
2553 fi
2554 ;;
2555 changequote([,])dnl
2556 esac
2557 set_have_as_tls=no
2558 if test "x$enable_tls" = xno ; then
2559 : # TLS explicitly disabled.
2560 elif test "x$enable_tls" = xyes ; then
2561 set_have_as_tls=yes # TLS explicitly enabled.
2562 elif test -z "$tls_first_major"; then
2563 : # If we don't have a check, assume no support.
2564 else
2565 gcc_GAS_CHECK_FEATURE(thread-local storage support, gcc_cv_as_tls,
2566 [$tls_first_major,$tls_first_minor,0], [$tls_as_opt], [$conftest_s],,
2567 [set_have_as_tls=yes])
2568 fi
2569 if test $set_have_as_tls = yes ; then
2570 AC_DEFINE(HAVE_AS_TLS, 1,
2571 [Define if your assembler supports thread-local storage.])
2572 fi
2573
2574 # Target-specific assembler checks.
2575
2576 AC_MSG_CHECKING(linker -Bstatic/-Bdynamic option)
2577 gcc_cv_ld_static_dynamic=no
2578 if test $in_tree_ld = yes ; then
2579 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10; then
2580 gcc_cv_ld_static_dynamic=yes
2581 fi
2582 elif test x$gcc_cv_ld != x; then
2583 # Check if linker supports -Bstatic/-Bdynamic option
2584 if $gcc_cv_ld --help 2>/dev/null | grep -- -Bstatic > /dev/null \
2585 && $gcc_cv_ld --help 2>/dev/null | grep -- -Bdynamic > /dev/null; then
2586 gcc_cv_ld_static_dynamic=yes
2587 fi
2588 fi
2589 if test x"$gcc_cv_ld_static_dynamic" = xyes; then
2590 AC_DEFINE(HAVE_LD_STATIC_DYNAMIC, 1,
2591 [Define if your linker supports -Bstatic/-Bdynamic option.])
2592 fi
2593 AC_MSG_RESULT($gcc_cv_ld_static_dynamic)
2594
2595 if test x"$demangler_in_ld" = xyes; then
2596 AC_MSG_CHECKING(linker --demangle support)
2597 gcc_cv_ld_demangle=no
2598 if test $in_tree_ld = yes; then
2599 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 14 -o "$gcc_cv_gld_major_version" -gt 2; then \
2600 gcc_cv_ld_demangle=yes
2601 fi
2602 elif test x$gcc_cv_ld != x -a x"$gnu_ld" = xyes; then
2603 # Check if the GNU linker supports --demangle option
2604 if $gcc_cv_ld --help 2>/dev/null | grep no-demangle > /dev/null; then
2605 gcc_cv_ld_demangle=yes
2606 fi
2607 fi
2608 if test x"$gcc_cv_ld_demangle" = xyes; then
2609 AC_DEFINE(HAVE_LD_DEMANGLE, 1,
2610 [Define if your linker supports --demangle option.])
2611 fi
2612 AC_MSG_RESULT($gcc_cv_ld_demangle)
2613 fi
2614
2615 case "$target" in
2616 # All TARGET_ABI_OSF targets.
2617 alpha*-*-osf* | alpha*-*-linux* | alpha*-*-*bsd*)
2618 gcc_GAS_CHECK_FEATURE([explicit relocation support],
2619 gcc_cv_as_alpha_explicit_relocs, [2,12,0],,
2620 [ .set nomacro
2621 .text
2622 extbl $3, $2, $3 !lituse_bytoff!1
2623 ldq $2, a($29) !literal!1
2624 ldq $4, b($29) !literal!2
2625 ldq_u $3, 0($2) !lituse_base!1
2626 ldq $27, f($29) !literal!5
2627 jsr $26, ($27), f !lituse_jsr!5
2628 ldah $29, 0($26) !gpdisp!3
2629 lda $0, c($29) !gprel
2630 ldah $1, d($29) !gprelhigh
2631 lda $1, d($1) !gprellow
2632 lda $29, 0($29) !gpdisp!3],,
2633 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
2634 [Define if your assembler supports explicit relocations.])])
2635 gcc_GAS_CHECK_FEATURE([jsrdirect relocation support],
2636 gcc_cv_as_alpha_jsrdirect_relocs, [2,16,90],,
2637 [ .set nomacro
2638 .text
2639 ldq $27, a($29) !literal!1
2640 jsr $26, ($27), a !lituse_jsrdirect!1],,
2641 [AC_DEFINE(HAVE_AS_JSRDIRECT_RELOCS, 1,
2642 [Define if your assembler supports the lituse_jsrdirect relocation.])])
2643 ;;
2644
2645 cris-*-*)
2646 gcc_GAS_CHECK_FEATURE([-no-mul-bug-abort option],
2647 gcc_cv_as_cris_no_mul_bug,[2,15,91],
2648 [-no-mul-bug-abort], [.text],,
2649 [AC_DEFINE(HAVE_AS_NO_MUL_BUG_ABORT_OPTION, 1,
2650 [Define if your assembler supports the -no-mul-bug-abort option.])])
2651 ;;
2652
2653 sparc*-*-*)
2654 gcc_GAS_CHECK_FEATURE([.register], gcc_cv_as_sparc_register_op,,,
2655 [.register %g2, #scratch],,
2656 [AC_DEFINE(HAVE_AS_REGISTER_PSEUDO_OP, 1,
2657 [Define if your assembler supports .register.])])
2658
2659 gcc_GAS_CHECK_FEATURE([-relax option], gcc_cv_as_sparc_relax,,
2660 [-relax], [.text],,
2661 [AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
2662 [Define if your assembler supports -relax option.])])
2663
2664 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs],
2665 gcc_cv_as_sparc_ua_pcrel,,
2666 [-K PIC],
2667 [.text
2668 foo:
2669 nop
2670 .data
2671 .align 4
2672 .byte 0
2673 .uaword %r_disp32(foo)],
2674 [if test x$gcc_cv_ld != x \
2675 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
2676 gcc_cv_as_sparc_ua_pcrel=yes
2677 fi
2678 rm -f conftest],
2679 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
2680 [Define if your assembler and linker support unaligned PC relative relocs.])
2681
2682 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs against hidden symbols],
2683 gcc_cv_as_sparc_ua_pcrel_hidden,,
2684 [-K PIC],
2685 [.data
2686 .align 4
2687 .byte 0x31
2688 .uaword %r_disp32(foo)
2689 .byte 0x32, 0x33, 0x34
2690 .global foo
2691 .hidden foo
2692 foo:
2693 .skip 4],
2694 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
2695 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
2696 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
2697 | grep ' 31000000 07323334' > /dev/null 2>&1; then
2698 if $gcc_cv_objdump -R conftest 2> /dev/null \
2699 | grep 'DISP32' > /dev/null 2>&1; then
2700 :
2701 else
2702 gcc_cv_as_sparc_ua_pcrel_hidden=yes
2703 fi
2704 fi
2705 rm -f conftest],
2706 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
2707 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])])
2708 ]) # unaligned pcrel relocs
2709
2710 gcc_GAS_CHECK_FEATURE([offsetable %lo()],
2711 gcc_cv_as_sparc_offsetable_lo10,,
2712 [-xarch=v9],
2713 [.text
2714 or %g1, %lo(ab) + 12, %g1
2715 or %g1, %lo(ab + 12), %g1],
2716 [if test x$gcc_cv_objdump != x \
2717 && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \
2718 | grep ' 82106000 82106000' > /dev/null 2>&1; then
2719 gcc_cv_as_sparc_offsetable_lo10=yes
2720 fi],
2721 [AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
2722 [Define if your assembler supports offsetable %lo().])])
2723 ;;
2724
2725 changequote(,)dnl
2726 i[34567]86-*-* | x86_64-*-*)
2727 changequote([,])dnl
2728 case $target_os in
2729 cygwin* | pe | mingw32*)
2730 # Used for DWARF 2 in PE
2731 gcc_GAS_CHECK_FEATURE([.secrel32 relocs],
2732 gcc_cv_as_ix86_pe_secrel32,
2733 [2,15,91],,
2734 [.text
2735 foo: nop
2736 .data
2737 .secrel32 foo],
2738 [if test x$gcc_cv_ld != x \
2739 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1; then
2740 gcc_cv_as_ix86_pe_secrel32=yes
2741 fi
2742 rm -f conftest],
2743 [AC_DEFINE(HAVE_GAS_PE_SECREL32_RELOC, 1,
2744 [Define if your assembler and linker support 32-bit section relative relocs via '.secrel32 label'.])])
2745 ;;
2746 esac
2747
2748 gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
2749 gcc_cv_as_ix86_filds_fists,
2750 [2,9,0],, [filds mem; fists mem],,
2751 [AC_DEFINE(HAVE_GAS_FILDS_FISTS, 1,
2752 [Define if your assembler uses the new HImode fild and fist notation.])])
2753
2754 gcc_GAS_CHECK_FEATURE([cmov syntax],
2755 gcc_cv_as_ix86_cmov_sun_syntax,,,
2756 [cmovl.l %edx, %eax],,
2757 [AC_DEFINE(HAVE_AS_IX86_CMOV_SUN_SYNTAX, 1,
2758 [Define if your assembler supports the Sun syntax for cmov.])])
2759
2760 gcc_GAS_CHECK_FEATURE([ffreep mnemonic],
2761 gcc_cv_as_ix86_ffreep,,,
2762 [ffreep %st(1)],,
2763 [AC_DEFINE(HAVE_AS_IX86_FFREEP, 1,
2764 [Define if your assembler supports the ffreep mnemonic.])])
2765
2766 gcc_GAS_CHECK_FEATURE([sahf mnemonic],
2767 gcc_cv_as_ix86_sahf,,,
2768 [sahf],,
2769 [AC_DEFINE(HAVE_AS_IX86_SAHF, 1,
2770 [Define if your assembler supports the sahf mnemonic.])])
2771
2772 gcc_GAS_CHECK_FEATURE([different section symbol subtraction],
2773 gcc_cv_as_ix86_diff_sect_delta,,,
2774 [.section .rodata
2775 .L1:
2776 .long .L2-.L1
2777 .long .L3-.L1
2778 .text
2779 .L3: nop
2780 .L2: nop],,
2781 [AC_DEFINE(HAVE_AS_IX86_DIFF_SECT_DELTA, 1,
2782 [Define if your assembler supports the subtraction of symbols in different sections.])])
2783
2784 # This one is used unconditionally by i386.[ch]; it is to be defined
2785 # to 1 if the feature is present, 0 otherwise.
2786 gcc_GAS_CHECK_FEATURE([GOTOFF in data],
2787 gcc_cv_as_ix86_gotoff_in_data, [2,11,0],,
2788 [ .text
2789 .L0:
2790 nop
2791 .data
2792 .long .L0@GOTOFF])
2793 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
2794 [`if test $gcc_cv_as_ix86_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
2795 [Define true if the assembler supports '.long foo@GOTOFF'.])
2796 ;;
2797
2798 ia64*-*-*)
2799 gcc_GAS_CHECK_FEATURE([ltoffx and ldxmov relocs],
2800 gcc_cv_as_ia64_ltoffx_ldxmov_relocs, [2,14,0],,
2801 [ .text
2802 addl r15 = @ltoffx(x#), gp
2803 ;;
2804 ld8.mov r16 = [[r15]], x#],,
2805 [AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
2806 [Define if your assembler supports ltoffx and ldxmov relocations.])])
2807
2808 ;;
2809
2810 powerpc*-*-*)
2811 case $target in
2812 *-*-aix*) conftest_s=' .machine "pwr5"
2813 .csect .text[[PR]]
2814 mfcr 3,128';;
2815 *-*-darwin*)
2816 gcc_GAS_CHECK_FEATURE([.machine directive support],
2817 gcc_cv_as_machine_directive,,,
2818 [ .machine ppc7400])
2819 if test x$gcc_cv_as_machine_directive != xyes; then
2820 echo "*** This target requires an assembler supporting \".machine\"" >&2
2821 echo you can get it from: ftp://gcc.gnu.org/pub/gcc/infrastructure/cctools-528.5.dmg >&2
2822 test x$build = x$target && exit 1
2823 fi
2824 conftest_s=' .text
2825 mfcr r3,128';;
2826 *) conftest_s=' .machine power4
2827 .text
2828 mfcr 3,128';;
2829 esac
2830
2831 gcc_GAS_CHECK_FEATURE([mfcr field support],
2832 gcc_cv_as_powerpc_mfcrf, [2,14,0],,
2833 [$conftest_s],,
2834 [AC_DEFINE(HAVE_AS_MFCRF, 1,
2835 [Define if your assembler supports mfcr field.])])
2836
2837 case $target in
2838 *-*-aix*) conftest_s=' .machine "pwr5"
2839 .csect .text[[PR]]
2840 popcntb 3,3';;
2841 *) conftest_s=' .machine power5
2842 .text
2843 popcntb 3,3';;
2844 esac
2845
2846 gcc_GAS_CHECK_FEATURE([popcntb support],
2847 gcc_cv_as_powerpc_popcntb, [2,17,0],,
2848 [$conftest_s],,
2849 [AC_DEFINE(HAVE_AS_POPCNTB, 1,
2850 [Define if your assembler supports popcntb field.])])
2851
2852 case $target in
2853 *-*-aix*) conftest_s=' .machine "pwr5x"
2854 .csect .text[[PR]]
2855 frin 1,1';;
2856 *) conftest_s=' .machine power5
2857 .text
2858 frin 1,1';;
2859 esac
2860
2861 gcc_GAS_CHECK_FEATURE([fp round support],
2862 gcc_cv_as_powerpc_fprnd, [2,17,0],,
2863 [$conftest_s],,
2864 [AC_DEFINE(HAVE_AS_FPRND, 1,
2865 [Define if your assembler supports fprnd.])])
2866
2867 case $target in
2868 *-*-aix*) conftest_s=' .machine "pwr6"
2869 .csect .text[[PR]]
2870 mffgpr 1,3';;
2871 *) conftest_s=' .machine power6
2872 .text
2873 mffgpr 1,3';;
2874 esac
2875
2876 gcc_GAS_CHECK_FEATURE([move fp gpr support],
2877 gcc_cv_as_powerpc_mfpgpr, [9,99,0],,
2878 [$conftest_s],,
2879 [AC_DEFINE(HAVE_AS_MFPGPR, 1,
2880 [Define if your assembler supports mffgpr and mftgpr.])])
2881
2882 case $target in
2883 *-*-aix*) conftest_s=' .csect .text[[PR]]
2884 LCF..0:
2885 addis 11,30,_GLOBAL_OFFSET_TABLE_-LCF..0@ha';;
2886 *-*-darwin*)
2887 conftest_s=' .text
2888 LCF0:
2889 addis r11,r30,_GLOBAL_OFFSET_TABLE_-LCF0@ha';;
2890 *) conftest_s=' .text
2891 .LCF0:
2892 addis 11,30,_GLOBAL_OFFSET_TABLE_-.LCF0@ha';;
2893 esac
2894
2895 gcc_GAS_CHECK_FEATURE([rel16 relocs],
2896 gcc_cv_as_powerpc_rel16, [2,17,0], -a32,
2897 [$conftest_s],,
2898 [AC_DEFINE(HAVE_AS_REL16, 1,
2899 [Define if your assembler supports R_PPC_REL16 relocs.])])
2900
2901 case $target in
2902 *-*-aix*) conftest_s=' .machine "pwr6"
2903 .csect .text[[PR]]
2904 cmpb 3,4,5';;
2905 *) conftest_s=' .machine power6
2906 .text
2907 cmpb 3,4,5';;
2908 esac
2909
2910 gcc_GAS_CHECK_FEATURE([compare bytes support],
2911 gcc_cv_as_powerpc_cmpb, [9,99,0], -a32,
2912 [$conftest_s],,
2913 [AC_DEFINE(HAVE_AS_CMPB, 1,
2914 [Define if your assembler supports cmpb.])])
2915
2916 case $target in
2917 *-*-aix*) conftest_s=' .machine "pwr6"
2918 .csect .text[[PR]]
2919 dadd 1,2,3';;
2920 *) conftest_s=' .machine power6
2921 .text
2922 dadd 1,2,3';;
2923 esac
2924
2925 gcc_GAS_CHECK_FEATURE([decimal float support],
2926 gcc_cv_as_powerpc_dfp, [9,99,0], -a32,
2927 [$conftest_s],,
2928 [AC_DEFINE(HAVE_AS_DFP, 1,
2929 [Define if your assembler supports DFP instructions.])])
2930
2931 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
2932 gcc_cv_as_powerpc_gnu_attribute, [2,18,0],,
2933 [.gnu_attribute 4,1],,
2934 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
2935 [Define if your assembler supports .gnu_attribute.])])
2936 ;;
2937
2938 mips*-*-*)
2939 gcc_GAS_CHECK_FEATURE([explicit relocation support],
2940 gcc_cv_as_mips_explicit_relocs, [2,14,0],,
2941 [ lw $4,%gp_rel(foo)($4)],,
2942 [if test x$target_cpu_default = x
2943 then target_cpu_default=MASK_EXPLICIT_RELOCS
2944 else target_cpu_default="($target_cpu_default)|MASK_EXPLICIT_RELOCS"
2945 fi])
2946 gcc_GAS_CHECK_FEATURE([-mno-shared support],
2947 gcc_cv_as_mips_no_shared, [2,16,0], [-mno-shared], [nop],,
2948 [AC_DEFINE(HAVE_AS_NO_SHARED, 1,
2949 [Define if the assembler understands -mno-shared.])])
2950
2951 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
2952 gcc_cv_as_mips_gnu_attribute, [2,18,0],,
2953 [.gnu_attribute 4,1],,
2954 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
2955 [Define if your assembler supports .gnu_attribute.])])
2956
2957 gcc_GAS_CHECK_FEATURE([.dtprelword support],
2958 gcc_cv_as_mips_dtprelword, [2,18,0],,
2959 [.section .tdata,"awT",@progbits
2960 x:
2961 .word 2
2962 .text
2963 .dtprelword x+0x8000],,
2964 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
2965 [Define if your assembler supports .dtprelword.])])
2966 ;;
2967 esac
2968
2969 # Mips and HP-UX need the GNU assembler.
2970 # Linux on IA64 might be able to use the Intel assembler.
2971
2972 case "$target" in
2973 mips*-*-* | *-*-hpux* )
2974 if test x$gas_flag = xyes \
2975 || test x"$host" != x"$build" \
2976 || test ! -x "$gcc_cv_as" \
2977 || "$gcc_cv_as" -v < /dev/null 2>&1 | grep GNU > /dev/null; then
2978 :
2979 else
2980 echo "*** This configuration requires the GNU assembler" >&2
2981 exit 1
2982 fi
2983 ;;
2984 esac
2985
2986 # ??? Not all targets support dwarf2 debug_line, even within a version
2987 # of gas. Moreover, we need to emit a valid instruction to trigger any
2988 # info to the output file. So, as supported targets are added to gas 2.11,
2989 # add some instruction here to (also) show we expect this might work.
2990 # ??? Once 2.11 is released, probably need to add first known working
2991 # version to the per-target configury.
2992 case "$target" in
2993 i?86*-*-* | mips*-*-* | alpha*-*-* | powerpc*-*-* | sparc*-*-* | m68*-*-* \
2994 | x86_64*-*-* | hppa*-*-* | arm*-*-* | strongarm*-*-* | xscale*-*-* \
2995 | xstormy16*-*-* | cris-*-* | xtensa-*-* | bfin-*-* | score*-*-* | spu-*-*)
2996 insn="nop"
2997 ;;
2998 ia64*-*-* | s390*-*-*)
2999 insn="nop 0"
3000 ;;
3001 mmix-*-*)
3002 insn="swym 0"
3003 ;;
3004 esac
3005 if test x"$insn" != x; then
3006 conftest_s="\
3007 .file 1 \"conftest.s\"
3008 .loc 1 3 0
3009 $insn"
3010 gcc_GAS_CHECK_FEATURE([dwarf2 debug_line support],
3011 gcc_cv_as_dwarf2_debug_line,
3012 [elf,2,11,0],, [$conftest_s],
3013 [if test x$gcc_cv_objdump != x \
3014 && $gcc_cv_objdump -h conftest.o 2> /dev/null \
3015 | grep debug_line > /dev/null 2>&1; then
3016 gcc_cv_as_dwarf2_debug_line=yes
3017 fi])
3018
3019 # The .debug_line file table must be in the exact order that
3020 # we specified the files, since these indices are also used
3021 # by DW_AT_decl_file. Approximate this test by testing if
3022 # the assembler bitches if the same index is assigned twice.
3023 gcc_GAS_CHECK_FEATURE([buggy dwarf2 .file directive],
3024 gcc_cv_as_dwarf2_file_buggy,,,
3025 [ .file 1 "foo.s"
3026 .file 1 "bar.s"])
3027
3028 if test $gcc_cv_as_dwarf2_debug_line = yes \
3029 && test $gcc_cv_as_dwarf2_file_buggy = no; then
3030 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
3031 [Define if your assembler supports dwarf2 .file/.loc directives,
3032 and preserves file table indices exactly as given.])
3033 fi
3034
3035 gcc_GAS_CHECK_FEATURE([--gdwarf2 option],
3036 gcc_cv_as_gdwarf2_flag,
3037 [elf,2,11,0], [--gdwarf2], [$insn],,
3038 [AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
3039 [Define if your assembler supports the --gdwarf2 option.])])
3040
3041 gcc_GAS_CHECK_FEATURE([--gstabs option],
3042 gcc_cv_as_gstabs_flag,
3043 [elf,2,11,0], [--gstabs], [$insn],
3044 [# The native Solaris 9/Intel assembler doesn't understand --gstabs
3045 # and warns about it, but still exits successfully. So check for
3046 # this.
3047 if AC_TRY_COMMAND([$gcc_cv_as --gstabs -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null])
3048 then :
3049 else gcc_cv_as_gstabs_flag=yes
3050 fi],
3051 [AC_DEFINE(HAVE_AS_GSTABS_DEBUG_FLAG, 1,
3052 [Define if your assembler supports the --gstabs option.])])
3053 fi
3054
3055 AC_CACHE_CHECK([assembler for tolerance to line number 0],
3056 [gcc_cv_as_line_zero],
3057 [gcc_cv_as_line_zero=no
3058 if test $in_tree_gas = yes; then
3059 gcc_GAS_VERSION_GTE_IFELSE(2, 16, 91, [gcc_cv_as_line_zero=yes])
3060 elif test "x$gcc_cv_as" != x; then
3061 { echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
3062 if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&
3063 test "x`cat conftest.out`" = x
3064 then
3065 gcc_cv_as_line_zero=yes
3066 else
3067 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
3068 cat conftest.s >&AS_MESSAGE_LOG_FD
3069 echo "configure: error output was" >&AS_MESSAGE_LOG_FD
3070 cat conftest.out >&AS_MESSAGE_LOG_FD
3071 fi
3072 rm -f conftest.o conftest.s conftest.out
3073 fi])
3074 if test "x$gcc_cv_as_line_zero" = xyes; then
3075 AC_DEFINE([HAVE_AS_LINE_ZERO], 1,
3076 [Define if the assembler won't complain about a line such as # 0 "" 2.])
3077 fi
3078
3079 AC_MSG_CHECKING(linker read-only and read-write section mixing)
3080 gcc_cv_ld_ro_rw_mix=unknown
3081 if test $in_tree_ld = yes ; then
3082 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 10 -o "$gcc_cv_gld_major_version" -gt 2 \
3083 && test $in_tree_ld_is_elf = yes; then
3084 gcc_cv_ld_ro_rw_mix=read-write
3085 fi
3086 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
3087 echo '.section myfoosect, "a"' > conftest1.s
3088 echo '.section myfoosect, "aw"' > conftest2.s
3089 echo '.byte 1' >> conftest2.s
3090 echo '.section myfoosect, "a"' > conftest3.s
3091 echo '.byte 0' >> conftest3.s
3092 if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
3093 && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
3094 && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1 \
3095 && $gcc_cv_ld -shared -o conftest1.so conftest1.o \
3096 conftest2.o conftest3.o > /dev/null 2>&1; then
3097 gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
3098 | sed -e '/myfoosect/!d' -e N`
3099 if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
3100 if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
3101 gcc_cv_ld_ro_rw_mix=read-only
3102 else
3103 gcc_cv_ld_ro_rw_mix=read-write
3104 fi
3105 fi
3106 fi
3107 changequote(,)dnl
3108 rm -f conftest.* conftest[123].*
3109 changequote([,])dnl
3110 fi
3111 if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
3112 AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
3113 [Define if your linker links a mix of read-only
3114 and read-write sections into a read-write section.])
3115 fi
3116 AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
3117
3118 AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
3119 gcc_cv_ld_eh_frame_hdr=no
3120 if test $in_tree_ld = yes ; then
3121 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 \
3122 && test $in_tree_ld_is_elf = yes; then
3123 gcc_cv_ld_eh_frame_hdr=yes
3124 fi
3125 elif test x$gcc_cv_ld != x; then
3126 # Check if linker supports --eh-frame-hdr option
3127 if $gcc_cv_ld --help 2>/dev/null | grep eh-frame-hdr > /dev/null; then
3128 gcc_cv_ld_eh_frame_hdr=yes
3129 fi
3130 fi
3131 GCC_TARGET_TEMPLATE([HAVE_LD_EH_FRAME_HDR])
3132 if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
3133 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
3134 [Define if your linker supports --eh-frame-hdr option.])
3135 fi
3136 AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
3137
3138 AC_MSG_CHECKING(linker position independent executable support)
3139 gcc_cv_ld_pie=no
3140 if test $in_tree_ld = yes ; then
3141 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 15 -o "$gcc_cv_gld_major_version" -gt 2 \
3142 && test $in_tree_ld_is_elf = yes; then
3143 gcc_cv_ld_pie=yes
3144 fi
3145 elif test x$gcc_cv_ld != x; then
3146 # Check if linker supports -pie option
3147 if $gcc_cv_ld --help 2>/dev/null | grep -- -pie > /dev/null; then
3148 gcc_cv_ld_pie=yes
3149 fi
3150 fi
3151 if test x"$gcc_cv_ld_pie" = xyes; then
3152 AC_DEFINE(HAVE_LD_PIE, 1,
3153 [Define if your linker supports -pie option.])
3154 fi
3155 AC_MSG_RESULT($gcc_cv_ld_pie)
3156
3157 AC_MSG_CHECKING(linker EH-compatible garbage collection of sections)
3158 gcc_cv_ld_eh_gc_sections=no
3159 if test $in_tree_ld = yes ; then
3160 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 17 -o "$gcc_cv_gld_major_version" -gt 2 \
3161 && test $in_tree_ld_is_elf = yes; then
3162 gcc_cv_ld_eh_gc_sections=yes
3163 fi
3164 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
3165 cat > conftest.s <<EOF
3166 .section .text
3167 .globl _start
3168 .type _start, @function
3169 _start:
3170 .long foo
3171 .size _start, .-_start
3172 .section .text.foo,"ax",@progbits
3173 .type foo, @function
3174 foo:
3175 .long 0
3176 .size foo, .-foo
3177 .section .gcc_except_table.foo,"a",@progbits
3178 .L0:
3179 .long 0
3180 .section .eh_frame,"a",@progbits
3181 .long .L0
3182 EOF
3183 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
3184 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
3185 | grep "gc-sections option ignored" > /dev/null; then
3186 gcc_cv_ld_eh_gc_sections=no
3187 elif $gcc_cv_objdump -h conftest | grep gcc_except_table > /dev/null; then
3188 gcc_cv_ld_eh_gc_sections=yes
3189 # If no COMDAT groups, the compiler will emit .gnu.linkonce.t. sections.
3190 if test x$gcc_cv_as_comdat_group != xyes; then
3191 gcc_cv_ld_eh_gc_sections=no
3192 cat > conftest.s <<EOF
3193 .section .text
3194 .globl _start
3195 .type _start, @function
3196 _start:
3197 .long foo
3198 .size _start, .-_start
3199 .section .gnu.linkonce.t.foo,"ax",@progbits
3200 .type foo, @function
3201 foo:
3202 .long 0
3203 .size foo, .-foo
3204 .section .gcc_except_table.foo,"a",@progbits
3205 .L0:
3206 .long 0
3207 .section .eh_frame,"a",@progbits
3208 .long .L0
3209 EOF
3210 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
3211 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
3212 | grep "gc-sections option ignored" > /dev/null; then
3213 gcc_cv_ld_eh_gc_sections=no
3214 elif $gcc_cv_objdump -h conftest | grep gcc_except_table > /dev/null; then
3215 gcc_cv_ld_eh_gc_sections=yes
3216 fi
3217 fi
3218 fi
3219 fi
3220 fi
3221 rm -f conftest.s conftest.o conftest
3222 fi
3223 case "$target" in
3224 hppa*-*-linux*)
3225 # ??? This apparently exposes a binutils bug with PC-relative relocations.
3226 gcc_cv_ld_eh_gc_sections=no
3227 ;;
3228 esac
3229 if test x$gcc_cv_ld_eh_gc_sections = xyes; then
3230 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS, 1,
3231 [Define if your linker supports garbage collection of
3232 sections in presence of EH frames.])
3233 fi
3234 AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections)
3235
3236 # --------
3237 # UNSORTED
3238 # --------
3239
3240 AC_CACHE_CHECK(linker --as-needed support,
3241 gcc_cv_ld_as_needed,
3242 [gcc_cv_ld_as_needed=no
3243 if test $in_tree_ld = yes ; then
3244 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 \
3245 && test $in_tree_ld_is_elf = yes; then
3246 gcc_cv_ld_as_needed=yes
3247 fi
3248 elif test x$gcc_cv_ld != x; then
3249 # Check if linker supports --as-needed and --no-as-needed options
3250 if $gcc_cv_ld --help 2>/dev/null | grep as-needed > /dev/null; then
3251 gcc_cv_ld_as_needed=yes
3252 fi
3253 fi
3254 ])
3255 if test x"$gcc_cv_ld_as_needed" = xyes; then
3256 AC_DEFINE(HAVE_LD_AS_NEEDED, 1,
3257 [Define if your linker supports --as-needed and --no-as-needed options.])
3258 fi
3259
3260 case "$target:$tm_file" in
3261 powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*)
3262 AC_CACHE_CHECK(linker support for omitting dot symbols,
3263 gcc_cv_ld_no_dot_syms,
3264 [gcc_cv_ld_no_dot_syms=no
3265 if test $in_tree_ld = yes ; then
3266 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2; then
3267 gcc_cv_ld_no_dot_syms=yes
3268 fi
3269 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
3270 cat > conftest1.s <<EOF
3271 .text
3272 bl .foo
3273 EOF
3274 cat > conftest2.s <<EOF
3275 .section ".opd","aw"
3276 .align 3
3277 .globl foo
3278 .type foo,@function
3279 foo:
3280 .quad .LEfoo,.TOC.@tocbase,0
3281 .text
3282 .LEfoo:
3283 blr
3284 .size foo,.-.LEfoo
3285 EOF
3286 if $gcc_cv_as -a64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
3287 && $gcc_cv_as -a64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
3288 && $gcc_cv_ld -melf64ppc -o conftest conftest1.o conftest2.o > /dev/null 2>&1; then
3289 gcc_cv_ld_no_dot_syms=yes
3290 fi
3291 rm -f conftest conftest1.o conftest2.o conftest1.s conftest2.s
3292 fi
3293 ])
3294 if test x"$gcc_cv_ld_no_dot_syms" = xyes; then
3295 AC_DEFINE(HAVE_LD_NO_DOT_SYMS, 1,
3296 [Define if your PowerPC64 linker only needs function descriptor syms.])
3297 fi
3298 ;;
3299 esac
3300
3301 AC_CACHE_CHECK(linker --sysroot support,
3302 gcc_cv_ld_sysroot,
3303 [gcc_cv_ld_sysroot=no
3304 if test $in_tree_ld = yes ; then
3305 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 16 -o "$gcc_cv_gld_major_version" -gt 2 ; then
3306 gcc_cv_ld_sysroot=yes
3307 fi
3308 elif test x$gcc_cv_ld != x; then
3309 if $gcc_cv_ld --help 2>/dev/null | grep sysroot > /dev/null; then
3310 gcc_cv_ld_sysroot=yes
3311 fi
3312 fi])
3313 if test x"$gcc_cv_ld_sysroot" = xyes; then
3314 AC_DEFINE(HAVE_LD_SYSROOT, 1,
3315 [Define if your linker supports --sysroot.])
3316 fi
3317
3318 if test x$with_sysroot = x && test x$host = x$target \
3319 && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" \
3320 && test "$prefix" != "NONE"; then
3321 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include",
3322 [Define to PREFIX/include if cpp should also search that directory.])
3323 fi
3324
3325 # Test for stack protector support in target C library.
3326 AC_CACHE_CHECK(__stack_chk_fail in target C library,
3327 gcc_cv_libc_provides_ssp,
3328 [gcc_cv_libc_provides_ssp=no
3329 case "$target" in
3330 *-*-linux*)
3331 if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then
3332 if test "x$with_sysroot" = x; then
3333 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-include"
3334 elif test "x$with_build_sysroot" != "x"; then
3335 glibc_header_dir="${with_build_sysroot}/usr/include"
3336 elif test "x$with_sysroot" = xyes; then
3337 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-root/usr/include"
3338 else
3339 glibc_header_dir="${with_sysroot}/usr/include"
3340 fi
3341 else
3342 glibc_header_dir=/usr/include
3343 fi
3344 # glibc 2.4 and later provides __stack_chk_fail and
3345 # either __stack_chk_guard, or TLS access to stack guard canary.
3346 if test -f $glibc_header_dir/features.h \
3347 && $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GNU_LIBRARY__[ ]+([1-9][0-9]|[6-9])' \
3348 $glibc_header_dir/features.h > /dev/null; then
3349 if $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC__[ ]+([1-9][0-9]|[3-9])' \
3350 $glibc_header_dir/features.h > /dev/null; then
3351 gcc_cv_libc_provides_ssp=yes
3352 elif $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC__[ ]+2' \
3353 $glibc_header_dir/features.h > /dev/null \
3354 && $EGREP '^@<:@ @:>@*#[ ]*define[ ]+__GLIBC_MINOR__[ ]+([1-9][0-9]|[4-9])' \
3355 $glibc_header_dir/features.h > /dev/null; then
3356 gcc_cv_libc_provides_ssp=yes
3357 fi
3358 fi
3359 ;;
3360 *-*-darwin*)
3361 AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes],
3362 [echo "no __stack_chk_fail on this target"])
3363 ;;
3364 *) gcc_cv_libc_provides_ssp=no ;;
3365 esac])
3366
3367 if test x$gcc_cv_libc_provides_ssp = xyes; then
3368 AC_DEFINE(TARGET_LIBC_PROVIDES_SSP, 1,
3369 [Define if your target C library provides stack protector support])
3370 fi
3371
3372 # Check if TFmode long double should be used by default or not.
3373 # Some glibc targets used DFmode long double, but with glibc 2.4
3374 # and later they can use TFmode.
3375 case "$target" in
3376 powerpc*-*-linux* | \
3377 powerpc*-*-gnu* | \
3378 sparc*-*-linux* | \
3379 s390*-*-linux* | \
3380 alpha*-*-linux*)
3381 AC_ARG_WITH(long-double-128,
3382 [ --with-long-double-128 Use 128-bit long double by default.],
3383 gcc_cv_target_ldbl128="$with_long_double_128",
3384 [gcc_cv_target_ldbl128=no
3385 if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x; then
3386 if test "x$with_sysroot" = x; then
3387 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-include"
3388 elif test "x$with_build_sysroot" != "x"; then
3389 glibc_header_dir="${with_build_sysroot}/usr/include"
3390 elif test "x$with_sysroot" = xyes; then
3391 glibc_header_dir="${exec_prefix}/${target_noncanonical}/sys-root/usr/include"
3392 else
3393 glibc_header_dir="${with_sysroot}/usr/include"
3394 fi
3395 else
3396 glibc_header_dir=/usr/include
3397 fi
3398 changequote(,)dnl
3399 grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
3400 $glibc_header_dir/bits/wordsize.h > /dev/null 2>&1 \
3401 && gcc_cv_target_ldbl128=yes
3402 changequote([,])dnl
3403 ])
3404 ;;
3405 esac
3406 if test x$gcc_cv_target_ldbl128 = xyes; then
3407 AC_DEFINE(TARGET_DEFAULT_LONG_DOUBLE_128, 1,
3408 [Define if TFmode long double should be the default])
3409 fi
3410
3411 # Find out what GC implementation we want, or may, use.
3412 AC_ARG_WITH(gc,
3413 [ --with-gc={page,zone} choose the garbage collection mechanism to use
3414 with the compiler],
3415 [case "$withval" in
3416 page)
3417 GGC=ggc-$withval
3418 ;;
3419 zone)
3420 GGC=ggc-$withval
3421 AC_DEFINE(GGC_ZONE, 1, [Define if the zone collector is in use])
3422 ;;
3423 *)
3424 AC_MSG_ERROR([$withval is an invalid option to --with-gc])
3425 ;;
3426 esac],
3427 [GGC=ggc-page])
3428 AC_SUBST(GGC)
3429 echo "Using $GGC for garbage collection."
3430
3431 # Use the system's zlib library.
3432 zlibdir=-L../zlib
3433 zlibinc="-I\$(srcdir)/../zlib"
3434 AC_ARG_WITH(system-zlib,
3435 [ --with-system-zlib use installed libz],
3436 zlibdir=
3437 zlibinc=
3438 )
3439 AC_SUBST(zlibdir)
3440 AC_SUBST(zlibinc)
3441
3442 dnl Very limited version of automake's enable-maintainer-mode
3443
3444 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
3445 dnl maintainer-mode is disabled by default
3446 AC_ARG_ENABLE(maintainer-mode,
3447 [ --enable-maintainer-mode
3448 enable make rules and dependencies not useful
3449 (and sometimes confusing) to the casual installer],
3450 maintainer_mode=$enableval,
3451 maintainer_mode=no)
3452
3453 AC_MSG_RESULT($maintainer_mode)
3454
3455 if test "$maintainer_mode" = "yes"; then
3456 MAINT=''
3457 else
3458 MAINT='#'
3459 fi
3460 AC_SUBST(MAINT)dnl
3461
3462 # --------------
3463 # Language hooks
3464 # --------------
3465
3466 # Make empty files to contain the specs and options for each language.
3467 # Then add #include lines to for a compiler that has specs and/or options.
3468
3469 subdirs=
3470 lang_opt_files=
3471 lang_specs_files=
3472 lang_tree_files=
3473 # These (without "all_") are set in each config-lang.in.
3474 # `language' must be a single word so is spelled singularly.
3475 all_languages=
3476 all_compilers=
3477 all_outputs='Makefile gccbug libada-mk'
3478 # List of language makefile fragments.
3479 all_lang_makefrags=
3480 # List of language subdirectory makefiles. Deprecated.
3481 all_lang_makefiles=
3482 # Additional files for gengtype
3483 all_gtfiles="$target_gtfiles"
3484
3485 # These are the languages that are set in --enable-languages,
3486 # and are available in the GCC tree.
3487 all_selected_languages=
3488
3489 # Add the language fragments.
3490 # Languages are added via two mechanisms. Some information must be
3491 # recorded in makefile variables, these are defined in config-lang.in.
3492 # We accumulate them and plug them into the main Makefile.
3493 # The other mechanism is a set of hooks for each of the main targets
3494 # like `clean', `install', etc.
3495
3496 language_hooks="Make-hooks"
3497
3498 for lang in ${srcdir}/*/config-lang.in
3499 do
3500 changequote(,)dnl
3501 test "$lang" = "${srcdir}/*/config-lang.in" && continue
3502
3503 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
3504 if test "x$lang_alias" = x
3505 then
3506 echo "$lang doesn't set \$language." 1>&2
3507 exit 1
3508 fi
3509 subdir="`echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
3510 subdirs="$subdirs $subdir"
3511 case ",$enable_languages," in
3512 *,$lang_alias,*)
3513 all_selected_languages="$all_selected_languages $lang_alias"
3514 if test -f $srcdir/$subdir/lang-specs.h; then
3515 lang_specs_files="$lang_specs_files $srcdir/$subdir/lang-specs.h"
3516 fi
3517 ;;
3518 esac
3519 changequote([,])dnl
3520
3521 language=
3522 boot_language=
3523 compilers=
3524 outputs=
3525 gtfiles=
3526 subdir_requires=
3527 . ${srcdir}/$subdir/config-lang.in
3528 if test "x$language" = x
3529 then
3530 echo "${srcdir}/$subdir/config-lang.in doesn't set \$language." 1>&2
3531 exit 1
3532 fi
3533
3534 ok=:
3535 case ",$enable_languages," in
3536 *,$lang_alias,*) ;;
3537 *)
3538 for i in $subdir_requires; do
3539 test -f "${srcdir}/$i/config-lang.in" && continue
3540 ok=false
3541 break
3542 done
3543 ;;
3544 esac
3545 $ok || continue
3546
3547 all_lang_makefrags="$all_lang_makefrags \$(srcdir)/$subdir/Make-lang.in"
3548 if test -f $srcdir/$subdir/lang.opt; then
3549 lang_opt_files="$lang_opt_files $srcdir/$subdir/lang.opt"
3550 fi
3551 if test -f $srcdir/$subdir/$subdir-tree.def; then
3552 lang_tree_files="$lang_tree_files $srcdir/$subdir/$subdir-tree.def"
3553 fi
3554 if test -f ${srcdir}/$subdir/Makefile.in
3555 then all_lang_makefiles="$subdir/Makefile"
3556 fi
3557 all_languages="$all_languages $language"
3558 all_compilers="$all_compilers $compilers"
3559 all_outputs="$all_outputs $outputs"
3560 all_gtfiles="$all_gtfiles [[$subdir]] $gtfiles"
3561 done
3562
3563 # Pick up gtfiles for c
3564 gtfiles=
3565 . ${srcdir}/c-config-lang.in
3566 all_gtfiles="$all_gtfiles [[c]] $gtfiles"
3567
3568 check_languages=
3569 for language in $all_selected_languages
3570 do
3571 check_languages="$check_languages check-$language"
3572 done
3573
3574 # We link each language in with a set of hooks, reached indirectly via
3575 # lang.${target}. Only do so for selected languages.
3576
3577 rm -f Make-hooks
3578 touch Make-hooks
3579 target_list="all.cross start.encap rest.encap tags \
3580 install-common install-man install-info install-pdf dvi pdf \
3581 html uninstall info man srcextra srcman srcinfo \
3582 mostlyclean clean distclean maintainer-clean"
3583
3584 for t in $target_list
3585 do
3586 x=
3587 for lang in $all_selected_languages
3588 do
3589 x="$x $lang.$t"
3590 done
3591 echo "lang.$t: $x" >> Make-hooks
3592 done
3593
3594 # --------
3595 # UNSORTED
3596 # --------
3597
3598 # Create .gdbinit.
3599
3600 echo "dir ." > .gdbinit
3601 echo "dir ${srcdir}" >> .gdbinit
3602 if test x$gdb_needs_out_file_path = xyes
3603 then
3604 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
3605 fi
3606 if test "x$subdirs" != x; then
3607 for s in $subdirs
3608 do
3609 echo "dir ${srcdir}/$s" >> .gdbinit
3610 done
3611 fi
3612 echo "source ${srcdir}/gdbinit.in" >> .gdbinit
3613
3614 gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
3615 AC_SUBST(gcc_tooldir)
3616 AC_SUBST(dollar)
3617
3618 # Find a directory in which to install a shared libgcc.
3619
3620 AC_ARG_ENABLE(version-specific-runtime-libs,
3621 [ --enable-version-specific-runtime-libs
3622 specify that runtime libraries should be
3623 installed in a compiler-specific directory])
3624
3625 AC_ARG_WITH(slibdir,
3626 [ --with-slibdir=DIR shared libraries in DIR [[LIBDIR]]],
3627 slibdir="$with_slibdir",
3628 if test "${enable_version_specific_runtime_libs+set}" = set; then
3629 slibdir='$(libsubdir)'
3630 elif test "$host" != "$target"; then
3631 slibdir='$(build_tooldir)/lib'
3632 else
3633 slibdir='$(libdir)'
3634 fi)
3635 AC_SUBST(slibdir)
3636
3637 objdir=`${PWDCMD-pwd}`
3638 AC_SUBST(objdir)
3639
3640 AC_ARG_WITH(datarootdir,
3641 [ --with-datarootdir=DIR Use DIR as the data root [[PREFIX/share]]],
3642 datarootdir="\${prefix}/$with_datarootdir",
3643 datarootdir='$(prefix)/share')
3644 AC_SUBST(datarootdir)
3645
3646 AC_ARG_WITH(docdir,
3647 [ --with-docdir=DIR Install documentation in DIR [[DATAROOTDIR]]],
3648 docdir="\${prefix}/$with_docdir",
3649 docdir='$(datarootdir)')
3650 AC_SUBST(docdir)
3651
3652 AC_ARG_WITH(htmldir,
3653 [ --with-htmldir=DIR html documentation in in DIR [[DOCDIR]]],
3654 htmldir="\${prefix}/$with_htmldir",
3655 htmldir='$(docdir)')
3656 AC_SUBST(htmldir)
3657
3658 # Substitute configuration variables
3659 AC_SUBST(subdirs)
3660 AC_SUBST(srcdir)
3661 AC_SUBST(all_compilers)
3662 AC_SUBST(all_gtfiles)
3663 AC_SUBST(all_lang_makefrags)
3664 AC_SUBST(all_lang_makefiles)
3665 AC_SUBST(all_languages)
3666 AC_SUBST(all_selected_languages)
3667 AC_SUBST(build_exeext)
3668 AC_SUBST(build_install_headers_dir)
3669 AC_SUBST(build_xm_file_list)
3670 AC_SUBST(build_xm_include_list)
3671 AC_SUBST(build_xm_defines)
3672 AC_SUBST(check_languages)
3673 AC_SUBST(cpp_install_dir)
3674 AC_SUBST(xmake_file)
3675 AC_SUBST(tmake_file)
3676 AC_SUBST(extra_gcc_objs)
3677 AC_SUBST(extra_headers_list)
3678 AC_SUBST(extra_objs)
3679 AC_SUBST(extra_parts)
3680 AC_SUBST(extra_passes)
3681 AC_SUBST(extra_programs)
3682 AC_SUBST(float_h_file)
3683 AC_SUBST(gcc_config_arguments)
3684 AC_SUBST(gcc_gxx_include_dir)
3685 AC_SUBST(host_exeext)
3686 AC_SUBST(host_xm_file_list)
3687 AC_SUBST(host_xm_include_list)
3688 AC_SUBST(host_xm_defines)
3689 AC_SUBST(out_host_hook_obj)
3690 AC_SUBST(install)
3691 AC_SUBST(lang_opt_files)
3692 AC_SUBST(lang_specs_files)
3693 AC_SUBST(lang_tree_files)
3694 AC_SUBST(local_prefix)
3695 AC_SUBST(md_file)
3696 AC_SUBST(objc_boehm_gc)
3697 AC_SUBST(out_file)
3698 AC_SUBST(out_object_file)
3699 AC_SUBST(thread_file)
3700 AC_SUBST(tm_file_list)
3701 AC_SUBST(tm_include_list)
3702 AC_SUBST(tm_defines)
3703 AC_SUBST(tm_p_file_list)
3704 AC_SUBST(tm_p_include_list)
3705 AC_SUBST(xm_file_list)
3706 AC_SUBST(xm_include_list)
3707 AC_SUBST(xm_defines)
3708 AC_SUBST(c_target_objs)
3709 AC_SUBST(cxx_target_objs)
3710 AC_SUBST(target_cpu_default)
3711
3712 AC_SUBST_FILE(language_hooks)
3713
3714 # Echo link setup.
3715 if test x${build} = x${host} ; then
3716 if test x${host} = x${target} ; then
3717 echo "Links are now set up to build a native compiler for ${target}." 1>&2
3718 else
3719 echo "Links are now set up to build a cross-compiler" 1>&2
3720 echo " from ${host} to ${target}." 1>&2
3721 fi
3722 else
3723 if test x${host} = x${target} ; then
3724 echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
3725 echo " for ${target}." 1>&2
3726 else
3727 echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
3728 echo " from ${host} to ${target}." 1>&2
3729 fi
3730 fi
3731
3732 AC_ARG_VAR(GMPLIBS,[How to link GMP])
3733 AC_ARG_VAR(GMPINC,[How to find GMP include files])
3734
3735 # Configure the subdirectories
3736 # AC_CONFIG_SUBDIRS($subdirs)
3737
3738 # Create the Makefile
3739 # and configure language subdirectories
3740 AC_CONFIG_FILES($all_outputs)
3741
3742 AC_CONFIG_COMMANDS([default],
3743 [
3744 case ${CONFIG_HEADERS} in
3745 *auto-host.h:config.in*)
3746 echo > cstamp-h ;;
3747 esac
3748 # Make sure all the subdirs exist.
3749 for d in $subdirs doc build
3750 do
3751 test -d $d || mkdir $d
3752 done
3753 ],
3754 [subdirs='$subdirs'])
3755 AC_OUTPUT