]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/configure.ac
configure: Implement --enable-host-pie
[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 (C) 1997-2023 Free Software Foundation, Inc.
5
6 #This file is part of GCC.
7
8 #GCC is free software; you can redistribute it and/or modify it under
9 #the terms of the GNU General Public License as published by the Free
10 #Software Foundation; either version 3, or (at your option) any later
11 #version.
12
13 #GCC is distributed in the hope that it will be useful, but WITHOUT
14 #ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
15 #FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 #for more details.
17
18 #You should have received a copy of the GNU General Public License
19 #along with GCC; see the file COPYING3. If not see
20 #<http://www.gnu.org/licenses/>.
21
22 # --------------------------------
23 # Initialization and sanity checks
24 # --------------------------------
25
26 AC_INIT
27 AC_CONFIG_SRCDIR(tree.cc)
28 AC_CONFIG_MACRO_DIRS([../config] [..])
29 AC_CONFIG_HEADER(auto-host.h:config.in)
30
31 gcc_version=`cat $srcdir/BASE-VER`
32
33 # Determine the host, build, and target systems
34 AC_CANONICAL_BUILD
35 AC_CANONICAL_HOST
36 AC_CANONICAL_TARGET
37
38 # Determine the noncanonical host name, for Ada.
39 ACX_NONCANONICAL_HOST
40
41 # Determine the noncanonical target name, for directory use.
42 ACX_NONCANONICAL_TARGET
43
44 # Used for constructing correct paths for offload compilers.
45 real_target_noncanonical=${target_noncanonical}
46 accel_dir_suffix=
47
48 # Determine the target- and build-specific subdirectories
49 GCC_TOPLEV_SUBDIRS
50
51 # Set program_transform_name
52 AC_ARG_PROGRAM
53
54 # Check for bogus environment variables.
55 # Test if LIBRARY_PATH contains the notation for the current directory
56 # since this would lead to problems installing/building glibc.
57 # LIBRARY_PATH contains the current directory if one of the following
58 # is true:
59 # - one of the terminals (":" and ";") is the first or last sign
60 # - two terminals occur directly after each other
61 # - the path contains an element with a dot in it
62 AC_MSG_CHECKING(LIBRARY_PATH variable)
63 changequote(,)dnl
64 case ${LIBRARY_PATH} in
65 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
66 library_path_setting="contains current directory"
67 ;;
68 *)
69 library_path_setting="ok"
70 ;;
71 esac
72 changequote([,])dnl
73 AC_MSG_RESULT($library_path_setting)
74 if test "$library_path_setting" != "ok"; then
75 AC_MSG_ERROR([
76 *** LIBRARY_PATH shouldn't contain the current directory when
77 *** building gcc. Please change the environment variable
78 *** and run configure again.])
79 fi
80
81 # Test if GCC_EXEC_PREFIX contains the notation for the current directory
82 # since this would lead to problems installing/building glibc.
83 # GCC_EXEC_PREFIX contains the current directory if one of the following
84 # is true:
85 # - one of the terminals (":" and ";") is the first or last sign
86 # - two terminals occur directly after each other
87 # - the path contains an element with a dot in it
88 AC_MSG_CHECKING(GCC_EXEC_PREFIX variable)
89 changequote(,)dnl
90 case ${GCC_EXEC_PREFIX} in
91 [:\;]* | *[:\;] | *[:\;][:\;]* | *[:\;]. | .[:\;]*| . | *[:\;].[:\;]* )
92 gcc_exec_prefix_setting="contains current directory"
93 ;;
94 *)
95 gcc_exec_prefix_setting="ok"
96 ;;
97 esac
98 changequote([,])dnl
99 AC_MSG_RESULT($gcc_exec_prefix_setting)
100 if test "$gcc_exec_prefix_setting" != "ok"; then
101 AC_MSG_ERROR([
102 *** GCC_EXEC_PREFIX shouldn't contain the current directory when
103 *** building gcc. Please change the environment variable
104 *** and run configure again.])
105 fi
106
107 # -----------
108 # Directories
109 # -----------
110
111 # Specify the local prefix
112 local_prefix=
113 AC_ARG_WITH(local-prefix,
114 [AS_HELP_STRING([--with-local-prefix=DIR],
115 [specifies directory to put local include])],
116 [case "${withval}" in
117 yes) AC_MSG_ERROR(bad value ${withval} given for local include directory prefix) ;;
118 no) ;;
119 *) local_prefix=$with_local_prefix ;;
120 esac])
121
122 # Default local prefix if it is empty
123 if test x$local_prefix = x; then
124 local_prefix=/usr/local
125 fi
126
127 AC_ARG_WITH([native-system-header-dir],
128 [ --with-native-system-header-dir=dir
129 use dir as the directory to look for standard
130 system header files in. Defaults to /usr/include.],
131 [
132 case ${with_native_system_header_dir} in
133 yes|no) AC_MSG_ERROR([bad value ${withval} given for --with-native-system-header-dir]) ;;
134 /* | [[A-Za-z]]:[[\\/]]*) ;;
135 *) AC_MSG_ERROR([--with-native-system-header-dir argument ${withval} must be an absolute directory]) ;;
136 esac
137 configured_native_system_header_dir="${withval}"
138 ], [configured_native_system_header_dir=])
139
140 AC_ARG_WITH(build-sysroot,
141 [AS_HELP_STRING([--with-build-sysroot=sysroot],
142 [use sysroot as the system root during the build])],
143 [if test x"$withval" != x ; then
144 SYSROOT_CFLAGS_FOR_TARGET="--sysroot=$withval"
145 fi],
146 [SYSROOT_CFLAGS_FOR_TARGET=])
147 AC_SUBST(SYSROOT_CFLAGS_FOR_TARGET)
148
149 if test "x$prefix" = xNONE; then
150 test_prefix=/usr/local
151 else
152 test_prefix=$prefix
153 fi
154 if test "x$exec_prefix" = xNONE; then
155 test_exec_prefix=$test_prefix
156 else
157 test_exec_prefix=$exec_prefix
158 fi
159
160 AC_ARG_WITH(sysroot,
161 [AS_HELP_STRING([[--with-sysroot[=DIR]]],
162 [search for usr/lib, usr/include, et al, within DIR])],
163 [
164 case ${with_sysroot} in
165 /) ;;
166 */) with_sysroot=`echo $with_sysroot | sed 's,/$,,'` ;;
167 esac
168 case ${with_sysroot} in
169 yes) TARGET_SYSTEM_ROOT='${exec_prefix}/${target_noncanonical}/sys-root' ;;
170 *) TARGET_SYSTEM_ROOT=$with_sysroot ;;
171 esac
172
173 TARGET_SYSTEM_ROOT_DEFINE='-DTARGET_SYSTEM_ROOT=\"$(TARGET_SYSTEM_ROOT)\"'
174 CROSS_SYSTEM_HEADER_DIR='$(TARGET_SYSTEM_ROOT)$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
175
176 case ${TARGET_SYSTEM_ROOT} in
177 "${test_prefix}"|"${test_prefix}/"*|\
178 "${test_exec_prefix}"|"${test_exec_prefix}/"*|\
179 '${prefix}'|'${prefix}/'*|\
180 '${exec_prefix}'|'${exec_prefix}/'*)
181 t="$TARGET_SYSTEM_ROOT_DEFINE -DTARGET_SYSTEM_ROOT_RELOCATABLE"
182 TARGET_SYSTEM_ROOT_DEFINE="$t"
183 ;;
184 esac
185 ], [
186 TARGET_SYSTEM_ROOT=
187 TARGET_SYSTEM_ROOT_DEFINE=
188 CROSS_SYSTEM_HEADER_DIR='$(gcc_tooldir)/sys-include'
189 ])
190 AC_SUBST(TARGET_SYSTEM_ROOT)
191 AC_SUBST(TARGET_SYSTEM_ROOT_DEFINE)
192 AC_SUBST(CROSS_SYSTEM_HEADER_DIR)
193
194 # Don't set gcc_gxx_include_dir to gxx_include_dir since that's only
195 # passed in by the toplevel make and thus we'd get different behavior
196 # depending on where we built the sources.
197 gcc_gxx_include_dir=
198 # Specify the g++ header file directory
199 AC_ARG_WITH(gxx-include-dir,
200 [AS_HELP_STRING([--with-gxx-include-dir=DIR],
201 [specifies directory to put g++ header files])],
202 [case "${withval}" in
203 yes) AC_MSG_ERROR(bad value ${withval} given for g++ include directory) ;;
204 no) ;;
205 *) gcc_gxx_include_dir=$with_gxx_include_dir ;;
206 esac])
207
208 # If both --with-sysroot and --with-gxx-include-dir are passed, we interpolate
209 # the former in the latter and, upon success, compute gcc_gxx_include_dir as
210 # relative to the sysroot.
211 gcc_gxx_include_dir_add_sysroot=0
212
213 # This logic must match libstdc++-v3/acinclude.m4:GLIBCXX_EXPORT_INSTALL_INFO.
214 if test x${gcc_gxx_include_dir} = x; then
215 if test x${enable_version_specific_runtime_libs} = xyes; then
216 gcc_gxx_include_dir='${libsubdir}/include/c++'
217 else
218 libstdcxx_incdir='include/c++/$(version)'
219 if test x$host != x$target; then
220 libstdcxx_incdir="$target_alias/$libstdcxx_incdir"
221 fi
222 gcc_gxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libstdcxx_incdir"
223 fi
224 elif test "${with_sysroot+set}" = set; then
225 gcc_gxx_without_sysroot=`expr "${gcc_gxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
226 if test "${gcc_gxx_without_sysroot}"; then
227 gcc_gxx_include_dir="${gcc_gxx_without_sysroot}"
228 gcc_gxx_include_dir_add_sysroot=1
229 fi
230 fi
231
232 # Configuration for an alternate set of C++ headers.
233 gcc_gxx_libcxx_include_dir=
234 # Specify the alternate g++ header file directory
235 AC_ARG_WITH(gxx-libcxx-include-dir,
236 [AS_HELP_STRING([--with-gxx-libcxx-include-dir=DIR],
237 [specifies directory to find libc++ header files])],
238 [case "${withval}" in
239 yes) AC_MSG_ERROR(bad value ${withval} given for libc++ include directory) ;;
240 no) ;;
241 *) gcc_gxx_libcxx_include_dir=$with_gxx_libcxx_include_dir ;;
242 esac])
243
244 # If both --with-sysroot and --with-gxx-libcxx-include-dir are passed, we
245 # check to see if the latter starts with the former and, upon success, compute
246 # gcc_gxx_libcxx_include_dir as relative to the sysroot.
247 gcc_gxx_libcxx_include_dir_add_sysroot=0
248
249 if test x${gcc_gxx_libcxx_include_dir} != x; then
250 AC_DEFINE(ENABLE_STDLIB_OPTION, 1,
251 [Define if the -stdlib= option should be enabled.])
252 else
253 AC_DEFINE(ENABLE_STDLIB_OPTION, 0)
254 fi
255 # ??? This logic must match libstdc++-v3/acinclude.m4:GLIBCXX_EXPORT_INSTALL_INFO.
256 if test x${gcc_gxx_libcxx_include_dir} = x; then
257 if test x${enable_version_specific_runtime_libs} = xyes; then
258 gcc_gxx_libcxx_include_dir='${libsubdir}/libc++_include/c++/v1'
259 else
260 libcxx_incdir='libc++_include/c++/$(version)/v1'
261 if test x$host != x$target; then
262 libcxx_incdir="$target_alias/$libcxx_incdir"
263 fi
264 gcc_gxx_libcxx_include_dir="\$(libsubdir)/\$(libsubdir_to_prefix)$libcxx_incdir"
265 fi
266 elif test "${with_sysroot+set}" = set; then
267 gcc_gxx_libcxx_without_sysroot=`expr "${gcc_gxx_libcxx_include_dir}" : "${with_sysroot}"'\(.*\)'`
268 if test "${gcc_gxx_libcxx_without_sysroot}"; then
269 gcc_gxx_libcxx_include_dir="${gcc_gxx_libcxx_without_sysroot}"
270 gcc_gxx_libcxx_include_dir_add_sysroot=1
271 fi
272 fi
273
274 AC_ARG_WITH(cpp_install_dir,
275 [AC_HELP_STRING([--with-cpp-install-dir=DIR],
276 [install the user visible C preprocessor in DIR
277 (relative to PREFIX) as well as PREFIX/bin])],
278 [if test x$withval = xyes; then
279 AC_MSG_ERROR([option --with-cpp-install-dir requires an argument])
280 elif test x$withval != xno; then
281 cpp_install_dir=$withval
282 fi])
283
284 # We would like to our source tree to be readonly. However when releases or
285 # pre-releases are generated, the flex/bison generated files as well as the
286 # various formats of manuals need to be included along with the rest of the
287 # sources. Therefore we have --enable-generated-files-in-srcdir to do
288 # just that.
289
290 AC_MSG_CHECKING([whether to place generated files in the source directory])
291 dnl generated-files-in-srcdir is disabled by default
292 AC_ARG_ENABLE(generated-files-in-srcdir,
293 [AS_HELP_STRING([--enable-generated-files-in-srcdir],
294 [put copies of generated files in source dir
295 intended for creating source tarballs for users
296 without texinfo bison or flex])],
297 generated_files_in_srcdir=$enableval,
298 generated_files_in_srcdir=no)
299
300 AC_MSG_RESULT($generated_files_in_srcdir)
301
302 if test "$generated_files_in_srcdir" = "yes"; then
303 GENINSRC=''
304 else
305 GENINSRC='#'
306 fi
307 AC_SUBST(GENINSRC)
308
309 # -------------------
310 # Find default linker
311 # -------------------
312
313 # With GNU ld
314 AC_ARG_WITH(gnu-ld,
315 [AS_HELP_STRING([--with-gnu-ld], [arrange to work with GNU ld])],
316 gnu_ld_flag="$with_gnu_ld",
317 gnu_ld_flag=no)
318
319 case $target in
320 *darwin*)
321 ld64_flag=yes # Darwin can only use a ld64-compatible linker.
322 dsymutil_flag=yes # Darwin uses dsymutil to link debug.
323 ;;
324 *)
325 ld64_flag=no
326 dsymutil_flag=no
327 ;;
328 esac
329
330 # With pre-defined ld
331 AC_ARG_WITH(ld,
332 [AS_HELP_STRING([--with-ld], [arrange to use the specified ld (full pathname)])],
333 DEFAULT_LINKER="$with_ld")
334 if test x"${DEFAULT_LINKER+set}" = x"set"; then
335 if test ! -x "$DEFAULT_LINKER"; then
336 AC_MSG_ERROR([cannot execute: $DEFAULT_LINKER: check --with-ld or env. var. DEFAULT_LINKER])
337 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
338 gnu_ld_flag=yes
339 elif $DEFAULT_LINKER -v < /dev/null 2>&1 | grep ld64- > /dev/null; then
340 ld64_flag=yes
341 fi
342 AC_DEFINE_UNQUOTED(DEFAULT_LINKER,"$DEFAULT_LINKER",
343 [Define to enable the use of a default linker.])
344 fi
345
346 AC_MSG_CHECKING([whether a default linker was specified])
347 if test x"${DEFAULT_LINKER+set}" = x"set"; then
348 if test x"$gnu_ld_flag" = x"no"; then
349 AC_MSG_RESULT([yes ($DEFAULT_LINKER)])
350 else
351 AC_MSG_RESULT([yes ($DEFAULT_LINKER - GNU ld)])
352 fi
353 else
354 AC_MSG_RESULT(no)
355 fi
356
357 # With demangler in GNU ld
358 AC_ARG_WITH(demangler-in-ld,
359 [AS_HELP_STRING([--with-demangler-in-ld], [try to use demangler in GNU ld])],
360 demangler_in_ld="$with_demangler_in_ld",
361 demangler_in_ld=yes)
362
363 # Allow the user to specify a dsymutil executable (used on Darwin only, so far)
364 AC_ARG_WITH(dsymutil,
365 [AS_HELP_STRING([--with-dsymutil], [arrange to use the specified dsymutil (full pathname)])],
366 DEFAULT_DSYMUTIL="$with_dsymutil")
367
368 dsymutil_vers=
369 if test x"${DEFAULT_DSYMUTIL+set}" = x"set"; then
370 if test ! -x "$DEFAULT_DSYMUTIL"; then
371 AC_MSG_ERROR([cannot execute: $DEFAULT_DSYMUTIL: check --with-dsymutil or env. var. DEFAULT_DSYMUTIL])
372 else
373 if dsymutil_vers=`$DEFAULT_DSYMUTIL -v /dev/null 2>&1`; then
374 dsymutil_flag=yes
375 fi
376 fi
377 AC_DEFINE_UNQUOTED(DEFAULT_DSYMUTIL,"$DEFAULT_DSYMUTIL",
378 [Define to enable the use of a default debug linker.])
379 fi
380
381 AC_MSG_CHECKING([whether a default dsymutil was specified])
382 if test x"${DEFAULT_DSYMUTIL+set}" = x"set"; then
383 AC_MSG_RESULT([yes ($DEFAULT_DSYMUTIL)])
384 else
385 AC_MSG_RESULT(no)
386 fi
387
388 # ----------------------
389 # Find default assembler
390 # ----------------------
391
392 # With GNU as
393 AC_ARG_WITH(gnu-as,
394 [AS_HELP_STRING([--with-gnu-as], [arrange to work with GNU as])],
395 gas_flag="$with_gnu_as",
396 gas_flag=no)
397
398 AC_ARG_WITH(as,
399 [AS_HELP_STRING([--with-as], [arrange to use the specified as (full pathname)])],
400 DEFAULT_ASSEMBLER="$with_as")
401 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
402 if test ! -x "$DEFAULT_ASSEMBLER"; then
403 AC_MSG_ERROR([cannot execute: $DEFAULT_ASSEMBLER: check --with-as or env. var. DEFAULT_ASSEMBLER])
404 elif $DEFAULT_ASSEMBLER -v < /dev/null 2>&1 | grep GNU > /dev/null; then
405 gas_flag=yes
406 fi
407 AC_DEFINE_UNQUOTED(DEFAULT_ASSEMBLER,"$DEFAULT_ASSEMBLER",
408 [Define to enable the use of a default assembler.])
409 fi
410
411 AC_MSG_CHECKING([whether a default assembler was specified])
412 if test x"${DEFAULT_ASSEMBLER+set}" = x"set"; then
413 if test x"$gas_flag" = x"no"; then
414 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER)])
415 else
416 AC_MSG_RESULT([yes ($DEFAULT_ASSEMBLER - GNU as)])
417 fi
418 else
419 AC_MSG_RESULT(no)
420 fi
421
422 # ---------------
423 # Find C compiler
424 # ---------------
425
426 # If a non-executable a.out is present (e.g. created by GNU as above even if
427 # invoked with -v only), the IRIX 6 native ld just overwrites the existing
428 # file, even when creating an executable, so an execution test fails.
429 # Remove possible default executable files to avoid this.
430 #
431 # FIXME: This really belongs into AC_PROG_CC and can be removed once
432 # Autoconf includes it.
433 rm -f a.out a.exe b.out
434
435 # Find the native compiler
436 AC_PROG_CC
437 AC_PROG_CXX
438 ACX_PROG_GNAT([-I"$srcdir"/ada/libgnat])
439 ACX_PROG_GDC([-I"$srcdir"/d])
440
441 # Do configure tests with the C++ compiler, since that's what we build with.
442 AC_LANG(C++)
443
444 # Remove the -O2: for historical reasons, unless bootstrapping we prefer
445 # optimizations to be activated explicitly by the toplevel.
446 case "$CC" in
447 */prev-gcc/xgcc*) ;;
448 *) CFLAGS=`echo "$CFLAGS " | sed -e "s/-Ofast[[ ]]//" -e "s/-O[[gs]][[ ]]//" -e "s/-O[[0-9]]*[[ ]]//" `
449 CXXFLAGS=`echo "$CXXFLAGS " | sed -e "s/-Ofast[[ ]]//" -e "s/-O[[gs]][[ ]]//" -e "s/-O[[0-9]]*[[ ]]//" ` ;;
450 esac
451 AC_SUBST(CFLAGS)
452 AC_SUBST(CXXFLAGS)
453 AC_SUBST(GDCFLAGS)
454
455 # Determine PICFLAG for target gnatlib.
456 GCC_PICFLAG_FOR_TARGET
457 AC_SUBST(PICFLAG_FOR_TARGET)
458
459 # -------------------------
460 # Check C compiler features
461 # -------------------------
462
463 AC_USE_SYSTEM_EXTENSIONS
464
465 AC_PROG_CPP
466 AC_C_INLINE
467
468 AC_SYS_LARGEFILE
469 AC_CHECK_SIZEOF(ino_t)
470 AC_CHECK_SIZEOF(dev_t)
471
472 # Select the right stat being able to handle 64bit inodes, if needed.
473 if test "$enable_largefile" != no; then
474 case "$host, $build" in
475 *-*-aix*,*|*,*-*-aix*)
476 if test "$ac_cv_sizeof_ino_t" = "4" -a "$ac_cv_sizeof_dev_t" = 4; then
477 AC_DEFINE(HOST_STAT_FOR_64BIT_INODES, stat64x,
478 [Define which stat syscall is able to handle 64bit indodes.])
479 fi;;
480 esac
481 fi
482
483
484 # sizeof(char) is 1 by definition.
485 AC_CHECK_SIZEOF(void *)
486 AC_CHECK_SIZEOF(short)
487 AC_CHECK_SIZEOF(int)
488 AC_CHECK_SIZEOF(long)
489 AC_CHECK_TYPES([long long], [AC_CHECK_SIZEOF(long long)])
490 GCC_STDINT_TYPES
491 if test x"$ac_cv_c_uint64_t" = x"no" -o x"$ac_cv_c_int64_t" = x"no"; then
492 AC_MSG_ERROR([uint64_t or int64_t not found])
493 fi
494
495 # check what underlying integer type int64_t uses
496 AC_CACHE_CHECK(for int64_t underlying type, ac_cv_int64_t_type, [
497 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
498 #ifdef HAVE_STDINT_H
499 #include <stdint.h>
500 #endif
501 template <typename T> struct X { };
502 template <>
503 struct X<long> { typedef long t; };
504 ]], [[X<int64_t>::t x;]])],[ac_cv_int64_t_type=long],[ac_cv_int64_t_type="long long"])])
505 if test "$ac_cv_int64_t_type" = "long"; then
506 AC_DEFINE(INT64_T_IS_LONG, 1,
507 [Define if int64_t uses long as underlying type.])
508 else
509 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
510 #ifdef HAVE_STDINT_H
511 #include <stdint.h>
512 #endif
513 template <typename T> struct X { };
514 template <>
515 struct X<long long> { typedef long long t; };
516 ]], [[X<int64_t>::t x;]])],[],[AC_MSG_ERROR([error verifying int64_t uses long long])])
517 fi
518
519 AC_CACHE_CHECK(for std::swap in <utility>, ac_cv_std_swap_in_utility, [
520 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
521 #include <utility>
522 ]], [[int a, b; std::swap(a,b);]])],[ac_cv_std_swap_in_utility=yes],[ac_cv_std_swap_in_utility=no])])
523 if test $ac_cv_std_swap_in_utility = yes; then
524 AC_DEFINE(HAVE_SWAP_IN_UTILITY, 1,
525 [Define if <utility> defines std::swap.])
526 fi
527
528 # Check whether compiler is affected by placement new aliasing bug (PR 29286).
529 # If the host compiler is affected by the bug, and we build with optimization
530 # enabled (which happens e.g. when cross-compiling), the pool allocator may
531 # get miscompiled. Use -fno-strict-aliasing to work around this problem.
532 # Since there is no reliable feature check for the presence of this bug,
533 # we simply use a GCC version number check. (This should never trigger for
534 # stages 2 or 3 of a native bootstrap.)
535 aliasing_flags=
536 if test "$GCC" = yes; then
537 saved_CXXFLAGS="$CXXFLAGS"
538
539 # The following test compilation will succeed if and only if $CXX accepts
540 # -fno-strict-aliasing *and* is older than GCC 4.3.
541 CXXFLAGS="$CXXFLAGS -fno-strict-aliasing"
542 AC_MSG_CHECKING([whether $CXX is affected by placement new aliasing bug])
543 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
544 #if (__GNUC__ > 4) || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)
545 #error compiler not affected by placement new aliasing bug
546 #endif
547 ])],
548 [AC_MSG_RESULT([yes]); aliasing_flags='-fno-strict-aliasing'],
549 [AC_MSG_RESULT([no])])
550
551 CXXFLAGS="$saved_CXXFLAGS"
552 fi
553 AC_SUBST(aliasing_flags)
554
555
556
557 # ---------------------
558 # Warnings and checking
559 # ---------------------
560
561 # Check $CC warning features (if it's GCC).
562 # We want to use -pedantic, but we don't want warnings about
563 # * 'long long'
564 # * variadic macros
565 # * overlong strings
566 # * C++11 narrowing conversions in { }
567 # So, we only use -pedantic if we can disable those warnings.
568
569 # In stage 1, disable -Wformat warnings from old GCCs about new % codes
570 AC_ARG_ENABLE(build-format-warnings,
571 AS_HELP_STRING([--disable-build-format-warnings],[don't use -Wformat while building GCC]),
572 [],[enable_build_format_warnings=yes])
573 AS_IF([test $enable_build_format_warnings = no],
574 [wf_opt=-Wno-format],[wf_opt=])
575 ACX_PROG_CXX_WARNING_OPTS(
576 m4_quote(m4_do([-W -Wall -Wno-narrowing -Wwrite-strings ],
577 [-Wcast-qual $wf_opt])),
578 [loose_warn])
579 ACX_PROG_CC_WARNING_OPTS(
580 m4_quote(m4_do([-Wstrict-prototypes -Wmissing-prototypes ],
581 [])), [c_loose_warn])
582 ACX_PROG_CXX_WARNING_OPTS(
583 m4_quote(m4_do([-Wmissing-format-attribute ], [-Wconditionally-supported ],
584 [-Woverloaded-virtual])), [strict_warn])
585 ACX_PROG_CC_WARNING_OPTS(
586 m4_quote(m4_do([-Wold-style-definition -Wc++-compat])), [c_strict_warn])
587 ACX_PROG_CXX_WARNING_ALMOST_PEDANTIC(
588 m4_quote(m4_do([-Wno-long-long -Wno-variadic-macros ],
589 [-Wno-overlength-strings])), [strict_warn])
590 ACX_PROG_CXX_WARNINGS_ARE_ERRORS([manual], [strict_warn])
591
592 # The above macros do nothing if the compiler is not GCC. However, the
593 # Makefile has more goo to add other flags, so these variables are used
594 # to enable warnings only for GCC.
595 warn_cflags=
596 warn_cxxflags=
597 if test "x$GCC" = "xyes"; then
598 warn_cflags='$(GCC_WARN_CFLAGS)'
599 warn_cxxflags='$(GCC_WARN_CXXFLAGS)'
600 fi
601 AC_SUBST(warn_cflags)
602 AC_SUBST(warn_cxxflags)
603
604 # Disable exceptions and RTTI if building with g++
605 ACX_PROG_CC_WARNING_OPTS(
606 m4_quote(m4_do([-fno-exceptions -fno-rtti -fasynchronous-unwind-tables])),
607 [noexception_flags])
608
609 # Enable expensive internal checks
610 is_release=
611 if test x"`cat $srcdir/DEV-PHASE`" != xexperimental; then
612 is_release=yes
613 fi
614
615 AC_ARG_ENABLE(checking,
616 [AS_HELP_STRING([[--enable-checking[=LIST]]],
617 [enable expensive run-time checks. With LIST,
618 enable only specific categories of checks.
619 Categories are: yes,no,all,none,release.
620 Flags are: assert,df,extra,fold,gc,gcac,gimple,misc,
621 rtlflag,rtl,runtime,tree,valgrind,types])],
622 [ac_checking_flags="${enableval}"],[
623 # Determine the default checks.
624 if test x$is_release = x ; then
625 ac_checking_flags=yes,extra
626 else
627 ac_checking_flags=release
628 fi])
629 IFS="${IFS= }"; ac_save_IFS="$IFS"; IFS="$IFS,"
630 for check in release $ac_checking_flags
631 do
632 case $check in
633 # these set all the flags to specific states
634 yes) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking= ;
635 ac_fold_checking= ; ac_gc_checking=1 ; ac_extra_checking= ;
636 ac_gc_always_collect= ; ac_gimple_checking=1 ; ac_rtl_checking= ;
637 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
638 ac_tree_checking=1 ; ac_valgrind_checking= ;
639 ac_types_checking=1 ;;
640 no|none) ac_assert_checking= ; ac_checking= ; ac_df_checking= ;
641 ac_fold_checking= ; ac_gc_checking= ; ac_extra_checking= ;
642 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
643 ac_rtlflag_checking= ; ac_runtime_checking= ;
644 ac_tree_checking= ; ac_valgrind_checking= ;
645 ac_types_checking= ;;
646 all) ac_assert_checking=1 ; ac_checking=1 ; ac_df_checking=1 ;
647 ac_fold_checking=1 ; ac_gc_checking=1 ; ac_extra_checking=1 ;
648 ac_gc_always_collect=1 ; ac_gimple_checking=1 ; ac_rtl_checking=1 ;
649 ac_rtlflag_checking=1 ; ac_runtime_checking=1 ;
650 ac_tree_checking=1 ; ac_valgrind_checking= ;
651 ac_types_checking=1 ;;
652 release) ac_assert_checking=1 ; ac_checking= ; ac_df_checking= ;
653 ac_fold_checking= ; ac_gc_checking= ; ac_extra_checking= ;
654 ac_gc_always_collect= ; ac_gimple_checking= ; ac_rtl_checking= ;
655 ac_rtlflag_checking= ; ac_runtime_checking=1 ;
656 ac_tree_checking= ; ac_valgrind_checking= ;
657 ac_types_checking= ;;
658 # these enable particular checks
659 assert) ac_assert_checking=1 ;;
660 df) ac_df_checking=1 ;;
661 extra) ac_extra_checking=1 ;;
662 fold) ac_fold_checking=1 ;;
663 gc) ac_gc_checking=1 ;;
664 gcac) ac_gc_always_collect=1 ;;
665 gimple) ac_gimple_checking=1 ;;
666 misc) ac_checking=1 ;;
667 rtl) ac_rtl_checking=1 ;;
668 rtlflag) ac_rtlflag_checking=1 ;;
669 runtime) ac_runtime_checking=1 ;;
670 tree) ac_tree_checking=1 ;;
671 types) ac_types_checking=1 ;;
672 valgrind) ac_valgrind_checking=1 ;;
673 *) AC_MSG_ERROR(unknown check category $check) ;;
674 esac
675 done
676 IFS="$ac_save_IFS"
677
678 nocommon_flag=""
679 if test x$ac_checking != x ; then
680 AC_DEFINE(CHECKING_P, 1,
681 [Define to 0/1 if you want more run-time sanity checks. This one gets a grab
682 bag of miscellaneous but relatively cheap checks.])
683 nocommon_flag=-fno-common
684 else
685 AC_DEFINE(CHECKING_P, 0)
686 fi
687 AC_SUBST(nocommon_flag)
688 if test x$ac_extra_checking != x ; then
689 AC_DEFINE(ENABLE_EXTRA_CHECKING, 1,
690 [Define to 0/1 if you want extra run-time checking that might affect code
691 generation.])
692 else
693 AC_DEFINE(ENABLE_EXTRA_CHECKING, 0)
694 fi
695 if test x$ac_df_checking != x ; then
696 AC_DEFINE(ENABLE_DF_CHECKING, 1,
697 [Define if you want more run-time sanity checks for dataflow.])
698 fi
699 if test x$ac_assert_checking != x ; then
700 AC_DEFINE(ENABLE_ASSERT_CHECKING, 1,
701 [Define if you want assertions enabled. This is a cheap check.])
702 fi
703 if test x$ac_gimple_checking != x ; then
704 AC_DEFINE(ENABLE_GIMPLE_CHECKING, 1,
705 [Define if you want operations on GIMPLE (the basic data structure of
706 the high-level optimizers) to be checked for dynamic type safety at
707 runtime. This is moderately expensive.])
708 fi
709 GCC_TARGET_TEMPLATE(ENABLE_RUNTIME_CHECKING)
710 if test x$ac_runtime_checking != x ; then
711 AC_DEFINE(ENABLE_RUNTIME_CHECKING, 1,
712 [Define if you want runtime assertions enabled. This is a cheap check.])
713 fi
714 if test x$ac_tree_checking != x ; then
715 AC_DEFINE(ENABLE_TREE_CHECKING, 1,
716 [Define if you want all operations on trees (the basic data
717 structure of the front ends) to be checked for dynamic type safety
718 at runtime. This is moderately expensive.
719 ])
720 TREECHECKING=yes
721 fi
722 if test x$ac_types_checking != x ; then
723 AC_DEFINE(ENABLE_TYPES_CHECKING, 1,
724 [Define if you want all gimple types to be verified after gimplifiation.
725 This is cheap.
726 ])
727 fi
728 AC_SUBST(TREECHECKING)
729 if test x$ac_rtl_checking != x ; then
730 AC_DEFINE(ENABLE_RTL_CHECKING, 1,
731 [Define if you want all operations on RTL (the basic data structure
732 of the optimizer and back end) to be checked for dynamic type safety
733 at runtime. This is quite expensive.])
734 fi
735 if test x$ac_rtlflag_checking != x ; then
736 AC_DEFINE(ENABLE_RTL_FLAG_CHECKING, 1,
737 [Define if you want RTL flag accesses to be checked against the RTL
738 codes that are supported for each access macro. This is relatively
739 cheap.])
740 fi
741 if test x$ac_gc_checking != x ; then
742 AC_DEFINE(ENABLE_GC_CHECKING, 1,
743 [Define if you want the garbage collector to do object poisoning and
744 other memory allocation checks. This is quite expensive.])
745 fi
746 if test x$ac_gc_always_collect != x ; then
747 AC_DEFINE(ENABLE_GC_ALWAYS_COLLECT, 1,
748 [Define if you want the garbage collector to operate in maximally
749 paranoid mode, validating the entire heap and collecting garbage at
750 every opportunity. This is extremely expensive.])
751 fi
752 if test x$ac_fold_checking != x ; then
753 AC_DEFINE(ENABLE_FOLD_CHECKING, 1,
754 [Define if you want fold checked that it never destructs its argument.
755 This is quite expensive.])
756 fi
757 valgrind_path_defines=
758 valgrind_command=
759
760 dnl # This check AC_REQUIREs various stuff, so it *must not* be inside
761 dnl # an if statement. This was the source of very frustrating bugs
762 dnl # in converting to autoconf 2.5x!
763 AC_CHECK_HEADER(valgrind.h, have_valgrind_h=yes, have_valgrind_h=no)
764
765 # It is certainly possible that there's valgrind but no valgrind.h.
766 # GCC relies on making annotations so we must have both.
767 AC_MSG_CHECKING(for VALGRIND_DISCARD in <valgrind/memcheck.h>)
768 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
769 [[#include <valgrind/memcheck.h>
770 #ifndef VALGRIND_DISCARD
771 #error VALGRIND_DISCARD not defined
772 #endif]])],
773 [gcc_cv_header_valgrind_memcheck_h=yes],
774 [gcc_cv_header_valgrind_memcheck_h=no])
775 AC_MSG_RESULT($gcc_cv_header_valgrind_memcheck_h)
776 AC_MSG_CHECKING(for VALGRIND_DISCARD in <memcheck.h>)
777 AC_PREPROC_IFELSE([AC_LANG_SOURCE(
778 [[#include <memcheck.h>
779 #ifndef VALGRIND_DISCARD
780 #error VALGRIND_DISCARD not defined
781 #endif]])],
782 [gcc_cv_header_memcheck_h=yes],
783 [gcc_cv_header_memcheck_h=no])
784 AC_MSG_RESULT($gcc_cv_header_memcheck_h)
785 if test $gcc_cv_header_valgrind_memcheck_h = yes; then
786 AC_DEFINE(HAVE_VALGRIND_MEMCHECK_H, 1,
787 [Define if valgrind's valgrind/memcheck.h header is installed.])
788 fi
789 if test $gcc_cv_header_memcheck_h = yes; then
790 AC_DEFINE(HAVE_MEMCHECK_H, 1,
791 [Define if valgrind's memcheck.h header is installed.])
792 fi
793
794 if test x$ac_valgrind_checking != x ; then
795 AM_PATH_PROG_WITH_TEST(valgrind_path, valgrind,
796 [$ac_dir/$ac_word --version | grep valgrind- >/dev/null 2>&1])
797 if test "x$valgrind_path" = "x" \
798 || (test $have_valgrind_h = no \
799 && test $gcc_cv_header_memcheck_h = no \
800 && test $gcc_cv_header_valgrind_memcheck_h = no); then
801 AC_MSG_ERROR([*** Can't find both valgrind and valgrind/memcheck.h, memcheck.h or valgrind.h])
802 fi
803 valgrind_path_defines=-DVALGRIND_PATH='\"'$valgrind_path'\"'
804 valgrind_command="$valgrind_path -q"
805 AC_DEFINE(ENABLE_VALGRIND_CHECKING, 1,
806 [Define if you want to run subprograms and generated programs
807 through valgrind (a memory checker). This is extremely expensive.])
808 fi
809 AC_SUBST(valgrind_path_defines)
810 AC_SUBST(valgrind_command)
811
812 # Enable code coverage collection
813 AC_ARG_ENABLE(coverage,
814 [AS_HELP_STRING([[--enable-coverage[=LEVEL]]],
815 [enable compiler's code coverage collection.
816 Use to measure compiler performance and locate
817 unused parts of the compiler. With LEVEL, specify
818 optimization. Values are opt, noopt,
819 default is noopt])],
820 [case "${enableval}" in
821 yes|noopt)
822 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O0 -fkeep-static-functions"
823 ;;
824 opt)
825 coverage_flags="-fprofile-arcs -ftest-coverage -frandom-seed=\$@ -O2 -fkeep-static-functions"
826 ;;
827 no)
828 # a.k.a. --disable-coverage
829 coverage_flags=""
830 ;;
831 *)
832 AC_MSG_ERROR(unknown coverage setting $enableval)
833 ;;
834 esac],
835 [coverage_flags=""])
836 AC_SUBST(coverage_flags)
837
838 AC_ARG_ENABLE(gather-detailed-mem-stats,
839 [AS_HELP_STRING([--enable-gather-detailed-mem-stats],
840 [enable detailed memory allocation stats gathering])], [],
841 [enable_gather_detailed_mem_stats=no])
842 gather_stats=`if test $enable_gather_detailed_mem_stats != no; then echo 1; else echo 0; fi`
843 AC_DEFINE_UNQUOTED(GATHER_STATISTICS, $gather_stats,
844 [Define to enable detailed memory allocation stats gathering.])
845
846 AC_ARG_ENABLE(valgrind-annotations,
847 [AS_HELP_STRING([--enable-valgrind-annotations],
848 [enable valgrind runtime interaction])], [],
849 [enable_valgrind_annotations=no])
850 if test x$enable_valgrind_annotations != xno \
851 || test x$ac_valgrind_checking != x; then
852 if (test $have_valgrind_h = no \
853 && test $gcc_cv_header_memcheck_h = no \
854 && test $gcc_cv_header_valgrind_memcheck_h = no); then
855 AC_MSG_ERROR([*** Can't find valgrind/memcheck.h, memcheck.h or valgrind.h])
856 fi
857 AC_DEFINE(ENABLE_VALGRIND_ANNOTATIONS, 1,
858 [Define to get calls to the valgrind runtime enabled.])
859 fi
860
861 # -------------------------------
862 # Miscenalleous configure options
863 # -------------------------------
864
865 # Determine whether or not multilibs are enabled.
866 AC_ARG_ENABLE(multilib,
867 [AS_HELP_STRING([--enable-multilib],
868 [enable library support for multiple ABIs])],
869 [], [enable_multilib=yes])
870 AC_SUBST(enable_multilib)
871
872 # Determine whether or not multiarch is enabled.
873 AC_ARG_ENABLE(multiarch,
874 [AS_HELP_STRING([--enable-multiarch],
875 [enable support for multiarch paths])],
876 [case "${enableval}" in
877 yes|no|auto) enable_multiarch=$enableval;;
878 *) AC_MSG_ERROR(bad value ${enableval} given for --enable-multiarch option) ;;
879 esac], [enable_multiarch=auto])
880 if test x${enable_multiarch} = xauto; then
881 if test x${with_native_system_header_dir} != x; then
882 ma_msg_suffix=", disabled auto check (configured with --native-system-header-dir)"
883 enable_multiarch=no
884 fi
885 if test x$host != x$target && test "x$with_sysroot" = x; then
886 ma_msg_suffix=", disabled auto check (cross build configured without --with-sysroot)"
887 enable_multiarch=no
888 fi
889 fi
890 if test x${enable_multiarch} = xyes; then
891 AC_DEFINE(ENABLE_MULTIARCH, 1, [If --with-multiarch option is used])
892 fi
893 AC_MSG_CHECKING(for multiarch configuration)
894 AC_SUBST(enable_multiarch)
895 AC_MSG_RESULT($enable_multiarch$ma_msg_suffix)
896
897 # needed for setting the multiarch name for soft-float/hard-float ABIs
898 AC_SUBST(with_cpu)
899 AC_SUBST(with_float)
900
901 # default stack clash protection guard size as power of twos in bytes.
902 # Please keep these in sync with params.def.
903 stk_clash_min=12
904 stk_clash_max=30
905
906 # Keep the default value when the option is not used to 0, this allows us to
907 # distinguish between the cases where the user specifially set a value via
908 # configure and when the normal default value is used.
909 AC_ARG_WITH(stack-clash-protection-guard-size,
910 [AS_HELP_STRING([--with-stack-clash-protection-guard-size=size],
911 [Set the default stack clash protection guard size for specific targets as a power of two in bytes.])],
912 [DEFAULT_STK_CLASH_GUARD_SIZE="$with_stack_clash_protection_guard_size"], [DEFAULT_STK_CLASH_GUARD_SIZE=0])
913 if test $DEFAULT_STK_CLASH_GUARD_SIZE -ne 0 \
914 && (test $DEFAULT_STK_CLASH_GUARD_SIZE -lt $stk_clash_min \
915 || test $DEFAULT_STK_CLASH_GUARD_SIZE -gt $stk_clash_max); then
916 AC_MSG_ERROR(m4_normalize([
917 Invalid value $DEFAULT_STK_CLASH_GUARD_SIZE for --with-stack-clash-protection-guard-size. \
918 Must be between $stk_clash_min and $stk_clash_max.]))
919 fi
920
921 AC_DEFINE_UNQUOTED(DEFAULT_STK_CLASH_GUARD_SIZE, $DEFAULT_STK_CLASH_GUARD_SIZE,
922 [Define to larger than zero set the default stack clash protector size.])
923
924 # Specify the number of splits of match.pd to generate.
925 AC_ARG_WITH(matchpd-partitions,
926 [AS_HELP_STRING([--with-matchpd-partitions=num],
927 [Set the number of partitions to make for gimple and generic when splitting match.pd. [default=10]])],
928 [DEFAULT_MATCHPD_PARTITIONS="$with_matchpd_partitions"], [DEFAULT_MATCHPD_PARTITIONS=10])
929 if (test $DEFAULT_MATCHPD_PARTITIONS -lt 1); then
930 AC_MSG_ERROR(m4_normalize([
931 Invalid value $DEFAULT_MATCHPD_PARTITIONS for --with-matchpd-partitions. \
932 Cannot be negative.]))
933 fi
934
935 AC_SUBST(DEFAULT_MATCHPD_PARTITIONS)
936
937 # Enable __cxa_atexit for C++.
938 AC_ARG_ENABLE(__cxa_atexit,
939 [AS_HELP_STRING([--enable-__cxa_atexit], [enable __cxa_atexit for C++])],
940 [], [])
941
942 # Enable C extension for decimal float if target supports it.
943 GCC_AC_ENABLE_DECIMAL_FLOAT([$target])
944
945 dfp=`if test $enable_decimal_float != no; then echo 1; else echo 0; fi`
946 AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_FLOAT, $dfp,
947 [Define to 1 to enable decimal float extension to C.])
948
949 # Use default_decimal_float for dependency.
950 enable_decimal_float=$default_decimal_float
951
952 bid=`if test $enable_decimal_float = bid; then echo 1; else echo 0; fi`
953 AC_DEFINE_UNQUOTED(ENABLE_DECIMAL_BID_FORMAT, $bid,
954 [Define to 1 to specify that we are using the BID decimal floating
955 point format instead of DPD])
956
957 # Enable C extension for fixed-point arithmetic.
958 AC_ARG_ENABLE(fixed-point,
959 [AS_HELP_STRING([--enable-fixed-point],
960 [enable fixed-point arithmetic extension to C])],
961 [],
962 [
963 case $target in
964 arm*)
965 enable_fixed_point=yes
966 ;;
967
968 mips*-*-*)
969 enable_fixed_point=yes
970 ;;
971 loongarch*-*-*)
972 enable_fixed_point=yes
973 ;;
974 *)
975 AC_MSG_WARN([fixed-point is not supported for this target, ignored])
976 enable_fixed_point=no
977 ;;
978 esac
979 ])
980 AC_SUBST(enable_fixed_point)
981
982 fixedpoint=`if test $enable_fixed_point = yes; then echo 1; else echo 0; fi`
983 AC_DEFINE_UNQUOTED(ENABLE_FIXED_POINT, $fixedpoint,
984 [Define to 1 to enable fixed-point arithmetic extension to C.])
985
986 # Enable threads
987 # Pass with no value to take the default
988 # Pass with a value to specify a thread package
989 AC_ARG_ENABLE(threads,
990 [AS_HELP_STRING([[--enable-threads[=LIB]]],
991 [enable thread usage for target GCC,
992 using LIB thread package])],,
993 [enable_threads=''])
994
995 AC_ARG_ENABLE(tls,
996 [AS_HELP_STRING([--enable-tls],
997 [enable or disable generation of tls code
998 overriding the assembler check for tls support])],
999 [
1000 case $enable_tls in
1001 yes | no) ;;
1002 *) AC_MSG_ERROR(['$enable_tls' is an invalid value for --enable-tls.
1003 Valid choices are 'yes' and 'no'.]) ;;
1004 esac
1005 ], [enable_tls=''])
1006
1007 AC_ARG_ENABLE(vtable-verify,
1008 [AS_HELP_STRING([--enable-vtable-verify],
1009 [enable vtable verification feature])],,
1010 [enable_vtable_verify=no])
1011 vtable_verify=`if test x$enable_vtable_verify = xyes; then echo 1; else echo 0; fi`
1012 AC_DEFINE_UNQUOTED(ENABLE_VTABLE_VERIFY, $vtable_verify,
1013 [Define 0/1 if vtable verification feature is enabled.])
1014
1015 AC_ARG_ENABLE(analyzer,
1016 [AS_HELP_STRING([--disable-analyzer],
1017 [disable -fanalyzer static analyzer])],
1018 if test x$enable_analyzer = xno; then
1019 analyzer=0
1020 else
1021 analyzer=1
1022 fi,
1023 analyzer=1)
1024 AC_DEFINE_UNQUOTED(ENABLE_ANALYZER, $analyzer,
1025 [Define 0/1 if static analyzer feature is enabled.])
1026
1027 AC_ARG_ENABLE(objc-gc,
1028 [AS_HELP_STRING([--enable-objc-gc],
1029 [enable the use of Boehm's garbage collector with
1030 the GNU Objective-C runtime])],
1031 if test x$enable_objc_gc = xno; then
1032 objc_boehm_gc=''
1033 else
1034 objc_boehm_gc=1
1035 fi,
1036 objc_boehm_gc='')
1037
1038 AC_ARG_WITH(dwarf2,
1039 [AS_HELP_STRING([--with-dwarf2], [force the default debug format to be DWARF 2 (or later)])],
1040 dwarf2="$with_dwarf2",
1041 dwarf2=no)
1042
1043 AC_ARG_ENABLE(shared,
1044 [AS_HELP_STRING([--disable-shared], [don't provide a shared libgcc])],
1045 [
1046 case $enable_shared in
1047 yes | no) ;;
1048 *)
1049 enable_shared=no
1050 IFS="${IFS= }"; ac_save_ifs="$IFS"; IFS="${IFS}:,"
1051 for pkg in $enableval; do
1052 if test "X$pkg" = "Xgcc" || test "X$pkg" = "Xlibgcc"; then
1053 enable_shared=yes
1054 fi
1055 done
1056 IFS="$ac_save_ifs"
1057 ;;
1058 esac
1059 ], [enable_shared=yes])
1060 AC_SUBST(enable_shared)
1061
1062 AC_ARG_ENABLE(gcov,
1063 [ --disable-gcov don't provide libgcov and related host tools],
1064 [], [case $target in
1065 bpf-*-*)
1066 enable_gcov=no
1067 ;;
1068 *)
1069 enable_gcov=yes
1070 ;;
1071 esac])
1072
1073 AC_SUBST(enable_gcov)
1074
1075 AC_ARG_WITH(specs,
1076 [AS_HELP_STRING([--with-specs=SPECS],
1077 [add SPECS to driver command-line processing])],
1078 [CONFIGURE_SPECS=$withval],
1079 [CONFIGURE_SPECS=]
1080 )
1081 AC_SUBST(CONFIGURE_SPECS)
1082
1083 ACX_PKGVERSION([GCC])
1084 ACX_BUGURL([https://gcc.gnu.org/bugs/])
1085
1086 # Allow overriding the default URL for documentation
1087 AC_ARG_WITH(documentation-root-url,
1088 AS_HELP_STRING([--with-documentation-root-url=URL],
1089 [Root for documentation URLs]),
1090 [case "$withval" in
1091 yes) AC_MSG_ERROR([documentation root URL not specified]) ;;
1092 no) AC_MSG_ERROR([documentation root URL not specified]) ;;
1093 */) DOCUMENTATION_ROOT_URL="$withval" ;;
1094 *) AC_MSG_ERROR([documentation root URL does not end with /]) ;;
1095 esac],
1096 DOCUMENTATION_ROOT_URL="https://gcc.gnu.org/onlinedocs/"
1097 )
1098 AC_DEFINE_UNQUOTED(DOCUMENTATION_ROOT_URL,"$DOCUMENTATION_ROOT_URL",
1099 [Define to the root for documentation URLs.])
1100
1101 # Allow overriding the default URL for GCC changes
1102 AC_ARG_WITH(changes-root-url,
1103 AS_HELP_STRING([--with-changes-root-url=URL],
1104 [Root for GCC changes URLs]),
1105 [case "$withval" in
1106 yes) AC_MSG_ERROR([changes root URL not specified]) ;;
1107 no) AC_MSG_ERROR([changes root URL not specified]) ;;
1108 */) CHANGES_ROOT_URL="$withval" ;;
1109 *) AC_MSG_ERROR([changes root URL does not end with /]) ;;
1110 esac],
1111 CHANGES_ROOT_URL="https://gcc.gnu.org/"
1112 )
1113 AC_DEFINE_UNQUOTED(CHANGES_ROOT_URL,"$CHANGES_ROOT_URL",
1114 [Define to the root for URLs about GCC changes.])
1115
1116 # Sanity check enable_languages in case someone does not run the toplevel
1117 # configure # script.
1118 AC_ARG_ENABLE(languages,
1119 [AS_HELP_STRING([--enable-languages=LIST], [specify which front-ends to build])],
1120 [case ,${enable_languages}, in
1121 ,,|,yes,)
1122 # go safe -- we cannot be much sure without the toplevel
1123 # configure's
1124 # analysis of which target libs are present and usable
1125 enable_languages=c
1126 ;;
1127 *,all,*)
1128 AC_MSG_ERROR([only the toplevel supports --enable-languages=all])
1129 ;;
1130 *,c,*)
1131 ;;
1132 *)
1133 enable_languages=c,${enable_languages}
1134 ;;
1135 esac],
1136 [enable_languages=c])
1137
1138 # If top-level libada has been disabled, then wire in install-gnatlib
1139 # invocation with `make install', so that one can build and install
1140 # the library manually with `make -C gcc all gnatlib gnattools install'.
1141 if test x"$enable_libada" = xno; then
1142 gnat_install_lib=gnat-install-lib
1143 else
1144 gnat_install_lib=
1145 fi
1146 AC_SUBST(gnat_install_lib)
1147
1148 if test x"$enable_as_accelerator_for" != x; then
1149 AC_DEFINE(ACCEL_COMPILER, 1,
1150 [Define if this compiler should be built as the offload target compiler.])
1151 enable_as_accelerator=yes
1152 sedscript="s#${target_noncanonical}#${enable_as_accelerator_for}-accel-${target_noncanonical}#"
1153 program_transform_name=`echo $program_transform_name | sed $sedscript`
1154 accel_dir_suffix=/accel/${target_noncanonical}
1155 real_target_noncanonical=${enable_as_accelerator_for}
1156 fi
1157 AC_SUBST(enable_as_accelerator)
1158 AC_SUBST(real_target_noncanonical)
1159 AC_SUBST(accel_dir_suffix)
1160
1161 for tgt in `echo $enable_offload_targets | sed 's/,/ /g'`; do
1162 tgt=`echo $tgt | sed 's/=.*//'`
1163
1164 enable_offloading=1
1165 case "$tgt" in
1166 amdgcn*)
1167 omp_device_property=omp-device-properties-gcn
1168 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/gcn/t-omp-device"
1169 ;;
1170 nvptx*)
1171 omp_device_property=omp-device-properties-nvptx
1172 omp_device_property_tmake_file="${omp_device_property_tmake_file} \$(srcdir)/config/nvptx/t-omp-device"
1173 ;;
1174 *)
1175 AC_MSG_ERROR([unknown offload target specified])
1176 ;;
1177 esac
1178 omp_device_properties="${omp_device_properties} ${tgt}=${omp_device_property}"
1179 omp_device_property_deps="${omp_device_property_deps} ${omp_device_property}"
1180
1181 if test x"$offload_targets" = x; then
1182 offload_targets=$tgt
1183 else
1184 offload_targets="$offload_targets,$tgt"
1185 fi
1186 done
1187 AC_SUBST(omp_device_properties)
1188 AC_SUBST(omp_device_property_deps)
1189
1190 AC_DEFINE_UNQUOTED(OFFLOAD_TARGETS, "$offload_targets",
1191 [Define to offload targets, separated by commas.])
1192 if test x"$enable_offloading" != x; then
1193 AC_DEFINE(ENABLE_OFFLOADING, 1,
1194 [Define this to enable support for offloading.])
1195 else
1196 AC_DEFINE(ENABLE_OFFLOADING, 0,
1197 [Define this to enable support for offloading.])
1198 fi
1199
1200 if test "x$enable_offload_defaulted" = xyes; then
1201 AC_DEFINE(OFFLOAD_DEFAULTED, 1,
1202 [Define to 1 to if -foffload is defaulted])
1203 fi
1204
1205 AC_ARG_WITH(multilib-list,
1206 [AS_HELP_STRING([--with-multilib-list], [select multilibs (AArch64, ARM, AVR, OR1K, RISC-V, SH and x86-64 only)])],
1207 :,
1208 with_multilib_list=default)
1209
1210 AC_ARG_WITH(multilib-generator,
1211 [AS_HELP_STRING([--with-multilib-generator], [Multi-libs configuration string (RISC-V only)])],
1212 :,
1213 with_multilib_generator=default)
1214
1215 # -------------------------
1216 # Checks for other programs
1217 # -------------------------
1218
1219 AC_PROG_MAKE_SET
1220
1221 # Find some useful tools
1222 AC_PROG_AWK
1223 # We need awk to create options.cc and options.h.
1224 # Bail out if it's missing.
1225 case ${AWK} in
1226 "") AC_MSG_ERROR([can't build without awk, bailing out]) ;;
1227 esac
1228
1229 gcc_AC_PROG_LN_S
1230 ACX_PROG_LN($LN_S)
1231 AC_PROG_RANLIB
1232 ranlib_flags=""
1233 AC_SUBST(ranlib_flags)
1234
1235 gcc_AC_PROG_INSTALL
1236
1237 # See if cmp has --ignore-initial.
1238 gcc_AC_PROG_CMP_IGNORE_INITIAL
1239
1240 # See if we have the mktemp command.
1241 AC_CHECK_PROG(have_mktemp_command, mktemp, yes, no)
1242
1243 # See if makeinfo has been installed and is modern enough
1244 # that we can use it.
1245 ACX_CHECK_PROG_VER(MAKEINFO, makeinfo, --version,
1246 [GNU texinfo.* \([0-9][0-9.]*\)],
1247 [4.[7-9]*|4.[1-9][0-9]*|[5-9]*|[1-9][0-9]*])
1248 if test $gcc_cv_prog_makeinfo_modern = no; then
1249 AC_MSG_WARN([
1250 *** Makeinfo is missing or too old.
1251 *** Info documentation will not be built.])
1252 BUILD_INFO=
1253 else
1254 BUILD_INFO=info
1255 fi
1256 AC_SUBST(BUILD_INFO)
1257
1258 # Determine whether makeinfo supports the CONTENTS_OUTPUT_LOCATION variable.
1259 # If it does, we want to pass it to makeinfo in order to restore the old
1260 # behavior of @{summary,}contents placement.
1261 MAKEINFO_TOC_INLINE_FLAG=
1262 AS_IF([test x"$MAKEINFO" != x], [
1263 AC_CACHE_CHECK([for CONTENTS_OUTPUT_LOCATION support in $MAKEINFO],
1264 [gcc_cv_texi_add_toc_inline_flags], [
1265 # Detect the unknown variable CONTENTS_OUTPUT_LOCATION warning
1266 if "$MAKEINFO" -c CONTENTS_OUTPUT_LOCATION=inline </dev/null 2>&1 \
1267 | grep CONTENTS_OUTPUT_LOCATION >/dev/null; then
1268 gcc_cv_texi_add_toc_inline_flags=no
1269 else
1270 gcc_cv_texi_add_toc_inline_flags=yes
1271 fi
1272 ])
1273 if test x"$gcc_cv_texi_add_toc_inline_flags" = xyes; then
1274 MAKEINFO_TOC_INLINE_FLAG='-c CONTENTS_OUTPUT_LOCATION=inline'
1275 fi
1276 ])
1277 AC_SUBST([MAKEINFO_TOC_INLINE_FLAG])
1278
1279 # Is pod2man recent enough to regenerate manpages?
1280 AC_MSG_CHECKING([for recent Pod::Man])
1281 if (perl -e 'use 1.10 Pod::Man') >/dev/null 2>&1; then
1282 AC_MSG_RESULT(yes)
1283 GENERATED_MANPAGES=generated-manpages
1284 else
1285 AC_MSG_RESULT(no)
1286 GENERATED_MANPAGES=
1287 fi
1288 AC_SUBST(GENERATED_MANPAGES)
1289
1290 MISSING="${CONFIG_SHELL-/bin/sh} $ac_aux_dir/missing"
1291
1292 # How about lex?
1293 dnl Don't use AC_PROG_LEX; we insist on flex.
1294 dnl LEXLIB is not useful in gcc.
1295 AC_CHECK_PROGS([FLEX], flex, [$MISSING flex])
1296
1297 # Bison?
1298 AC_CHECK_PROGS([BISON], bison, [$MISSING bison])
1299
1300 # Python3?
1301 ACX_CHECK_PROG_VER(PYTHON, python3, --version,
1302 [Python.* \([0-9][0-9.]*\)],
1303 [3.[4-9]*|3.[1-9][0-9]*|[4-9].*|[1-9][0-9]*])
1304 if test $gcc_cv_prog_python3_modern = no; then
1305 AC_MSG_WARN([
1306 *** Python3 is missing.
1307 *** Documentation for modula-2 will not include the target SYSTEM module.])
1308 HAVE_PYTHON=no
1309 else
1310 HAVE_PYTHON=yes
1311 fi
1312 AC_SUBST(HAVE_PYTHON)
1313
1314 # Binutils are not build modules, unlike bison/flex/makeinfo. So we
1315 # check for build == host before using them.
1316
1317 # NM
1318 if test x${build} = x${host} && test -f $srcdir/../binutils/nm.c \
1319 && test -d ../binutils ; then
1320 NM='${objdir}/../binutils/nm-new'
1321 else
1322 AC_CHECK_PROG(NM, nm, nm, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing nm)
1323 fi
1324
1325 # AR
1326 if test x${build} = x${host} && test -f $srcdir/../binutils/ar.c \
1327 && test -d ../binutils ; then
1328 AR='${objdir}/../binutils/ar'
1329 else
1330 AC_CHECK_PROG(AR, ar, ar, ${CONFIG_SHELL-/bin/sh} ${srcdir}/../missing ar)
1331 fi
1332
1333 # The jit documentation looks better if built with sphinx, but can be
1334 # built with texinfo if sphinx is not available.
1335 # Set "doc_build_sys" to "sphinx" or "texinfo" accordingly.
1336 AC_CHECK_PROG(doc_build_sys, sphinx-build, sphinx, texinfo)
1337
1338 # --------------------
1339 # Checks for C headers
1340 # --------------------
1341
1342 # Need to reject headers which give warnings, so that the -Werror bootstrap
1343 # works later. *sigh* This needs to come before all header checks.
1344 AC_PROG_CPP_WERROR
1345
1346 AC_HEADER_STDC
1347 AC_HEADER_TIME
1348 ACX_HEADER_STRING
1349 AC_HEADER_SYS_WAIT
1350 AC_HEADER_TIOCGWINSZ
1351 AC_CHECK_HEADERS(limits.h stddef.h string.h strings.h stdlib.h time.h iconv.h \
1352 fcntl.h ftw.h unistd.h sys/auxv.h sys/file.h sys/time.h sys/mman.h \
1353 sys/resource.h sys/param.h sys/times.h sys/stat.h sys/locking.h \
1354 direct.h malloc.h langinfo.h ldfcn.h locale.h wchar.h)
1355
1356 # Check for thread headers.
1357 AC_CHECK_HEADER(thread.h, [have_thread_h=yes], [have_thread_h=])
1358 AC_CHECK_HEADER(pthread.h, [have_pthread_h=yes], [have_pthread_h=])
1359
1360 # These tests can't be done till we know if we have limits.h.
1361 gcc_AC_C_CHAR_BIT
1362 AC_C_BIGENDIAN
1363
1364 # ----------------------
1365 # Checks for C++ headers
1366 # ----------------------
1367
1368 dnl Autoconf will give an error in the configure script if there is no
1369 dnl C++ preprocessor. Hack to prevent that.
1370 m4_pushdef([AC_MSG_ERROR], m4_defn([AC_MSG_WARN]))[]dnl
1371 AC_PROG_CXXCPP
1372 m4_popdef([AC_MSG_ERROR])[]dnl
1373
1374 AC_CHECK_HEADERS(unordered_map)
1375 AC_CHECK_HEADERS(tr1/unordered_map)
1376 AC_CHECK_HEADERS(ext/hash_map)
1377
1378 # --------
1379 # Dependency checking.
1380 # --------
1381
1382 ZW_CREATE_DEPDIR
1383 AC_CONFIG_COMMANDS([gccdepdir],[
1384 ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/mkinstalldirs build/$DEPDIR
1385 for lang in $subdirs c-family common analyzer rtl-ssa
1386 do
1387 ${CONFIG_SHELL-/bin/sh} $ac_aux_dir/mkinstalldirs $lang/$DEPDIR
1388 done], [subdirs="$subdirs" ac_aux_dir=$ac_aux_dir DEPDIR=$DEPDIR])
1389
1390 ZW_PROG_COMPILER_DEPENDENCIES([CXX])
1391
1392 # --------
1393 # UNSORTED
1394 # --------
1395
1396
1397 # These libraries may be used by collect2.
1398 # We may need a special search path to get them linked.
1399 AC_CACHE_CHECK(for collect2 libraries, gcc_cv_collect2_libs,
1400 [save_LIBS="$LIBS"
1401 for libs in '' -lld -lmld \
1402 '-L/usr/lib/cmplrs/cc2.11 -lmld' \
1403 '-L/usr/lib/cmplrs/cc3.11 -lmld'
1404 do
1405 LIBS="$libs"
1406 AC_TRY_LINK_FUNC(ldopen,
1407 [gcc_cv_collect2_libs="$libs"; break])
1408 done
1409 LIBS="$save_LIBS"
1410 test -z "$gcc_cv_collect2_libs" && gcc_cv_collect2_libs='none required'])
1411 case $gcc_cv_collect2_libs in
1412 "none required") ;;
1413 *) COLLECT2_LIBS=$gcc_cv_collect2_libs ;;
1414 esac
1415 AC_SUBST(COLLECT2_LIBS)
1416
1417 # When building Ada code on Alpha, we need exc_resume which is usually in
1418 # -lexc. So test for it.
1419 save_LIBS="$LIBS"
1420 LIBS=
1421 AC_SEARCH_LIBS(exc_resume, exc)
1422 GNAT_LIBEXC="$LIBS"
1423 LIBS="$save_LIBS"
1424 AC_SUBST(GNAT_LIBEXC)
1425
1426 # To support -mcpu=native on Solaris/SPARC, we need libkstat.
1427 save_LIBS="$LIBS"
1428 LIBS=
1429 AC_SEARCH_LIBS(kstat_open, kstat)
1430 EXTRA_GCC_LIBS="$LIBS"
1431 LIBS="$save_LIBS"
1432 AC_SUBST(EXTRA_GCC_LIBS)
1433
1434 # Solaris needs libsocket and libnsl for socket functions before 11.4.
1435 # C++ needs those for libcody.
1436 save_LIBS="$LIBS"
1437 LIBS=
1438 AX_LIB_SOCKET_NSL
1439 NETLIBS="$LIBS"
1440 LIBS="$save_LIBS"
1441 AC_SUBST(NETLIBS)
1442
1443 # Some systems put ldexp and frexp in libm instead of libc; assume
1444 # they're both in the same place. jcf-dump needs them.
1445 save_LIBS="$LIBS"
1446 LIBS=
1447 AC_SEARCH_LIBS(ldexp, m)
1448 LDEXP_LIB="$LIBS"
1449 LIBS="$save_LIBS"
1450 AC_SUBST(LDEXP_LIB)
1451
1452 # Some systems need dlopen
1453 save_LIBS="$LIBS"
1454 LIBS=
1455 AC_SEARCH_LIBS(dlopen, dl)
1456 DL_LIB="$LIBS"
1457 LIBS="$save_LIBS"
1458 AC_SUBST(DL_LIB)
1459
1460 # Use <inttypes.h> only if it exists,
1461 # doesn't clash with <sys/types.h>, declares intmax_t and defines
1462 # PRId64
1463 AC_MSG_CHECKING(for inttypes.h)
1464 AC_CACHE_VAL(gcc_cv_header_inttypes_h,
1465 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1466 [[#define __STDC_FORMAT_MACROS
1467 #include <sys/types.h>
1468 #include <inttypes.h>]],
1469 [[intmax_t i = -1;
1470 #ifndef PRId64
1471 choke me
1472 #endif]])],
1473 [gcc_cv_header_inttypes_h=yes],
1474 [gcc_cv_header_inttypes_h=no])])
1475 AC_MSG_RESULT($gcc_cv_header_inttypes_h)
1476 if test $gcc_cv_header_inttypes_h = yes; then
1477 AC_DEFINE(HAVE_INTTYPES_H, 1,
1478 [Define if you have a working <inttypes.h> header file.])
1479 fi
1480
1481 # Look for the ZSTD package.
1482 ZSTD_INCLUDE=
1483 ZSTD_LIB=
1484 AC_SUBST(ZSTD_INCLUDE)
1485 AC_SUBST(ZSTD_LIB)
1486 ZSTD_CPPFLAGS=
1487 ZSTD_LDFLAGS=
1488 AC_SUBST(ZSTD_CPPFLAGS)
1489 AC_SUBST(ZSTD_LDFLAGS)
1490 AC_ARG_WITH(zstd,
1491 [AS_HELP_STRING([--with-zstd=PATH],
1492 [specify prefix directory for installed zstd library.
1493 Equivalent to --with-zstd-include=PATH/include
1494 plus --with-zstd-lib=PATH/lib])])
1495 AC_ARG_WITH(zstd-include,
1496 [AS_HELP_STRING([--with-zstd-include=PATH],
1497 [specify directory for installed zstd include files])])
1498 AC_ARG_WITH(zstd-lib,
1499 [AS_HELP_STRING([--with-zstd-lib=PATH],
1500 [specify directory for the installed zstd library])])
1501 case "x$with_zstd" in
1502 x) ;;
1503 xno)
1504 ZSTD_INCLUDE=
1505 ZSTD_LIB=
1506 ;;
1507 *) ZSTD_INCLUDE=$with_zstd/include
1508 ZSTD_LIB=$with_zstd/lib
1509 ;;
1510 esac
1511
1512 if test "x$with_zstd" != xno; then
1513 if test "x$with_zstd_include" != x; then
1514 ZSTD_INCLUDE=$with_zstd_include
1515 fi
1516 if test "x$with_zstd_lib" != x; then
1517 ZSTD_LIB=$with_zstd_lib
1518 fi
1519 if test "x$ZSTD_INCLUDE" != x \
1520 && test "x$ZSTD_INCLUDE" != xno; then
1521 ZSTD_CPPFLAGS=-I$ZSTD_INCLUDE
1522 fi
1523 if test "x$ZSTD_LIB" != x \
1524 && test "x$ZSTD_LIB" != xno; then
1525 ZSTD_LDFLAGS=-L$ZSTD_LIB
1526 fi
1527
1528 CXXFLAGS="$CXXFLAGS $ZSTD_CPPFLAGS"
1529 LDFLAGS="$LDFLAGS $ZSTD_LDFLAGS"
1530
1531 # LTO can use zstd compression algorithm
1532 save_LIBS="$LIBS"
1533 LIBS=
1534 AC_SEARCH_LIBS(ZSTD_compress, zstd,, gcc_cv_header_zstd_h=no)
1535 ZSTD_LIB="$LIBS"
1536 LIBS="$save_LIBS"
1537 AC_SUBST(ZSTD_LIB)
1538
1539 AC_MSG_CHECKING(for zstd.h)
1540 AC_CACHE_VAL(gcc_cv_header_zstd_h,
1541 # We require version 1.3.0 or later. This is the first version that has
1542 # ZSTD_getFrameContentSize.
1543 [AC_COMPILE_IFELSE([AC_LANG_PROGRAM(
1544 [[#include <zstd.h>
1545 #if ZSTD_VERSION_NUMBER < 10300
1546 #error "need zstd 1.3.0 or better"
1547 #endif]])],
1548 [gcc_cv_header_zstd_h=yes],
1549 [gcc_cv_header_zstd_h=no])])
1550 AC_MSG_RESULT($gcc_cv_header_zstd_h)
1551 if test $gcc_cv_header_zstd_h = yes; then
1552 AC_DEFINE(HAVE_ZSTD_H, 1,
1553 [Define if you have a working <zstd.h> header file.])
1554 elif test "x$with_zstd" != x; then
1555 as_fn_error $? "Unable to find zstd.h. See config.log for details." "$LINENO" 5
1556 fi
1557 fi
1558
1559 dnl Disabled until we have a complete test for buggy enum bitfields.
1560 dnl gcc_AC_C_ENUM_BF_UNSIGNED
1561
1562 define(gcc_UNLOCKED_FUNCS, clearerr_unlocked feof_unlocked dnl
1563 ferror_unlocked fflush_unlocked fgetc_unlocked fgets_unlocked dnl
1564 fileno_unlocked fprintf_unlocked fputc_unlocked fputs_unlocked dnl
1565 fread_unlocked fwrite_unlocked getchar_unlocked getc_unlocked dnl
1566 putchar_unlocked putc_unlocked)
1567 AC_CHECK_FUNCS(times clock kill getrlimit setrlimit atoq \
1568 popen sysconf strsignal getrusage nl_langinfo \
1569 gettimeofday mbstowcs wcswidth mmap posix_fallocate setlocale \
1570 gcc_UNLOCKED_FUNCS madvise mallinfo mallinfo2 fstatat getauxval)
1571
1572 if test x$ac_cv_func_mbstowcs = xyes; then
1573 AC_CACHE_CHECK(whether mbstowcs works, gcc_cv_func_mbstowcs_works,
1574 [ AC_RUN_IFELSE([AC_LANG_SOURCE([[#include <stdlib.h>
1575 int main()
1576 {
1577 mbstowcs(0, "", 0);
1578 return 0;
1579 }]])],
1580 [gcc_cv_func_mbstowcs_works=yes],
1581 [gcc_cv_func_mbstowcs_works=no],
1582 [gcc_cv_func_mbstowcs_works=yes])])
1583 if test x$gcc_cv_func_mbstowcs_works = xyes; then
1584 AC_DEFINE(HAVE_WORKING_MBSTOWCS, 1,
1585 [Define this macro if mbstowcs does not crash when its
1586 first argument is NULL.])
1587 fi
1588 fi
1589
1590 AC_CHECK_TYPE(ssize_t, int)
1591 AC_CHECK_TYPE(caddr_t, char *)
1592 AC_CHECK_TYPE(sighander_t,
1593 AC_DEFINE(HAVE_SIGHANDLER_T, 1,
1594 [Define if <sys/signal.h> defines sighandler_t]),
1595 ,signal.h)
1596
1597 GCC_AC_FUNC_MMAP_BLACKLIST
1598
1599 case "${host}" in
1600 *-*-*vms*)
1601 # Under VMS, vfork works very differently than on Unix. The standard test
1602 # won't work, and it isn't easily adaptable. It makes more sense to
1603 # just force it.
1604 ac_cv_func_vfork_works=yes
1605 ;;
1606 esac
1607 AC_FUNC_FORK
1608
1609 AM_ICONV
1610
1611 # Until we have in-tree GNU iconv:
1612 LIBICONV_DEP=
1613 if test -f "$LTLIBICONV"; then
1614 LIBICONV_DEP=$LTLIBICONV
1615 fi
1616 AC_SUBST(LIBICONV_DEP)
1617
1618 AM_LC_MESSAGES
1619
1620 AM_LANGINFO_CODESET
1621
1622 # We will need to find libiberty.h and ansidecl.h
1623 saved_CFLAGS="$CFLAGS"
1624 CFLAGS="$CFLAGS -I${srcdir} -I${srcdir}/../include $GMPINC"
1625 saved_CXXFLAGS="$CXXFLAGS"
1626 CXXFLAGS="$CXXFLAGS -I${srcdir} -I${srcdir}/../include $GMPINC"
1627
1628 # gcc_AC_CHECK_DECLS doesn't support overloaded functions, so use the
1629 # normal autoconf function for these. But force definition of
1630 # HAVE_DECL_BASENAME like gcc_AC_CHECK_DECLS does, to suppress the bizarre
1631 # basename handling in libiberty.h.
1632 AC_CHECK_DECLS([basename(const char*), strstr(const char*,const char*)], , ,[
1633 #undef HAVE_DECL_BASENAME
1634 #define HAVE_DECL_BASENAME 1
1635 #include "ansidecl.h"
1636 #include "system.h"])
1637
1638 gcc_AC_CHECK_DECLS(getenv atol atoll asprintf sbrk abort atof getcwd getwd \
1639 madvise stpcpy strnlen strsignal strverscmp \
1640 strtol strtoul strtoll strtoull setenv unsetenv \
1641 errno snprintf vsnprintf vasprintf malloc realloc calloc \
1642 free getopt clock getpagesize ffs gcc_UNLOCKED_FUNCS, , ,[
1643 #include "ansidecl.h"
1644 #include "system.h"])
1645
1646 gcc_AC_CHECK_DECLS(getrlimit setrlimit getrusage, , ,[
1647 #include "ansidecl.h"
1648 #include "system.h"
1649 #ifdef HAVE_SYS_RESOURCE_H
1650 #include <sys/resource.h>
1651 #endif
1652 ])
1653
1654 gcc_AC_CHECK_DECLS(mallinfo mallinfo2, , ,[
1655 #include "ansidecl.h"
1656 #include "system.h"
1657 #ifdef HAVE_MALLOC_H
1658 #include <malloc.h>
1659 #endif
1660 ])
1661
1662 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1663 #include "ansidecl.h"
1664 #include "system.h"
1665 #ifdef HAVE_SYS_RESOURCE_H
1666 #include <sys/resource.h>
1667 #endif
1668 ]], [[rlim_t l = 0;]])],[],[AC_DEFINE([rlim_t],[long],
1669 [Define to `long' if <sys/resource.h> doesn't define.])])
1670
1671 # On AIX 5.2, <ldfcn.h> conflicts with <fcntl.h>, as both define incompatible
1672 # FREAD and FWRITE macros. Fortunately, for GCC's single usage of ldgetname
1673 # in collect2.cc, <fcntl.h> isn't visible, but the configure test below needs
1674 # to undef these macros to get the correct value for HAVE_DECL_LDGETNAME.
1675 gcc_AC_CHECK_DECLS(ldgetname, , ,[
1676 #include "ansidecl.h"
1677 #include "system.h"
1678 #ifdef HAVE_LDFCN_H
1679 #undef FREAD
1680 #undef FWRITE
1681 #include <ldfcn.h>
1682 #endif
1683 ])
1684
1685 gcc_AC_CHECK_DECLS(times, , ,[
1686 #include "ansidecl.h"
1687 #include "system.h"
1688 #ifdef HAVE_SYS_TIMES_H
1689 #include <sys/times.h>
1690 #endif
1691 ])
1692
1693 gcc_AC_CHECK_DECLS(sigaltstack, , ,[
1694 #include "ansidecl.h"
1695 #include "system.h"
1696 #include <signal.h>
1697 ])
1698
1699 # More time-related stuff.
1700 AC_CACHE_CHECK(for struct tms, ac_cv_struct_tms, [
1701 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1702 #include "ansidecl.h"
1703 #include "system.h"
1704 #ifdef HAVE_SYS_TIMES_H
1705 #include <sys/times.h>
1706 #endif
1707 ]], [[struct tms tms;]])],[ac_cv_struct_tms=yes],[ac_cv_struct_tms=no])])
1708 if test $ac_cv_struct_tms = yes; then
1709 AC_DEFINE(HAVE_STRUCT_TMS, 1,
1710 [Define if <sys/times.h> defines struct tms.])
1711 fi
1712
1713 # use gcc_cv_* here because this doesn't match the behavior of AC_CHECK_TYPE.
1714 # revisit after autoconf 2.50.
1715 AC_CACHE_CHECK(for clock_t, gcc_cv_type_clock_t, [
1716 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1717 #include "ansidecl.h"
1718 #include "system.h"
1719 ]], [[clock_t x;]])],[gcc_cv_type_clock_t=yes],[gcc_cv_type_clock_t=no])])
1720 if test $gcc_cv_type_clock_t = yes; then
1721 AC_DEFINE(HAVE_CLOCK_T, 1,
1722 [Define if <time.h> defines clock_t.])
1723 fi
1724
1725 # Check if F_SETLKW is supported by fcntl.
1726 AC_CACHE_CHECK(for F_SETLKW, ac_cv_f_setlkw, [
1727 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1728 #include <fcntl.h>]], [[
1729 struct flock fl;
1730 fl.l_whence = 0;
1731 fl.l_start = 0;
1732 fl.l_len = 0;
1733 fl.l_pid = 0;
1734 return fcntl (1, F_SETLKW, &fl);]])],
1735 [ac_cv_f_setlkw=yes],[ac_cv_f_setlkw=no])])
1736 if test $ac_cv_f_setlkw = yes; then
1737 AC_DEFINE(HOST_HAS_F_SETLKW, 1,
1738 [Define if F_SETLKW supported by fcntl.])
1739 fi
1740
1741 # Check if O_CLOEXEC is defined by fcntl
1742 AC_CACHE_CHECK(for O_CLOEXEC, ac_cv_o_cloexec, [
1743 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1744 #include <fcntl.h>]], [[
1745 return open ("/dev/null", O_RDONLY | O_CLOEXEC);]])],
1746 [ac_cv_o_cloexec=yes],[ac_cv_o_cloexec=no])])
1747 if test $ac_cv_o_cloexec = yes; then
1748 AC_DEFINE(HOST_HAS_O_CLOEXEC, 1,
1749 [Define if O_CLOEXEC supported by fcntl.])
1750 fi
1751
1752 # Check if O_NONBLOCK is defined by fcntl
1753 AC_CHECK_HEADERS([fcntl.h])
1754 AC_CHECK_DECL(O_NONBLOCK,,,[#include <fcntl.h>])
1755 if test $ac_cv_have_decl_O_NONBLOCK = yes; then
1756 AC_DEFINE(HOST_HAS_O_NONBLOCK, 1,
1757 [Define if O_NONBLOCK supported by fcntl.])
1758 fi
1759
1760
1761 # C++ Modules would like some networking features to provide the mapping
1762 # server. You can still use modules without them though.
1763 # The following network-related checks could probably do with some
1764 # Windows and other non-linux defenses and checking.
1765
1766 # Local socket connectivity wants AF_UNIX networking
1767 # Check for AF_UNIX networking
1768 AC_CACHE_CHECK(for AF_UNIX, ac_cv_af_unix, [
1769 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1770 #include <sys/types.h>
1771 #include <sys/socket.h>
1772 #include <sys/un.h>
1773 #include <netinet/in.h>]],[[
1774 sockaddr_un un;
1775 un.sun_family = AF_UNSPEC;
1776 int fd = socket (AF_UNIX, SOCK_STREAM, 0);
1777 connect (fd, (sockaddr *)&un, sizeof (un));]])],
1778 [ac_cv_af_unix=yes],
1779 [ac_cv_af_unix=no])])
1780 if test $ac_cv_af_unix = yes; then
1781 AC_DEFINE(HAVE_AF_UNIX, 1,
1782 [Define if AF_UNIX supported.])
1783 fi
1784
1785 # Remote socket connectivity wants AF_INET6 networking
1786 # Check for AF_INET6 networking
1787 AC_CACHE_CHECK(for AF_INET6, ac_cv_af_inet6, [
1788 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1789 #include <sys/types.h>
1790 #include <sys/socket.h>
1791 #include <netinet/in.h>
1792 #include <netdb.h>]],[[
1793 sockaddr_in6 in6;
1794 in6.sin6_family = AF_UNSPEC;
1795 struct addrinfo *addrs = 0;
1796 struct addrinfo hints;
1797 hints.ai_flags = 0;
1798 hints.ai_family = AF_INET6;
1799 hints.ai_socktype = SOCK_STREAM;
1800 hints.ai_protocol = 0;
1801 hints.ai_canonname = 0;
1802 hints.ai_addr = 0;
1803 hints.ai_next = 0;
1804 int e = getaddrinfo ("localhost", 0, &hints, &addrs);
1805 const char *str = gai_strerror (e);
1806 freeaddrinfo (addrs);
1807 int fd = socket (AF_INET6, SOCK_STREAM, 0);
1808 connect (fd, (sockaddr *)&in6, sizeof (in6));]])],
1809 [ac_cv_af_inet6=yes],
1810 [ac_cv_af_inet6=no])])
1811 if test $ac_cv_af_inet6 = yes; then
1812 AC_DEFINE(HAVE_AF_INET6, 1,
1813 [Define if AF_INET6 supported.])
1814 fi
1815
1816 # Check if _LK_LOCK is supported by _locking
1817 AC_CACHE_CHECK(for _LK_LOCK, ac_cv_lk_lock, [
1818 AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
1819 #include <io.h>
1820 #include <sys/locking.h>]], [[
1821 int fd;
1822 return _locking (fd, _LK_LOCK, 0);]])],
1823 [ac_cv_lk_lock=yes],[ac_cv_lk_lock=no])])
1824 if test $ac_cv_lk_lock = yes; then
1825 AC_DEFINE(HOST_HAS_LK_LOCK, 1,
1826 [Define if _LK_LOC supported by _locking.])
1827 fi
1828
1829 # Restore CFLAGS, CXXFLAGS from before the gcc_AC_NEED_DECLARATIONS tests.
1830 CFLAGS="$saved_CFLAGS"
1831 CXXFLAGS="$saved_CXXFLAGS"
1832
1833 # mkdir takes a single argument on some systems.
1834 gcc_AC_FUNC_MKDIR_TAKES_ONE_ARG
1835
1836 # File extensions
1837 manext='.1'
1838 objext='.o'
1839 AC_SUBST(manext)
1840 AC_SUBST(objext)
1841
1842 # With Setjmp/Longjmp based exception handling.
1843 AC_ARG_ENABLE(sjlj-exceptions,
1844 [AS_HELP_STRING([--enable-sjlj-exceptions],
1845 [arrange to use setjmp/longjmp exception handling])],
1846 [force_sjlj_exceptions=yes],
1847 [case $target in
1848 lm32*-*-*)
1849 force_sjlj_exceptions=yes
1850 enableval=yes
1851 ;;
1852 *)
1853 force_sjlj_exceptions=no
1854 ;;
1855 esac])
1856 if test $force_sjlj_exceptions = yes; then
1857 sjlj=`if test $enableval = yes; then echo 1; else echo 0; fi`
1858 AC_DEFINE_UNQUOTED(CONFIG_SJLJ_EXCEPTIONS, $sjlj,
1859 [Define 0/1 to force the choice for exception handling model.])
1860 fi
1861
1862 # --------------------------------------------------------
1863 # Build, host, and target specific configuration fragments
1864 # --------------------------------------------------------
1865
1866 # Collect build-machine-specific information.
1867 . ${srcdir}/config.build || exit 1
1868
1869 # Collect host-machine-specific information.
1870 . ${srcdir}/config.host || exit 1
1871
1872 target_gtfiles=
1873
1874 # Collect target-machine-specific information.
1875 . ${srcdir}/config.gcc || exit 1
1876
1877 extra_objs="${host_extra_objs} ${extra_objs}"
1878 extra_gcc_objs="${host_extra_gcc_objs} ${extra_gcc_objs}"
1879
1880 # Default the target-machine variables that were not explicitly set.
1881 if test x"$tm_file" = x
1882 then tm_file=$cpu_type/$cpu_type.h; fi
1883
1884 if test x"$extra_headers" = x
1885 then extra_headers=; fi
1886
1887 if test x$md_file = x
1888 then md_file=$cpu_type/$cpu_type.md; fi
1889
1890 if test x$out_file = x
1891 then out_file=$cpu_type/$cpu_type.cc; fi
1892
1893 if test x"$tmake_file" = x
1894 then tmake_file=$cpu_type/t-$cpu_type
1895 fi
1896
1897 # Support --enable-initfini-array.
1898 if test x$enable_initfini_array != xno; then
1899 tm_file="${tm_file} initfini-array.h"
1900 fi
1901
1902 if test x"$dwarf2" = xyes
1903 then tm_file="$tm_file tm-dwarf2.h"
1904 fi
1905
1906 # Say what files are being used for the output code and MD file.
1907 echo "Using \`$srcdir/config/$out_file' for machine-specific logic."
1908 echo "Using \`$srcdir/config/$md_file' as machine description file."
1909
1910 # If any of the xm_file variables contain nonexistent files, warn
1911 # about them and drop them.
1912
1913 bx=
1914 for x in $build_xm_file; do
1915 if test -f $srcdir/config/$x
1916 then bx="$bx $x"
1917 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1918 fi
1919 done
1920 build_xm_file="$bx"
1921
1922 hx=
1923 for x in $host_xm_file; do
1924 if test -f $srcdir/config/$x
1925 then hx="$hx $x"
1926 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1927 fi
1928 done
1929 host_xm_file="$hx"
1930
1931 tx=
1932 for x in $xm_file; do
1933 if test -f $srcdir/config/$x
1934 then tx="$tx $x"
1935 else AC_MSG_WARN($srcdir/config/$x does not exist.)
1936 fi
1937 done
1938 xm_file="$tx"
1939
1940 count=a
1941 for f in $tm_file; do
1942 count=${count}x
1943 done
1944 if test $count = ax; then
1945 echo "Using \`$srcdir/config/$tm_file' as target machine macro file."
1946 else
1947 echo "Using the following target machine macro files:"
1948 for f in $tm_file; do
1949 echo " $srcdir/config/$f"
1950 done
1951 fi
1952
1953 if test x$use_long_long_for_widest_fast_int = xyes; then
1954 AC_DEFINE(USE_LONG_LONG_FOR_WIDEST_FAST_INT, 1,
1955 [Define to 1 if the 'long long' type is wider than 'long' but still
1956 efficiently supported by the host hardware.])
1957 fi
1958
1959 gnu_ld_bool=`if test x"$gnu_ld" = x"yes"; then echo 1; else echo 0; fi`
1960 AC_DEFINE_UNQUOTED(HAVE_GNU_LD, $gnu_ld_bool, [Define to 1 if using GNU ld.])
1961
1962 gnu_as_bool=`if test x"$gas" = x"yes"; then echo 1; else echo 0; fi`
1963 AC_DEFINE_UNQUOTED(HAVE_GNU_AS, $gnu_as_bool, [Define to 1 if using GNU as.])
1964
1965 count=a
1966 for f in $host_xm_file; do
1967 count=${count}x
1968 done
1969 if test $count = a; then
1970 :
1971 elif test $count = ax; then
1972 echo "Using \`$srcdir/config/$host_xm_file' as host machine macro file."
1973 else
1974 echo "Using the following host machine macro files:"
1975 for f in $host_xm_file; do
1976 echo " $srcdir/config/$f"
1977 done
1978 fi
1979 echo "Using ${out_host_hook_obj} for host machine hooks."
1980
1981 if test "$host_xm_file" != "$build_xm_file"; then
1982 count=a
1983 for f in $build_xm_file; do
1984 count=${count}x
1985 done
1986 if test $count = a; then
1987 :
1988 elif test $count = ax; then
1989 echo "Using \`$srcdir/config/$build_xm_file' as build machine macro file."
1990 else
1991 echo "Using the following build machine macro files:"
1992 for f in $build_xm_file; do
1993 echo " $srcdir/config/$f"
1994 done
1995 fi
1996 fi
1997
1998 if test -n "$configured_native_system_header_dir"; then
1999 native_system_header_dir=$configured_native_system_header_dir
2000 fi
2001 NATIVE_SYSTEM_HEADER_DIR="$native_system_header_dir"
2002 AC_SUBST(NATIVE_SYSTEM_HEADER_DIR)
2003
2004 case ${host} in
2005 powerpc*-*-darwin*)
2006 AC_CACHE_CHECK([whether mcontext_t fields have underscores],
2007 gcc_cv_mcontext_underscores,
2008 AC_COMPILE_IFELSE([AC_LANG_SOURCE([
2009 #include <sys/cdefs.h>
2010 #include <sys/signal.h>
2011 #include <ucontext.h>
2012 int main() { mcontext_t m; if (m->ss.srr0) return 0; return 0; }
2013 ])],
2014 gcc_cv_mcontext_underscores=no, gcc_cv_mcontext_underscores=yes))
2015 if test $gcc_cv_mcontext_underscores = yes; then
2016 AC_DEFINE(HAS_MCONTEXT_T_UNDERSCORES,,dnl
2017 [mcontext_t fields start with __])
2018 fi
2019 ;;
2020 esac
2021
2022 # ---------
2023 # Threading
2024 # ---------
2025
2026 # Check if a valid thread package
2027 case ${enable_threads} in
2028 "" | no)
2029 # No threads
2030 target_thread_file='single'
2031 ;;
2032 yes)
2033 # default
2034 target_thread_file='single'
2035 ;;
2036 aix | dce | lynx | mipssde | posix | rtems | \
2037 single | tpf | vxworks | win32 | mcf)
2038 target_thread_file=${enable_threads}
2039 ;;
2040 *)
2041 echo "${enable_threads} is an unknown thread package" 1>&2
2042 exit 1
2043 ;;
2044 esac
2045
2046 if test x${thread_file} = x; then
2047 # No thread file set by target-specific clauses in config.gcc,
2048 # so use file chosen by default logic above
2049 thread_file=${target_thread_file}
2050 fi
2051
2052 # --------
2053 # UNSORTED
2054 # --------
2055
2056 use_cxa_atexit=no
2057 if test x$enable___cxa_atexit = xyes || \
2058 test x$enable___cxa_atexit = x -a x$default_use_cxa_atexit = xyes; then
2059 if test x$host = x$target; then
2060 case $host in
2061 # mingw32 doesn't have __cxa_atexit but uses atexit registration
2062 # keyed to flag_use_cxa_atexit
2063 *-*-mingw32*)
2064 use_cxa_atexit=yes
2065 ;;
2066 powerpc-ibm-aix*)
2067 use_cxa_atexit=yes
2068 ;;
2069 *)
2070 AC_CHECK_FUNC(__cxa_atexit,[use_cxa_atexit=yes],
2071 [echo "__cxa_atexit can't be enabled on this target"])
2072 ;;
2073 esac
2074 else
2075 # We can't check for __cxa_atexit when building a cross, so assume
2076 # it is available
2077 use_cxa_atexit=yes
2078 fi
2079 if test x$use_cxa_atexit = xyes; then
2080 AC_DEFINE(DEFAULT_USE_CXA_ATEXIT, 2,
2081 [Define if you want to use __cxa_atexit, rather than atexit, to
2082 register C++ destructors for local statics and global objects.
2083 This is essential for fully standards-compliant handling of
2084 destructors, but requires __cxa_atexit in libc.])
2085 fi
2086 fi
2087
2088 # Look for a file containing extra machine modes.
2089 if test -n "$extra_modes" && test -f $srcdir/config/$extra_modes; then
2090 extra_modes_file='$(srcdir)'/config/${extra_modes}
2091 AC_SUBST(extra_modes_file)
2092 AC_DEFINE_UNQUOTED(EXTRA_MODES_FILE, "config/$extra_modes",
2093 [Define to the name of a file containing a list of extra machine modes
2094 for this architecture.])
2095 fi
2096
2097 # Convert extra_options into a form suitable for Makefile use.
2098 extra_opt_files=
2099 all_opt_files=
2100 for f in $extra_options; do
2101 extra_opt_files="$extra_opt_files \$(srcdir)/config/$f"
2102 all_opt_files="$all_opt_files $srcdir/config/$f"
2103 done
2104 AC_SUBST(extra_opt_files)
2105
2106 # auto-host.h is the file containing items generated by autoconf and is
2107 # the first file included by config.h.
2108 # If host=build, it is correct to have bconfig include auto-host.h
2109 # as well. If host!=build, we are in error and need to do more
2110 # work to find out the build config parameters.
2111 if test x$host = x$build
2112 then
2113 build_auto=auto-host.h
2114 HAVE_AUTO_BUILD='# '
2115 else
2116 # We create a subdir, then run autoconf in the subdir.
2117 # To prevent recursion we set host and build for the new
2118 # invocation of configure to the build for this invocation
2119 # of configure.
2120 tempdir=build.$$
2121 rm -rf $tempdir
2122 mkdir $tempdir
2123 cd $tempdir
2124 case ${srcdir} in
2125 /* | [A-Za-z]:[\\/]* ) realsrcdir=${srcdir};;
2126 *) realsrcdir=../${srcdir};;
2127 esac
2128 # Clearing GMPINC is necessary to prevent host headers being
2129 # used by the build compiler. Defining GENERATOR_FILE stops
2130 # system.h from including gmp.h.
2131 CC="${CC_FOR_BUILD}" CFLAGS="${CFLAGS_FOR_BUILD}" \
2132 CXX="${CXX_FOR_BUILD}" CXXFLAGS="${CXXFLAGS_FOR_BUILD}" \
2133 LD="${LD_FOR_BUILD}" LDFLAGS="${LDFLAGS_FOR_BUILD}" \
2134 GMPINC="" CPPFLAGS="${CPPFLAGS_FOR_BUILD} -DGENERATOR_FILE" \
2135 ${realsrcdir}/configure \
2136 --enable-languages=${enable_languages-all} \
2137 ${enable_obsolete+--enable-obsolete="$enable_obsolete"} \
2138 ${enable_option_checking+--enable-option-checking="$enable_option_checking"} \
2139 --target=$target_alias --host=$build_alias \
2140 --build=$build_alias || exit # retaining $tempdir
2141
2142 # We just finished tests for the build machine, so rename
2143 # the file auto-build.h in the gcc directory.
2144 mv auto-host.h ../auto-build.h
2145 cd ..
2146 rm -rf $tempdir
2147 build_auto=auto-build.h
2148 HAVE_AUTO_BUILD=
2149 fi
2150 AC_SUBST(build_subdir)
2151 AC_SUBST(HAVE_AUTO_BUILD)
2152
2153 tm_file="${tm_file} defaults.h"
2154 tm_p_file="${tm_p_file} tm-preds.h"
2155 host_xm_file="auto-host.h ansidecl.h ${host_xm_file}"
2156 build_xm_file="${build_auto} ansidecl.h ${build_xm_file}"
2157 # We don't want ansidecl.h in target files, write code there in ISO/GNU C.
2158 # put this back in temporarily.
2159 xm_file="auto-host.h ansidecl.h ${xm_file}"
2160
2161 # --------
2162 # UNSORTED
2163 # --------
2164
2165 changequote(,)dnl
2166 # Compile in configure arguments.
2167 if test -f configargs.h ; then
2168 # Being re-configured.
2169 gcc_config_arguments=`grep configuration_arguments configargs.h | sed -e 's/.*"\([^"]*\)".*/\1/'`
2170 gcc_reconf_arguments=`echo "$gcc_config_arguments" | sed -e 's/^.*\( : (reconfigured) .*$\)/\1/'`
2171 if [ "$gcc_reconf_arguments" != " : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS" ]; then
2172 gcc_config_arguments="$gcc_config_arguments : (reconfigured) $TOPLEVEL_CONFIGURE_ARGUMENTS"
2173 fi
2174 else
2175 gcc_config_arguments="$TOPLEVEL_CONFIGURE_ARGUMENTS"
2176 fi
2177
2178 # Double all backslashes and backslash all quotes to turn
2179 # gcc_config_arguments into a C string.
2180 sed -e 's/\\/\\\\/g; s/"/\\"/g' <<EOF >conftest.out
2181 $gcc_config_arguments
2182 EOF
2183 gcc_config_arguments_str=`cat conftest.out`
2184 rm -f conftest.out
2185
2186 cat > configargs.h <<EOF
2187 /* Generated automatically. */
2188 static const char configuration_arguments[] = "$gcc_config_arguments_str";
2189 static const char thread_model[] = "$thread_file";
2190
2191 static const struct {
2192 const char *name, *value;
2193 } configure_default_options[] = $configure_default_options;
2194 EOF
2195 changequote([,])dnl
2196
2197 changequote(,)dnl
2198 gcc_BASEVER=`cat $srcdir/BASE-VER`
2199 gcc_DEVPHASE=`cat $srcdir/DEV-PHASE`
2200 gcc_DATESTAMP=`cat $srcdir/DATESTAMP`
2201 if test -f $srcdir/REVISION ; then
2202 gcc_REVISION=`cat $srcdir/REVISION`
2203 else
2204 gcc_REVISION=""
2205 fi
2206 cat > plugin-version.h <<EOF
2207 #include "configargs.h"
2208
2209 #define GCCPLUGIN_VERSION_MAJOR `echo $gcc_BASEVER | sed -e 's/^\([0-9]*\).*$/\1/'`
2210 #define GCCPLUGIN_VERSION_MINOR `echo $gcc_BASEVER | sed -e 's/^[0-9]*\.\([0-9]*\).*$/\1/'`
2211 #define GCCPLUGIN_VERSION_PATCHLEVEL `echo $gcc_BASEVER | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$/\1/'`
2212 #define GCCPLUGIN_VERSION (GCCPLUGIN_VERSION_MAJOR*1000 + GCCPLUGIN_VERSION_MINOR)
2213
2214 static char basever[] = "$gcc_BASEVER";
2215 static char datestamp[] = "$gcc_DATESTAMP";
2216 static char devphase[] = "$gcc_DEVPHASE";
2217 static char revision[] = "$gcc_REVISION";
2218
2219 /* FIXME plugins: We should make the version information more precise.
2220 One way to do is to add a checksum. */
2221
2222 static struct plugin_gcc_version gcc_version = {basever, datestamp,
2223 devphase, revision,
2224 configuration_arguments};
2225 EOF
2226 changequote([,])dnl
2227
2228 # Determine what GCC version number to use in filesystem paths.
2229 GCC_BASE_VER
2230
2231 # Internationalization
2232 ZW_GNU_GETTEXT_SISTER_DIR
2233
2234 # If LIBINTL contains LIBICONV, then clear LIBICONV so we don't get
2235 # -liconv on the link line twice.
2236 case "$LIBINTL" in *$LIBICONV*)
2237 LIBICONV= ;;
2238 esac
2239
2240 AC_ARG_ENABLE(secureplt,
2241 [AS_HELP_STRING([--enable-secureplt],
2242 [enable -msecure-plt by default for PowerPC])],
2243 [], [])
2244
2245 AC_ARG_ENABLE(mingw-wildcard,
2246 [AS_HELP_STRING([--enable-mingw-wildcard],
2247 [Set whether to expand wildcard on command-line.
2248 Default to platform configuration])],
2249 [],[enable_mingw_wildcard=platform])
2250 AS_IF([test x"$enable_mingw_wildcard" != xplatform ],
2251 [AC_DEFINE_UNQUOTED(MINGW_DOWILDCARD,
2252 $(test x"$enable_mingw_wildcard" = xno; echo $?),
2253 [Value to set mingw's _dowildcard to.])])
2254
2255 AC_ARG_ENABLE(large-address-aware,
2256 [AS_HELP_STRING([--enable-large-address-aware],
2257 [Link mingw executables with --large-address-aware])])
2258 AS_IF([test x"$enable_large_address_aware" = xyes],
2259 [AC_DEFINE([MINGW_DEFAULT_LARGE_ADDR_AWARE], 1,
2260 [Define if we should link mingw executables with --large-address-aware])])
2261
2262 AC_ARG_ENABLE(leading-mingw64-underscores,
2263 AS_HELP_STRING([--enable-leading-mingw64-underscores],
2264 [enable leading underscores on 64 bit mingw targets]),
2265 [],[])
2266 AS_IF([ test x"$enable_leading_mingw64_underscores" = xyes ],
2267 [AC_DEFINE(USE_MINGW64_LEADING_UNDERSCORES, 1,
2268 [Define if we should use leading underscore on 64 bit mingw targets])])
2269
2270 AC_ARG_ENABLE(cld,
2271 [AS_HELP_STRING([--enable-cld], [enable -mcld by default for 32bit x86])], [],
2272 [enable_cld=no])
2273
2274 AC_ARG_ENABLE(frame-pointer,
2275 [AS_HELP_STRING([--enable-frame-pointer],
2276 [enable -fno-omit-frame-pointer by default for x86])], [],
2277 [
2278 case $target_os in
2279 linux* | gnu* | darwin[[8912]]* | cygwin* | mingw*)
2280 # Enable -fomit-frame-pointer by default for these systems with DWARF2.
2281 enable_frame_pointer=no
2282 ;;
2283 *)
2284 enable_frame_pointer=yes
2285 ;;
2286 esac
2287 ])
2288
2289 case $target in
2290 i[[34567]]86-*-* | x86_64-*-*)
2291 if test "x$enable_cld" = xyes; then
2292 tm_defines="${tm_defines} USE_IX86_CLD=1"
2293 fi
2294 if test "x$enable_frame_pointer" = xyes; then
2295 tm_defines="${tm_defines} USE_IX86_FRAME_POINTER=1"
2296 fi
2297 ;;
2298 esac
2299
2300 # Windows32 Registry support for specifying GCC installation paths.
2301 AC_ARG_ENABLE(win32-registry,
2302 [AS_HELP_STRING([--disable-win32-registry],
2303 [disable lookup of installation paths in the
2304 Registry on Windows hosts])
2305 AS_HELP_STRING([--enable-win32-registry], [enable registry lookup (default)])
2306 AS_HELP_STRING([--enable-win32-registry=KEY],
2307 [use KEY instead of GCC version as the last portion
2308 of the registry key])],,)
2309
2310 case $host_os in
2311 win32 | pe | cygwin* | mingw32*)
2312 if test "x$enable_win32_registry" != xno; then
2313 AC_SEARCH_LIBS(RegOpenKeyExA, advapi32,, [enable_win32_registry=no])
2314 fi
2315
2316 if test "x$enable_win32_registry" != xno; then
2317 AC_DEFINE(ENABLE_WIN32_REGISTRY, 1,
2318 [Define to 1 if installation paths should be looked up in the Windows
2319 Registry. Ignored on non-Windows hosts.])
2320
2321 if test "x$enable_win32_registry" != xyes \
2322 && test "x$enable_win32_registry" != x; then
2323 AC_DEFINE_UNQUOTED(WIN32_REGISTRY_KEY, "$enable_win32_registry",
2324 [Define to be the last component of the Windows registry key under which
2325 to look for installation paths. The full key used will be
2326 HKEY_LOCAL_MACHINE/SOFTWARE/Free Software Foundation/{WIN32_REGISTRY_KEY}.
2327 The default is the GCC version number.])
2328 fi
2329 fi
2330 ;;
2331 esac
2332
2333 # Get an absolute path to the GCC top-level source directory
2334 holddir=`${PWDCMD-pwd}`
2335 cd $srcdir
2336 topdir=`${PWDCMD-pwd}`
2337 cd $holddir
2338
2339 # Conditionalize the makefile for this host machine.
2340 xmake_file=
2341 for f in ${host_xmake_file}
2342 do
2343 if test -f ${srcdir}/config/$f
2344 then
2345 xmake_file="${xmake_file} \$(srcdir)/config/$f"
2346 fi
2347 done
2348
2349 # Conditionalize the makefile for this target machine.
2350 tmake_file_=
2351 for f in ${tmake_file}
2352 do
2353 if test -f ${srcdir}/config/$f
2354 then
2355 tmake_file_="${tmake_file_} \$(srcdir)/config/$f"
2356 fi
2357 done
2358 tmake_file="${tmake_file_}${omp_device_property_tmake_file}"
2359
2360 out_object_file=`basename $out_file .cc`.o
2361 common_out_object_file=`basename $common_out_file .cc`.o
2362
2363 tm_file_list="options.h"
2364 tm_include_list="options.h insn-constants.h"
2365 for f in $tm_file; do
2366 case $f in
2367 ./* )
2368 f=`echo $f | sed 's/^..//'`
2369 tm_file_list="${tm_file_list} $f"
2370 tm_include_list="${tm_include_list} $f"
2371 ;;
2372 defaults.h )
2373 tm_file_list="${tm_file_list} \$(srcdir)/$f"
2374 tm_include_list="${tm_include_list} $f"
2375 ;;
2376 * )
2377 tm_file_list="${tm_file_list} \$(srcdir)/config/$f"
2378 tm_include_list="${tm_include_list} config/$f"
2379 ;;
2380 esac
2381 done
2382
2383 tm_p_file_list=
2384 tm_p_include_list=
2385 for f in $tm_p_file; do
2386 case $f in
2387 tm-preds.h )
2388 tm_p_file_list="${tm_p_file_list} $f"
2389 tm_p_include_list="${tm_p_include_list} $f"
2390 ;;
2391 * )
2392 tm_p_file_list="${tm_p_file_list} \$(srcdir)/config/$f"
2393 tm_p_include_list="${tm_p_include_list} config/$f"
2394 esac
2395 done
2396
2397 tm_d_file_list=
2398 tm_d_include_list=
2399 for f in $tm_d_file; do
2400 case $f in
2401 * )
2402 tm_d_file_list="${tm_d_file_list} \$(srcdir)/config/$f"
2403 tm_d_include_list="${tm_d_include_list} config/$f"
2404 ;;
2405 esac
2406 done
2407
2408 xm_file_list=
2409 xm_include_list=
2410 for f in $xm_file; do
2411 case $f in
2412 ansidecl.h )
2413 xm_file_list="${xm_file_list} \$(srcdir)/../include/$f"
2414 xm_include_list="${xm_include_list} $f"
2415 ;;
2416 auto-host.h )
2417 xm_file_list="${xm_file_list} $f"
2418 xm_include_list="${xm_include_list} $f"
2419 ;;
2420 * )
2421 xm_file_list="${xm_file_list} \$(srcdir)/config/$f"
2422 xm_include_list="${xm_include_list} config/$f"
2423 ;;
2424 esac
2425 done
2426
2427 host_xm_file_list=
2428 host_xm_include_list=
2429 for f in $host_xm_file; do
2430 case $f in
2431 ansidecl.h )
2432 host_xm_file_list="${host_xm_file_list} \$(srcdir)/../include/$f"
2433 host_xm_include_list="${host_xm_include_list} $f"
2434 ;;
2435 auto-host.h )
2436 host_xm_file_list="${host_xm_file_list} $f"
2437 host_xm_include_list="${host_xm_include_list} $f"
2438 ;;
2439 * )
2440 host_xm_file_list="${host_xm_file_list} \$(srcdir)/config/$f"
2441 host_xm_include_list="${host_xm_include_list} config/$f"
2442 ;;
2443 esac
2444 done
2445
2446 build_xm_file_list=
2447 for f in $build_xm_file; do
2448 case $f in
2449 ansidecl.h )
2450 build_xm_file_list="${build_xm_file_list} \$(srcdir)/../include/$f"
2451 build_xm_include_list="${build_xm_include_list} $f"
2452 ;;
2453 auto-build.h | auto-host.h )
2454 build_xm_file_list="${build_xm_file_list} $f"
2455 build_xm_include_list="${build_xm_include_list} $f"
2456 ;;
2457 * )
2458 build_xm_file_list="${build_xm_file_list} \$(srcdir)/config/$f"
2459 build_xm_include_list="${build_xm_include_list} config/$f"
2460 ;;
2461 esac
2462 done
2463
2464 # Define macro CROSS_DIRECTORY_STRUCTURE in compilation if this is a
2465 # cross-compiler which does not use the native headers and libraries.
2466 # Also use all.cross instead of all.internal and adjust SYSTEM_HEADER_DIR.
2467 CROSS= AC_SUBST(CROSS)
2468 ALL=all.internal AC_SUBST(ALL)
2469 SYSTEM_HEADER_DIR='$(NATIVE_SYSTEM_HEADER_DIR)' AC_SUBST(SYSTEM_HEADER_DIR)
2470 BUILD_SYSTEM_HEADER_DIR=$SYSTEM_HEADER_DIR AC_SUBST(BUILD_SYSTEM_HEADER_DIR)
2471
2472 if test x$host != x$target || test "x$TARGET_SYSTEM_ROOT" != x ||
2473 test x$build != x$host || test "x$with_build_sysroot" != x; then
2474 if test "x$with_build_sysroot" != x; then
2475 BUILD_SYSTEM_HEADER_DIR=$with_build_sysroot'$${sysroot_headers_suffix}$(NATIVE_SYSTEM_HEADER_DIR)'
2476 else
2477 BUILD_SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
2478 fi
2479
2480 if test x$host != x$target
2481 then
2482 CROSS="-DCROSS_DIRECTORY_STRUCTURE"
2483 ALL=all.cross
2484 SYSTEM_HEADER_DIR=$BUILD_SYSTEM_HEADER_DIR
2485 elif test "x$TARGET_SYSTEM_ROOT" != x; then
2486 SYSTEM_HEADER_DIR='$(CROSS_SYSTEM_HEADER_DIR)'
2487 fi
2488
2489 if test "x$with_build_sysroot" != "x"; then
2490 target_header_dir="${with_build_sysroot}${native_system_header_dir}"
2491 elif test "x$with_sysroot" = x; then
2492 target_header_dir="${test_exec_prefix}/${target_noncanonical}/sys-include"
2493 elif test "x$with_sysroot" = xyes; then
2494 target_header_dir="${test_exec_prefix}/${target_noncanonical}/sys-root${native_system_header_dir}"
2495 else
2496 target_header_dir="${with_sysroot}${native_system_header_dir}"
2497 fi
2498 else
2499 target_header_dir=${native_system_header_dir}
2500 fi
2501
2502 # If this is a cross-compiler that does not
2503 # have its own set of headers then define
2504 # inhibit_libc
2505
2506 # If this is using newlib, without having the headers available now,
2507 # then define inhibit_libc in LIBGCC2_CFLAGS.
2508 # This prevents libgcc2 from containing any code which requires libc
2509 # support.
2510 : ${inhibit_libc=false}
2511 if { { test x$host != x$target && test "x$with_sysroot" = x ; } ||
2512 test x$with_newlib = xyes ; } &&
2513 { test "x$with_headers" = xno || test ! -f "$target_header_dir/stdio.h"; } ; then
2514 inhibit_libc=true
2515 fi
2516 AC_SUBST(inhibit_libc)
2517
2518 # When building gcc with a cross-compiler, we need to adjust things so
2519 # that the generator programs are still built with the native compiler.
2520 # Also, we cannot run fixincludes.
2521
2522 # These are the normal (build=host) settings:
2523 CC_FOR_BUILD='$(CC)' AC_SUBST(CC_FOR_BUILD)
2524 CXX_FOR_BUILD='$(CXX)' AC_SUBST(CXX_FOR_BUILD)
2525 BUILD_CFLAGS='$(ALL_CFLAGS)' AC_SUBST(BUILD_CFLAGS)
2526 BUILD_CXXFLAGS='$(ALL_CXXFLAGS)' AC_SUBST(BUILD_CXXFLAGS)
2527 BUILD_LDFLAGS='$(LDFLAGS)' AC_SUBST(BUILD_LDFLAGS)
2528 STMP_FIXINC=stmp-fixinc AC_SUBST(STMP_FIXINC)
2529
2530 # And these apply if build != host, or we are generating coverage data
2531 if test x$build != x$host || test "x$coverage_flags" != x
2532 then
2533 BUILD_CFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS-$@) $(CFLAGS_FOR_BUILD)'
2534 BUILD_CXXFLAGS='$(INTERNAL_CFLAGS) $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS_FOR_BUILD)'
2535 BUILD_LDFLAGS='$(LDFLAGS_FOR_BUILD)'
2536 fi
2537
2538
2539 if test x$enable_fixincludes = xno;
2540 then
2541 STMP_FIXINC=''
2542 fi
2543
2544 # Expand extra_headers to include complete path.
2545 # This substitutes for lots of t-* files.
2546 extra_headers_list=
2547 # Prepend $(srcdir)/config/${cpu_type}/ to every entry in extra_headers.
2548 for file in ${extra_headers} ; do
2549 extra_headers_list="${extra_headers_list} \$(srcdir)/config/${cpu_type}/${file}"
2550 done
2551
2552 # If use_gcc_tgmath is set, append ginclude/tgmath.h.
2553 if test x"$use_gcc_tgmath" = xyes
2554 then extra_headers_list="${extra_headers_list} \$(srcdir)/ginclude/tgmath.h"
2555 fi
2556
2557 # Define collect2 in Makefile.
2558 case $host_can_use_collect2 in
2559 no) collect2= ;;
2560 *) collect2='collect2$(exeext)' ;;
2561 esac
2562 AC_SUBST([collect2])
2563
2564 # Add a definition of USE_COLLECT2 if system wants one.
2565 case $use_collect2 in
2566 no) use_collect2= ;;
2567 "") ;;
2568 *)
2569 host_xm_defines="${host_xm_defines} USE_COLLECT2"
2570 xm_defines="${xm_defines} USE_COLLECT2"
2571 case $host_can_use_collect2 in
2572 no)
2573 AC_MSG_ERROR([collect2 is required but cannot be built on this system])
2574 ;;
2575 esac
2576 ;;
2577 esac
2578
2579 AC_DEFINE_UNQUOTED(LTOPLUGINSONAME,"${host_lto_plugin_soname}",
2580 [Define to the name of the LTO plugin DSO that must be
2581 passed to the linker's -plugin=LIB option.])
2582
2583 # ---------------------------
2584 # Assembler & linker features
2585 # ---------------------------
2586
2587 # During stage 2, ld is actually gcc/collect-ld, which is a small script to
2588 # discern between when to use prev-ld/ld-new and when to use ld/ld-new.
2589 # However when ld-new is first executed from the build tree, libtool will
2590 # relink it as .libs/lt-ld-new, so that it can give it an RPATH that refers
2591 # to the build tree. While doing this we need to use the previous-stage
2592 # linker, or we have an infinite loop. The presence of a shell script as
2593 # ld/ld-new, and the fact that the script *uses ld itself*, is what confuses
2594 # the gcc/collect-ld script. So we need to know how libtool works, or
2595 # exec-tool will fail.
2596
2597 m4_defun([_LT_CONFIG_COMMANDS], [])
2598 AC_PROG_LIBTOOL
2599 AC_SUBST(objdir)
2600 AC_SUBST(enable_fast_install)
2601
2602 # Identify the assembler which will work hand-in-glove with the newly
2603 # built GCC, so that we can examine its features. This is the assembler
2604 # which will be driven by the driver program.
2605 #
2606 # If build != host, and we aren't building gas in-tree, we identify a
2607 # build->target assembler and hope that it will have the same features
2608 # as the host->target assembler we'll be using.
2609 gcc_cv_as_gas_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gas
2610
2611 m4_pattern_allow([AS_FOR_TARGET])dnl
2612 AS_VAR_SET_IF(gcc_cv_as,, [
2613 if test -x "$DEFAULT_ASSEMBLER"; then
2614 gcc_cv_as="$DEFAULT_ASSEMBLER"
2615 elif test -f $gcc_cv_as_gas_srcdir/configure.ac \
2616 && test -f ../gas/Makefile \
2617 && test x$build = x$host; then
2618 gcc_cv_as=../gas/as-new$build_exeext
2619 elif test -x as$build_exeext; then
2620 # Build using assembler in the current directory.
2621 gcc_cv_as=./as$build_exeext
2622 elif ( set dummy $AS_FOR_TARGET; test -x $[2] ); then
2623 gcc_cv_as="$AS_FOR_TARGET"
2624 else
2625 AC_PATH_PROG(gcc_cv_as, $AS_FOR_TARGET)
2626 fi])
2627
2628 ORIGINAL_AS_FOR_TARGET=$gcc_cv_as
2629 AC_SUBST(ORIGINAL_AS_FOR_TARGET)
2630 case "$ORIGINAL_AS_FOR_TARGET" in
2631 ./as | ./as$build_exeext) ;;
2632 *) AC_CONFIG_FILES(as:exec-tool.in, [chmod +x as]) ;;
2633 esac
2634
2635 default_ld=
2636 AC_ARG_ENABLE(ld,
2637 [[ --enable-ld[=ARG] build ld [ARG={default,yes,no}]]],
2638 [case "${enableval}" in
2639 no)
2640 default_ld=ld.gold
2641 ;;
2642 esac])
2643
2644 install_gold_as_default=no
2645 AC_ARG_ENABLE(gold,
2646 [[ --enable-gold[=ARG] build gold [ARG={default,yes,no}]]],
2647 [case "${enableval}" in
2648 default)
2649 install_gold_as_default=yes
2650 ;;
2651 yes)
2652 if test x${default_ld} != x; then
2653 install_gold_as_default=yes
2654 fi
2655 ;;
2656 no)
2657 ;;
2658 *)
2659 AC_MSG_ERROR([invalid --enable-gold argument])
2660 ;;
2661 esac])
2662
2663 # Identify the linker which will work hand-in-glove with the newly
2664 # built GCC, so that we can examine its features. This is the linker
2665 # which will be driven by the driver program.
2666 #
2667 # If build != host, and we aren't building gas in-tree, we identify a
2668 # build->target linker and hope that it will have the same features
2669 # as the host->target linker we'll be using.
2670 gcc_cv_gld_major_version=
2671 gcc_cv_gld_minor_version=
2672 gcc_cv_ld_gld_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/ld
2673 gcc_cv_ld_gold_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/gold
2674 gcc_cv_ld_bfd_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/bfd
2675
2676 AS_VAR_SET_IF(gcc_cv_ld,, [
2677 if test -x "$DEFAULT_LINKER"; then
2678 gcc_cv_ld="$DEFAULT_LINKER"
2679 elif test $install_gold_as_default = yes \
2680 && test -f $gcc_cv_ld_gold_srcdir/configure.ac \
2681 && test -f ../gold/Makefile \
2682 && test x$build = x$host; then
2683 gcc_cv_ld=../gold/ld-new$build_exeext
2684 elif test -f $gcc_cv_ld_gld_srcdir/configure.ac \
2685 && test -f ../ld/Makefile \
2686 && test x$build = x$host; then
2687 gcc_cv_ld=../ld/ld-new$build_exeext
2688 elif test -x collect-ld$build_exeext; then
2689 # Build using linker in the current directory.
2690 gcc_cv_ld=./collect-ld$build_exeext
2691 elif ( set dummy $LD_FOR_TARGET; test -x $[2] ); then
2692 gcc_cv_ld="$LD_FOR_TARGET"
2693 else
2694 AC_PATH_PROG(gcc_cv_ld, $LD_FOR_TARGET)
2695 fi])
2696
2697 ORIGINAL_PLUGIN_LD_FOR_TARGET=$gcc_cv_ld
2698 PLUGIN_LD_SUFFIX=`basename $gcc_cv_ld | sed -e "s,$target_alias-,,"`
2699 # if the PLUGIN_LD is set ld-new, just have it as ld
2700 # as that is the installed named.
2701 if test x$PLUGIN_LD_SUFFIX = xld-new \
2702 || test x$PLUGIN_LD_SUFFIX = xcollect-ld ; then
2703 PLUGIN_LD_SUFFIX=ld
2704 fi
2705 AC_ARG_WITH(plugin-ld,
2706 [AS_HELP_STRING([[--with-plugin-ld=[ARG]]], [specify the plugin linker])],
2707 [if test x"$withval" != x; then
2708 ORIGINAL_PLUGIN_LD_FOR_TARGET="$withval"
2709 PLUGIN_LD_SUFFIX="$withval"
2710 fi])
2711 AC_SUBST(ORIGINAL_PLUGIN_LD_FOR_TARGET)
2712 AC_DEFINE_UNQUOTED(PLUGIN_LD_SUFFIX, "$PLUGIN_LD_SUFFIX", [Specify plugin linker])
2713
2714 # Check to see if we are using gold instead of ld
2715 AC_MSG_CHECKING(whether we are using gold)
2716 ld_is_gold=no
2717 if test x$gcc_cv_ld != x; then
2718 if $gcc_cv_ld --version 2>/dev/null | sed 1q \
2719 | grep "GNU gold" > /dev/null; then
2720 ld_is_gold=yes
2721 fi
2722 fi
2723 AC_MSG_RESULT($ld_is_gold)
2724
2725 # Check to see if we are using mold instead of ld
2726 AC_MSG_CHECKING(whether we are using mold)
2727 ld_is_mold=no
2728 if test x$gcc_cv_ld != x; then
2729 if $gcc_cv_ld --version 2>/dev/null | sed 1q \
2730 | grep "mold" > /dev/null; then
2731 ld_is_mold=yes
2732 fi
2733 fi
2734 AC_MSG_RESULT($ld_is_mold)
2735
2736
2737 AC_MSG_CHECKING(gold linker with split stack support as non default)
2738 # Check to see if default ld is not gold, but gold is
2739 # available and has support for split stack. If gcc was configured
2740 # with gold then no checking is done.
2741 #
2742 if test x$ld_is_gold = xno && which ${gcc_cv_ld}.gold >/dev/null 2>&1; then
2743
2744 # For platforms other than powerpc64*, enable as appropriate.
2745
2746 gold_non_default=no
2747 ld_gold=`which ${gcc_cv_ld}.gold`
2748 # Make sure this gold has minimal split stack support
2749 if $ld_gold --help 2>/dev/null | grep split-stack-adjust-size >/dev/null 2>&1; then
2750 ld_vers=`$ld_gold --version | sed 1q`
2751 gold_vers=`echo $ld_vers | sed -n \
2752 -e 's,^[[^)]]*[[ ]]\([[0-9]][[0-9]]*\.[[0-9]][[0-9]]*[[^)]]*\)) .*$,\1,p'`
2753 case $target in
2754 # check that the gold version contains the complete split stack support
2755 # on powerpc64 big and little endian
2756 powerpc64*-*-*)
2757 case "$gold_vers" in
2758 2.25.[[1-9]]*|2.2[[6-9]][[.0-9]]*|2.[[3-9]][[.0-9]]*|[[3-9]].[[.0-9]]*) gold_non_default=yes
2759 ;;
2760 *) gold_non_default=no
2761 ;;
2762 esac
2763 ;;
2764 esac
2765 fi
2766 if test $gold_non_default = yes; then
2767 AC_DEFINE(HAVE_GOLD_NON_DEFAULT_SPLIT_STACK, 1,
2768 [Define if the gold linker supports split stack and is available as a non-default])
2769 fi
2770 fi
2771 AC_MSG_RESULT($gold_non_default)
2772
2773 ORIGINAL_LD_FOR_TARGET=$gcc_cv_ld
2774 AC_SUBST(ORIGINAL_LD_FOR_TARGET)
2775 case "$ORIGINAL_LD_FOR_TARGET" in
2776 ./collect-ld | ./collect-ld$build_exeext) ;;
2777 *) AC_CONFIG_FILES(collect-ld:exec-tool.in, [chmod +x collect-ld]) ;;
2778 esac
2779
2780 AC_MSG_CHECKING(what linker to use)
2781 if test "$gcc_cv_ld" = ../ld/ld-new$build_exeext \
2782 || test "$gcc_cv_ld" = ../gold/ld-new$build_exeext; then
2783 # Single tree build which includes ld. We want to prefer it
2784 # over whatever linker top-level may have detected, since
2785 # we'll use what we're building after installation anyway.
2786 AC_MSG_RESULT(newly built ld)
2787 in_tree_ld=yes
2788 in_tree_ld_is_elf=no
2789 if (grep 'EMUL = .*elf' ../ld/Makefile \
2790 || grep 'EMUL = .*linux' ../ld/Makefile \
2791 || grep 'EMUL = .*lynx' ../ld/Makefile) > /dev/null; then
2792 in_tree_ld_is_elf=yes
2793 elif test "$ld_is_gold" = yes; then
2794 in_tree_ld_is_elf=yes
2795 fi
2796 for f in $gcc_cv_ld_bfd_srcdir/configure $gcc_cv_ld_gld_srcdir/configure $gcc_cv_ld_gld_srcdir/configure.ac $gcc_cv_ld_gld_srcdir/Makefile.in
2797 do
2798 changequote(,)dnl
2799 gcc_cv_gld_version=`sed -n -e 's/^[ ]*VERSION=[^0-9A-Za-z_]*\([0-9]*\.[0-9]*.*\)/VERSION=\1/p' < $f`
2800 if test x$gcc_cv_gld_version != x; then
2801 break
2802 fi
2803 done
2804 case $gcc_cv_gld_version in
2805 VERSION=[0-9]*) ;;
2806 changequote([,])dnl
2807 *) AC_MSG_ERROR([[cannot find version of in-tree linker]]) ;;
2808 changequote(,)dnl
2809 esac
2810 gcc_cv_gld_major_version=`expr "$gcc_cv_gld_version" : "VERSION=\([0-9]*\)"`
2811 gcc_cv_gld_minor_version=`expr "$gcc_cv_gld_version" : "VERSION=[0-9]*\.\([0-9]*\)"`
2812 changequote([,])dnl
2813 ORIGINAL_LD_BFD_FOR_TARGET=../ld/ld-new$build_exeext
2814 ORIGINAL_LD_GOLD_FOR_TARGET=../gold/ld-new$build_exeext
2815 else
2816 AC_MSG_RESULT($gcc_cv_ld)
2817 in_tree_ld=no
2818 gcc_cvs_ld_program=`dirname $gcc_cv_ld`/`basename $gcc_cv_ld $host_exeext`
2819 ORIGINAL_LD_BFD_FOR_TARGET=${gcc_cvs_ld_program}.bfd$host_exeext
2820 ORIGINAL_LD_GOLD_FOR_TARGET=${gcc_cvs_ld_program}.gold$host_exeext
2821 fi
2822
2823 AC_SUBST(ORIGINAL_LD_BFD_FOR_TARGET)
2824 AC_SUBST(ORIGINAL_LD_GOLD_FOR_TARGET)
2825
2826 # Figure out what nm we will be using.
2827 gcc_cv_binutils_srcdir=`echo $srcdir | sed -e 's,/gcc$,,'`/binutils
2828 AS_VAR_SET_IF(gcc_cv_nm,, [
2829 if test -f $gcc_cv_binutils_srcdir/configure.ac \
2830 && test -f ../binutils/Makefile \
2831 && test x$build = x$host; then
2832 gcc_cv_nm=../binutils/nm-new$build_exeext
2833 elif test -x nm$build_exeext; then
2834 gcc_cv_nm=./nm$build_exeext
2835 elif ( set dummy $NM_FOR_TARGET; test -x $[2] ); then
2836 gcc_cv_nm="$NM_FOR_TARGET"
2837 else
2838 AC_PATH_PROG(gcc_cv_nm, $NM_FOR_TARGET)
2839 fi])
2840
2841 AC_MSG_CHECKING(what nm to use)
2842 if test "$gcc_cv_nm" = ../binutils/nm-new$build_exeext; then
2843 # Single tree build which includes binutils.
2844 AC_MSG_RESULT(newly built nm)
2845 in_tree_nm=yes
2846 else
2847 AC_MSG_RESULT($gcc_cv_nm)
2848 in_tree_nm=no
2849 fi
2850
2851 ORIGINAL_NM_FOR_TARGET=$gcc_cv_nm
2852 AC_SUBST(ORIGINAL_NM_FOR_TARGET)
2853 case "$ORIGINAL_NM_FOR_TARGET" in
2854 ./nm | ./nm$build_exeext) ;;
2855 *) AC_CONFIG_FILES(nm:exec-tool.in, [chmod +x nm]) ;;
2856 esac
2857
2858
2859 # Figure out what objdump we will be using.
2860 AS_VAR_SET_IF(gcc_cv_objdump,, [
2861 if test -f $gcc_cv_binutils_srcdir/configure.ac \
2862 && test -f ../binutils/Makefile \
2863 && test x$build = x$host; then
2864 # Single tree build which includes binutils.
2865 gcc_cv_objdump=../binutils/objdump$build_exeext
2866 elif test -x objdump$build_exeext; then
2867 gcc_cv_objdump=./objdump$build_exeext
2868 elif ( set dummy $OBJDUMP_FOR_TARGET; test -x $[2] ); then
2869 gcc_cv_objdump="$OBJDUMP_FOR_TARGET"
2870 else
2871 AC_PATH_PROG(gcc_cv_objdump, $OBJDUMP_FOR_TARGET)
2872 fi])
2873
2874 AC_MSG_CHECKING(what objdump to use)
2875 if test "$gcc_cv_objdump" = ../binutils/objdump$build_exeext; then
2876 # Single tree build which includes binutils.
2877 AC_MSG_RESULT(newly built objdump)
2878 elif test x$gcc_cv_objdump = x; then
2879 AC_MSG_RESULT(not found)
2880 else
2881 AC_MSG_RESULT($gcc_cv_objdump)
2882 fi
2883
2884 # Figure out what readelf we will be using.
2885 AS_VAR_SET_IF(gcc_cv_readelf,, [
2886 if test -f $gcc_cv_binutils_srcdir/configure.ac \
2887 && test -f ../binutils/Makefile \
2888 && test x$build = x$host; then
2889 # Single tree build which includes binutils.
2890 gcc_cv_readelf=../binutils/readelf$build_exeext
2891 elif test -x readelf$build_exeext; then
2892 gcc_cv_readelf=./readelf$build_exeext
2893 elif ( set dummy $READELF_FOR_TARGET; test -x $[2] ); then
2894 gcc_cv_readelf="$READELF_FOR_TARGET"
2895 else
2896 AC_PATH_PROG(gcc_cv_readelf, $READELF_FOR_TARGET)
2897 fi])
2898
2899 AC_MSG_CHECKING(what readelf to use)
2900 if test "$gcc_cv_readelf" = ../binutils/readelf$build_exeext; then
2901 # Single tree build which includes binutils.
2902 AC_MSG_RESULT(newly built readelf)
2903 elif test x$gcc_cv_readelf = x; then
2904 AC_MSG_RESULT(not found)
2905 else
2906 AC_MSG_RESULT($gcc_cv_readelf)
2907 fi
2908
2909 # Figure out what otool we will be using.
2910 AS_VAR_SET_IF(gcc_cv_otool,, [
2911 if test -x otool$build_exeext; then
2912 gcc_cv_otool=./otool$build_exeext
2913 elif ( set dummy $OTOOL_FOR_TARGET; test -x $[2] ); then
2914 gcc_cv_otool="$OTOOL_FOR_TARGET"
2915 else
2916 AC_PATH_PROG(gcc_cv_otool, $OTOOL_FOR_TARGET)
2917 fi])
2918
2919 AC_MSG_CHECKING(what otool to use)
2920 if test x$gcc_cv_otool = x; then
2921 AC_MSG_RESULT(not found)
2922 else
2923 AC_MSG_RESULT($gcc_cv_otool)
2924 fi
2925
2926 # Figure out the dsymutil we will use.
2927 AS_VAR_SET_IF(gcc_cv_dsymutil,, [
2928 if test -x "$DEFAULT_DSYMUTIL"; then
2929 gcc_cv_dsymutil="$DEFAULT_DSYMUTIL"
2930 elif test -x dsymutil$build_exeext; then
2931 gcc_cv_dsymutil=./dsymutil$build_exeext
2932 elif ( set dummy $DSYMUTIL_FOR_TARGET; test -x $[2] ); then
2933 gcc_cv_dsymutil=$DSYMUTIL_FOR_TARGET
2934 elif ( set dummy $DSYMUTIL; test -x $[2] ); then
2935 gcc_cv_dsymutil=$DSYMUTIL
2936 else
2937 AC_PATH_PROG(gcc_cv_dsymutil, $DSYMUTIL_FOR_TARGET)
2938 fi])
2939
2940 ORIGINAL_DSYMUTIL_FOR_TARGET=$gcc_cv_dsymutil
2941 AC_SUBST(ORIGINAL_DSYMUTIL_FOR_TARGET)
2942 case "$ORIGINAL_DSYMUTIL_FOR_TARGET" in
2943 ./dsymutil | ./dsymutil$build_exeext) ;;
2944 *) AC_CONFIG_FILES(dsymutil:exec-tool.in, [chmod +x dsymutil]) ;;
2945 esac
2946
2947 # Figure out what assembler alignment features are present.
2948 gcc_GAS_CHECK_FEATURE([.balign and .p2align], gcc_cv_as_balign_and_p2align,,
2949 [.balign 4
2950 .p2align 2],,
2951 [AC_DEFINE(HAVE_GAS_BALIGN_AND_P2ALIGN, 1,
2952 [Define if your assembler supports .balign and .p2align.])])
2953
2954 gcc_GAS_CHECK_FEATURE([.p2align with maximum skip], gcc_cv_as_max_skip_p2align,,
2955 [.p2align 4,,7],,
2956 [AC_DEFINE(HAVE_GAS_MAX_SKIP_P2ALIGN, 1,
2957 [Define if your assembler supports specifying the maximum number
2958 of bytes to skip when using the GAS .p2align command.])])
2959
2960 gcc_GAS_CHECK_FEATURE([.literal16], gcc_cv_as_literal16,,
2961 [.literal16],,
2962 [AC_DEFINE(HAVE_GAS_LITERAL16, 1,
2963 [Define if your assembler supports .literal16.])])
2964
2965 gcc_GAS_CHECK_FEATURE([working .subsection -1], gcc_cv_as_subsection_m1,,
2966 [conftest_label1: .word 0
2967 .subsection -1
2968 conftest_label2: .word 0
2969 .previous],
2970 [if test x$gcc_cv_nm != x; then
2971 $gcc_cv_nm conftest.o | grep conftest_label1 > conftest.nm1
2972 $gcc_cv_nm conftest.o | grep conftest_label2 | sed -e 's/label2/label1/' > conftest.nm2
2973 if cmp conftest.nm1 conftest.nm2 > /dev/null 2>&1
2974 then :
2975 else gcc_cv_as_subsection_m1=yes
2976 fi
2977 rm -f conftest.nm1 conftest.nm2
2978 fi],
2979 [AC_DEFINE(HAVE_GAS_SUBSECTION_ORDERING, 1,
2980 [Define if your assembler supports .subsection and .subsection -1 starts
2981 emitting at the beginning of your section.])])
2982
2983 gcc_GAS_CHECK_FEATURE([.weak], gcc_cv_as_weak,,
2984 [ .weak foobar],,
2985 [AC_DEFINE(HAVE_GAS_WEAK, 1, [Define if your assembler supports .weak.])])
2986
2987 gcc_GAS_CHECK_FEATURE([.weakref], gcc_cv_as_weakref,,
2988 [ .weakref foobar, barfnot],,
2989 [AC_DEFINE(HAVE_GAS_WEAKREF, 1, [Define if your assembler supports .weakref.])])
2990
2991 gcc_GAS_CHECK_FEATURE([.nsubspa comdat], gcc_cv_as_nsubspa_comdat,,
2992 [ .SPACE $TEXT$
2993 .NSUBSPA $CODE$,COMDAT],,
2994 [AC_DEFINE(HAVE_GAS_NSUBSPA_COMDAT, 1, [Define if your assembler supports .nsubspa comdat option.])])
2995
2996 # .hidden needs to be supported in both the assembler and the linker,
2997 # because GNU LD versions before 2.12.1 have buggy support for STV_HIDDEN.
2998 # This is irritatingly difficult to feature test for; we have to check the
2999 # date string after the version number. If we've got an in-tree
3000 # ld, we don't know its patchlevel version, so we set the baseline at 2.13
3001 # to be safe.
3002 # The gcc_GAS_CHECK_FEATURE call just sets a cache variable.
3003 case "${target}" in
3004 *-*-aix*)
3005 conftest_s=' .globl foobar,hidden'
3006 ;;
3007 *)
3008 conftest_s=' .hidden foobar
3009 foobar:'
3010 ;;
3011 esac
3012 gcc_GAS_CHECK_FEATURE([.hidden], gcc_cv_as_hidden,, [$conftest_s])
3013 case "${target}" in
3014 *-*-darwin*)
3015 # Darwin as has some visibility support, though with a different syntax.
3016 gcc_cv_as_hidden=yes
3017 ;;
3018 esac
3019
3020 # gnu_indirect_function type is an extension proposed at
3021 # http://groups.google/com/group/generic-abi/files. It allows dynamic runtime
3022 # selection of function implementation
3023 AC_ARG_ENABLE(gnu-indirect-function,
3024 [AS_HELP_STRING([--enable-gnu-indirect-function],
3025 [enable the use of the @gnu_indirect_function to glibc systems])],
3026 [case $enable_gnu_indirect_function in
3027 yes | no) ;;
3028 *) AC_MSG_ERROR(['$enable_gnu_indirect_function' is an invalid value for --enable-gnu-indirect-function.
3029 Valid choices are 'yes' and 'no'.]) ;;
3030 esac],
3031 [enable_gnu_indirect_function="$default_gnu_indirect_function"])
3032
3033 case "${target}" in
3034 riscv*-*-linux*)
3035 AC_MSG_CHECKING(linker ifunc IRELATIVE support)
3036 cat > conftest.s <<EOF
3037 .text
3038 .type foo_resolver, @function
3039 foo_resolver:
3040 ret
3041 .size foo_resolver, .-foo_resolver
3042
3043 .globl foo
3044 .type foo, %gnu_indirect_function
3045 .set foo, foo_resolver
3046
3047 .globl bar
3048 .type bar, @function
3049 bar:
3050 call foo
3051 ret
3052 .size bar, .-bar
3053 EOF
3054 if test x$gcc_cv_as != x \
3055 && test x$gcc_cv_ld != x \
3056 && test x$gcc_cv_readelf != x \
3057 && $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1 \
3058 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1 \
3059 && $gcc_cv_readelf --relocs --wide conftest \
3060 | grep R_RISCV_IRELATIVE > /dev/null 2>&1; then
3061 enable_gnu_indirect_function=yes
3062 fi
3063 rm -f conftest conftest.o conftest.s
3064 AC_MSG_RESULT($enable_gnu_indirect_function)
3065 ;;
3066 esac
3067
3068 gif=`if test x$enable_gnu_indirect_function = xyes; then echo 1; else echo 0; fi`
3069 AC_DEFINE_UNQUOTED(HAVE_GNU_INDIRECT_FUNCTION, $gif,
3070 [Define if your system supports gnu indirect functions.])
3071
3072
3073 changequote(,)dnl
3074 if test $in_tree_ld != yes ; then
3075 ld_ver=`$gcc_cv_ld --version 2>/dev/null | sed 1q`
3076 if echo "$ld_ver" | grep GNU > /dev/null; then
3077 if test x"$ld_is_gold" = xyes; then
3078 # GNU gold --version looks like this:
3079 #
3080 # GNU gold (GNU Binutils 2.21.51.20110225) 1.11
3081 #
3082 # We extract the binutils version which is more familiar and specific
3083 # than the gold version.
3084 ld_vers=`echo $ld_ver | sed -n \
3085 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
3086 else
3087 # GNU ld --version looks like this:
3088 #
3089 # GNU ld (GNU Binutils) 2.21.51.20110225
3090 ld_vers=`echo $ld_ver | sed -n \
3091 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
3092 fi
3093 ld_date=`echo $ld_ver | sed -n 's,^.*\([2-9][0-9][0-9][0-9]\)\(-*\)\([01][0-9]\)\2\([0-3][0-9]\).*$,\1\3\4,p'`
3094 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
3095 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
3096 ld_vers_patch=`expr "$ld_vers" : '[0-9]*\.[0-9]*\.\([0-9]*\)'`
3097 else
3098 case "${target}" in
3099 *-*-solaris2*)
3100 # Solaris 2 ld -V output looks like this for a regular version:
3101 #
3102 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1699
3103 #
3104 # but test versions add stuff at the end:
3105 #
3106 # ld: Software Generation Utilities - Solaris Link Editors: 5.11-1.1701:onnv-ab196087-6931056-03/25/10
3107 #
3108 # ld and ld.so.1 are guaranteed to be updated in lockstep, so ld version
3109 # numbers can be used in ld.so.1 feature checks even if a different
3110 # linker is configured.
3111 ld_ver=`$gcc_cv_ld -V 2>&1`
3112 if echo "$ld_ver" | grep 'Solaris Link Editors' > /dev/null; then
3113 ld_vers=`echo $ld_ver | sed -n \
3114 -e 's,^.*: 5\.[0-9][0-9]*-\([0-9]\.[0-9][0-9]*\).*$,\1,p'`
3115 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
3116 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
3117 fi
3118 ;;
3119 esac
3120 fi
3121 fi
3122 changequote([,])dnl
3123
3124 AC_CACHE_CHECK(linker for .hidden support, gcc_cv_ld_hidden,
3125 [[if test $in_tree_ld = yes ; then
3126 gcc_cv_ld_hidden=no
3127 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 \
3128 && test $in_tree_ld_is_elf = yes; then
3129 gcc_cv_ld_hidden=yes
3130 fi
3131 else
3132 gcc_cv_ld_hidden=yes
3133 if test x"$ld_is_gold" = xyes; then
3134 :
3135 elif test x"$ld_is_mold" = xyes; then
3136 :
3137 elif echo "$ld_ver" | grep GNU > /dev/null; then
3138 if test 0"$ld_date" -lt 20020404; then
3139 if test -n "$ld_date"; then
3140 # If there was date string, but was earlier than 2002-04-04, fail
3141 gcc_cv_ld_hidden=no
3142 elif test -z "$ld_vers"; then
3143 # If there was no date string nor ld version number, something is wrong
3144 gcc_cv_ld_hidden=no
3145 else
3146 test -z "$ld_vers_patch" && ld_vers_patch=0
3147 if test "$ld_vers_major" -lt 2; then
3148 gcc_cv_ld_hidden=no
3149 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 12; then
3150 gcc_cv_ld_hidden="no"
3151 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 12 -a "$ld_vers_patch" -eq 0; then
3152 gcc_cv_ld_hidden=no
3153 fi
3154 fi
3155 fi
3156 else
3157 case "${target}" in
3158 *-*-aix[789]*)
3159 gcc_cv_ld_hidden=yes
3160 ;;
3161 *-*-darwin*)
3162 # Darwin ld has some visibility support.
3163 gcc_cv_ld_hidden=yes
3164 ;;
3165 hppa64*-*-hpux* | ia64*-*-hpux*)
3166 gcc_cv_ld_hidden=yes
3167 ;;
3168 *-*-solaris2*)
3169 # Support for .hidden in Sun ld appeared in Solaris 9 FCS, but
3170 # .symbolic was only added in Solaris 9 12/02.
3171 gcc_cv_ld_hidden=yes
3172 ;;
3173 *)
3174 gcc_cv_ld_hidden=no
3175 ;;
3176 esac
3177 fi
3178 fi]])
3179 libgcc_visibility=no
3180 AC_SUBST(libgcc_visibility)
3181 GCC_TARGET_TEMPLATE([HAVE_GAS_HIDDEN])
3182 if test $gcc_cv_as_hidden = yes && test $gcc_cv_ld_hidden = yes; then
3183 libgcc_visibility=yes
3184 AC_DEFINE(HAVE_GAS_HIDDEN, 1,
3185 [Define if your assembler and linker support .hidden.])
3186 fi
3187
3188 AC_MSG_CHECKING(linker read-only and read-write section mixing)
3189 gcc_cv_ld_ro_rw_mix=unknown
3190 if test $in_tree_ld = yes ; then
3191 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 \
3192 && test $in_tree_ld_is_elf = yes; then
3193 gcc_cv_ld_ro_rw_mix=read-write
3194 fi
3195 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
3196 echo '.section myfoosect, "a"' > conftest1.s
3197 echo '.section myfoosect, "aw"' > conftest2.s
3198 echo '.byte 1' >> conftest2.s
3199 echo '.section myfoosect, "a"' > conftest3.s
3200 echo '.byte 0' >> conftest3.s
3201 if $gcc_cv_as -o conftest1.o conftest1.s > /dev/null 2>&1 \
3202 && $gcc_cv_as -o conftest2.o conftest2.s > /dev/null 2>&1 \
3203 && $gcc_cv_as -o conftest3.o conftest3.s > /dev/null 2>&1; then
3204 if $gcc_cv_ld -shared -o conftest1.so conftest1.o \
3205 conftest2.o conftest3.o > /dev/null 2>&1 \
3206 || $gcc_cv_ld -r -o conftest1.so conftest1.o \
3207 conftest2.o conftest3.o > /dev/null 2>&1; then
3208 gcc_cv_ld_ro_rw_mix=`$gcc_cv_objdump -h conftest1.so \
3209 | sed -e '/myfoosect/!d' -e N`
3210 if echo "$gcc_cv_ld_ro_rw_mix" | grep CONTENTS > /dev/null; then
3211 if echo "$gcc_cv_ld_ro_rw_mix" | grep READONLY > /dev/null; then
3212 gcc_cv_ld_ro_rw_mix=read-only
3213 else
3214 gcc_cv_ld_ro_rw_mix=read-write
3215 fi
3216 fi
3217 fi
3218 fi
3219 changequote(,)dnl
3220 rm -f conftest.* conftest[123].*
3221 changequote([,])dnl
3222 fi
3223 if test x$gcc_cv_ld_ro_rw_mix = xread-write; then
3224 AC_DEFINE(HAVE_LD_RO_RW_SECTION_MIXING, 1,
3225 [Define if your linker links a mix of read-only
3226 and read-write sections into a read-write section.])
3227 fi
3228 AC_MSG_RESULT($gcc_cv_ld_ro_rw_mix)
3229
3230 gcc_AC_INITFINI_ARRAY
3231
3232 # Check if we have .[us]leb128, and support symbol arithmetic with it.
3233 # Older versions of GAS and some non-GNU assemblers, have a bugs handling
3234 # these directives, even when they appear to accept them.
3235 gcc_GAS_CHECK_FEATURE([.sleb128 and .uleb128], gcc_cv_as_leb128,,
3236 [ .data
3237 .uleb128 L2 - L1
3238 L1:
3239 .uleb128 1280
3240 .sleb128 -1010
3241 L2:
3242 .uleb128 0x8000000000000000
3243 ],
3244 [[
3245 if test "x$gcc_cv_objdump" != x; then
3246 if $gcc_cv_objdump -s conftest.o 2>/dev/null \
3247 | grep '04800a8e 78808080 80808080 808001' >/dev/null; then
3248 gcc_cv_as_leb128=yes
3249 fi
3250 elif test "x$gcc_cv_otool" != x; then
3251 if $gcc_cv_otool -d conftest.o 2>/dev/null \
3252 | grep '04 80 0a 8e 78 80 80 80 80 80 80 80 80 80 01' >/dev/null; then
3253 gcc_cv_as_leb128=yes
3254 fi
3255 else
3256 # play safe, assume the assembler is broken.
3257 :
3258 fi
3259 ]],
3260 [AC_DEFINE(HAVE_AS_LEB128, 1,
3261 [Define if your assembler supports .sleb128 and .uleb128.])],
3262 [AC_DEFINE(HAVE_AS_LEB128, 0,
3263 [Define if your assembler supports .sleb128 and .uleb128.])])
3264
3265 # Determine if an .eh_frame section is read-only.
3266 gcc_fn_eh_frame_ro () {
3267 $gcc_cv_as $1 -o conftest.o conftest.s > /dev/null 2>&1 && \
3268 $gcc_cv_objdump -h conftest.o 2>/dev/null | \
3269 sed -e '/.eh_frame/!d' -e N | grep READONLY > /dev/null
3270 }
3271
3272 # Check if we have assembler support for unwind directives.
3273 gcc_GAS_CHECK_FEATURE([cfi directives], gcc_cv_as_cfi_directive,,
3274 [ .text
3275 .cfi_startproc
3276 .cfi_offset 0, 0
3277 .cfi_same_value 1
3278 .cfi_def_cfa 1, 2
3279 .cfi_escape 1, 2, 3, 4, 5
3280 .cfi_endproc],
3281 [case "$target" in
3282 *-*-solaris*)
3283 # If the linker used on Solaris (like Sun ld) isn't capable of merging
3284 # read-only and read-write sections, we need to make sure that the
3285 # assembler used emits read-write .eh_frame sections.
3286 if test "x$gcc_cv_ld_ro_rw_mix" = xread-write; then
3287 gcc_cv_as_cfi_directive=yes
3288 elif test "x$gcc_cv_objdump" = x; then
3289 # No objdump, err on the side of caution.
3290 gcc_cv_as_cfi_directive=no
3291 else
3292 if test x$gas = xyes; then
3293 as_32_opt="--32"
3294 as_64_opt="--64"
3295 else
3296 as_32_opt="-m32"
3297 as_64_opt="-m64"
3298 fi
3299 case "$target" in
3300 sparc*-*-solaris2.*)
3301 # On Solaris/SPARC, .eh_frame sections should always be read-write.
3302 if gcc_fn_eh_frame_ro $as_32_opt \
3303 || gcc_fn_eh_frame_ro $as_64_opt; then
3304 gcc_cv_as_cfi_directive=no
3305 else
3306 gcc_cv_as_cfi_directive=yes
3307 fi
3308 ;;
3309 i?86-*-solaris2.* | x86_64-*-solaris2.*)
3310 # On Solaris/x86, make sure that GCC and assembler agree on using
3311 # read-only .eh_frame sections for 64-bit.
3312 if gcc_fn_eh_frame_ro $as_32_opt; then
3313 gcc_cv_as_cfi_directive=no
3314 elif gcc_fn_eh_frame_ro $as_64_opt; then
3315 gcc_cv_as_cfi_directive=yes
3316 else
3317 gcc_cv_as_cfi_directive=no
3318 fi
3319 ;;
3320 esac
3321 fi
3322 ;;
3323 *-*-*)
3324 gcc_cv_as_cfi_directive=yes
3325 ;;
3326 esac])
3327 if test $gcc_cv_as_cfi_directive = yes && test x$gcc_cv_objdump != x; then
3328 gcc_GAS_CHECK_FEATURE([working cfi advance], gcc_cv_as_cfi_advance_working,,
3329 [ .text
3330 .cfi_startproc
3331 .cfi_adjust_cfa_offset 64
3332 .skip 75040, 0
3333 .cfi_adjust_cfa_offset 128
3334 .cfi_endproc],
3335 [[
3336 if $gcc_cv_objdump -Wf conftest.o 2>/dev/null \
3337 | grep 'DW_CFA_advance_loc[24]:[ ][ ]*75040[ ]' >/dev/null; then
3338 gcc_cv_as_cfi_advance_working=yes
3339 fi
3340 ]])
3341 else
3342 # no objdump, err on the side of caution
3343 gcc_cv_as_cfi_advance_working=no
3344 fi
3345 GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_DIRECTIVE)
3346 AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_DIRECTIVE,
3347 [`if test $gcc_cv_as_cfi_directive = yes \
3348 && test $gcc_cv_as_cfi_advance_working = yes; then echo 1; else echo 0; fi`],
3349 [Define 0/1 if your assembler supports CFI directives.])
3350
3351 GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE)
3352 gcc_GAS_CHECK_FEATURE([cfi personality directive],
3353 gcc_cv_as_cfi_personality_directive,,
3354 [ .text
3355 .cfi_startproc
3356 .cfi_personality 0, symbol
3357 .cfi_endproc])
3358 AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_PERSONALITY_DIRECTIVE,
3359 [`if test $gcc_cv_as_cfi_personality_directive = yes; then echo 1; else echo 0; fi`],
3360 [Define 0/1 if your assembler supports .cfi_personality.])
3361
3362 gcc_GAS_CHECK_FEATURE([cfi sections directive],
3363 gcc_cv_as_cfi_sections_directive,,
3364 [ .text
3365 .cfi_sections .debug_frame, .eh_frame
3366 .cfi_startproc
3367 .cfi_endproc],
3368 [case $target_os in
3369 win32 | pe | cygwin* | mingw32*)
3370 # Need to check that we generated the correct relocation for the
3371 # .debug_frame section. This was fixed for binutils 2.21.
3372 gcc_cv_as_cfi_sections_directive=no
3373 if test "x$gcc_cv_objdump" != x; then
3374 if $gcc_cv_objdump -j .debug_frame -r conftest.o 2>/dev/null | \
3375 grep -i secrel > /dev/null; then
3376 gcc_cv_as_cfi_sections_directive=yes
3377 fi
3378 fi
3379 ;;
3380 *)
3381 gcc_cv_as_cfi_sections_directive=yes
3382 ;;
3383 esac])
3384 GCC_TARGET_TEMPLATE(HAVE_GAS_CFI_SECTIONS_DIRECTIVE)
3385 AC_DEFINE_UNQUOTED(HAVE_GAS_CFI_SECTIONS_DIRECTIVE,
3386 [`if test $gcc_cv_as_cfi_sections_directive = yes; then echo 1; else echo 0; fi`],
3387 [Define 0/1 if your assembler supports .cfi_sections.])
3388
3389 # GAS versions up to and including 2.11.0 may mis-optimize
3390 # .eh_frame data.
3391 gcc_GAS_CHECK_FEATURE(eh_frame optimization, gcc_cv_as_eh_frame,,
3392 [ .text
3393 .LFB1:
3394 .4byte 0
3395 .L1:
3396 .4byte 0
3397 .LFE1:
3398 .section .eh_frame,"aw",@progbits
3399 __FRAME_BEGIN__:
3400 .4byte .LECIE1-.LSCIE1
3401 .LSCIE1:
3402 .4byte 0x0
3403 .byte 0x1
3404 .ascii "z\0"
3405 .byte 0x1
3406 .byte 0x78
3407 .byte 0x1a
3408 .byte 0x0
3409 .byte 0x4
3410 .4byte 1
3411 .p2align 1
3412 .LECIE1:
3413 .LSFDE1:
3414 .4byte .LEFDE1-.LASFDE1
3415 .LASFDE1:
3416 .4byte .LASFDE1-__FRAME_BEGIN__
3417 .4byte .LFB1
3418 .4byte .LFE1-.LFB1
3419 .byte 0x4
3420 .4byte .LFE1-.LFB1
3421 .byte 0x4
3422 .4byte .L1-.LFB1
3423 .LEFDE1:],
3424 [ dnl # For autoconf 2.5x, must protect trailing spaces with @&t@.
3425 cat > conftest.lit <<EOF
3426 0000 10000000 00000000 017a0001 781a0004 .........z..x...
3427 0010 01000000 12000000 18000000 00000000 ................
3428 0020 08000000 04080000 0044 .........D @&t@
3429 EOF
3430 cat > conftest.big <<EOF
3431 0000 00000010 00000000 017a0001 781a0004 .........z..x...
3432 0010 00000001 00000012 00000018 00000000 ................
3433 0020 00000008 04000000 0844 .........D @&t@
3434 EOF
3435 # If the assembler didn't choke, and we can objdump,
3436 # and we got the correct data, then succeed.
3437 # The text in the here-document typically retains its unix-style line
3438 # endings, while the output of objdump will use host line endings.
3439 # Therefore, use diff -b for the comparisons.
3440 if test x$gcc_cv_objdump != x \
3441 && $gcc_cv_objdump -s -j .eh_frame conftest.o 2>/dev/null \
3442 | tail -3 > conftest.got \
3443 && { diff -b conftest.lit conftest.got > /dev/null 2>&1 \
3444 || diff -b conftest.big conftest.got > /dev/null 2>&1; }
3445 then
3446 gcc_cv_as_eh_frame=yes
3447 elif AC_TRY_COMMAND($gcc_cv_as -o conftest.o --traditional-format /dev/null); then
3448 gcc_cv_as_eh_frame=buggy
3449 else
3450 # Uh oh, what do we do now?
3451 gcc_cv_as_eh_frame=no
3452 fi])
3453
3454 if test $gcc_cv_as_eh_frame = buggy; then
3455 AC_DEFINE(USE_AS_TRADITIONAL_FORMAT, 1,
3456 [Define if your assembler mis-optimizes .eh_frame data.])
3457 fi
3458
3459 # Test if the assembler supports the section flag 'e' or #exclude for
3460 # specifying an excluded section.
3461 gcc_GAS_CHECK_FEATURE([section exclude flag], gcc_cv_as_section_exclude_e,
3462 [--fatal-warnings],
3463 [.section foo1,"e"
3464 .byte 0,0,0,0])
3465 if test $gcc_cv_as_section_exclude_e = no; then
3466 case "${target}" in
3467 # Solaris as uses #exclude instead.
3468 *-*-solaris2*)
3469 case "${target}" in
3470 sparc*-*-solaris2*)
3471 conftest_s='.section "foo1", #exclude'
3472 ;;
3473 i?86-*-solaris2* | x86_64-*-solaris2*)
3474 conftest_s='.section foo1, #exclude'
3475 ;;
3476 esac
3477 ;;
3478 esac
3479 gcc_GAS_CHECK_FEATURE([section exclude flag], gcc_cv_as_section_exclude_hash,,
3480 [$conftest_s
3481 .byte 0,0,0,0])
3482 fi
3483 AC_DEFINE_UNQUOTED(HAVE_GAS_SECTION_EXCLUDE,
3484 [`if test $gcc_cv_as_section_exclude_e = yes || test $gcc_cv_as_section_exclude_hash = yes; then echo 1; else echo 0; fi`],
3485 [Define if your assembler supports specifying the exclude section flag.])
3486
3487 # Test if the assembler supports the section flag 'R' for specifying
3488 # section with SHF_GNU_RETAIN.
3489 case "${target}" in
3490 # Solaris may use GNU assembler with Solairs ld. Even if GNU
3491 # assembler supports the section flag 'R', it doesn't mean that
3492 # Solairs ld supports it.
3493 *-*-solaris2*)
3494 gcc_cv_as_shf_gnu_retain=no
3495 ;;
3496 *)
3497 gcc_GAS_CHECK_FEATURE([section 'R' flag], gcc_cv_as_shf_gnu_retain,
3498 [--fatal-warnings],
3499 [.section .foo,"awR",%progbits
3500 .byte 0])
3501 ;;
3502 esac
3503 AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_GNU_RETAIN,
3504 [`if test $gcc_cv_as_shf_gnu_retain = yes; then echo 1; else echo 0; fi`],
3505 [Define 0/1 if your assembler supports marking sections with SHF_GNU_RETAIN flag.])
3506
3507 # Test if the assembler supports the section flag 'o' for specifying
3508 # section with link-order.
3509 case "${target}" in
3510 # Solaris may use GNU assembler with Solairs ld. Even if GNU
3511 # assembler supports the section flag 'o', it doesn't mean that
3512 # Solairs ld supports it.
3513 *-*-solaris2*)
3514 gcc_cv_as_section_link_order=no
3515 ;;
3516 *)
3517 gcc_GAS_CHECK_FEATURE([section 'o' flag], gcc_cv_as_section_link_order,
3518 [--fatal-warnings],
3519 [.section .foo,"a"
3520 .byte 0
3521 .section __patchable_function_entries,"awo",%progbits,.foo
3522 .byte 0])
3523 ;;
3524 esac
3525 AC_DEFINE_UNQUOTED(HAVE_GAS_SECTION_LINK_ORDER,
3526 [`if test $gcc_cv_as_section_link_order = yes; then echo 1; else echo 0; fi`],
3527 [Define 0/1 if your assembler supports 'o' flag in .section directive.])
3528
3529 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
3530 [--fatal-warnings],
3531 [.section .rodata.str, "aMS", @progbits, 1])
3532 if test $gcc_cv_as_shf_merge = no; then
3533 gcc_GAS_CHECK_FEATURE(section merging support, gcc_cv_as_shf_merge,
3534 [--fatal-warnings],
3535 [.section .rodata.str, "aMS", %progbits, 1])
3536 fi
3537 AC_DEFINE_UNQUOTED(HAVE_GAS_SHF_MERGE,
3538 [`if test $gcc_cv_as_shf_merge = yes; then echo 1; else echo 0; fi`],
3539 [Define 0/1 if your assembler supports marking sections with SHF_MERGE flag.])
3540
3541 gcc_cv_ld_aligned_shf_merge=yes
3542 case "$target" in
3543 # SHF_MERGE support is broken in Solaris ld up to Solaris 11.3/SPARC for
3544 # alignment > 1.
3545 sparc*-*-solaris2.11*)
3546 if test x"$gnu_ld" = xno \
3547 && test "$ld_vers_major" -lt 2 && test "$ld_vers_minor" -lt 3159; then
3548 gcc_cv_ld_aligned_shf_merge=no
3549 fi
3550 ;;
3551 esac
3552 AC_DEFINE_UNQUOTED(HAVE_LD_ALIGNED_SHF_MERGE,
3553 [`if test $gcc_cv_ld_aligned_shf_merge = yes; then echo 1; else echo 0; fi`],
3554 [Define 0/1 if your linker supports the SHF_MERGE flag with section alignment > 1.])
3555
3556 gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as)],
3557 gcc_cv_as_comdat_group,
3558 [--fatal-warnings],
3559 [.section .text,"axG",@progbits,.foo,comdat])
3560 if test $gcc_cv_as_comdat_group = yes; then
3561 gcc_cv_as_comdat_group_percent=no
3562 gcc_cv_as_comdat_group_group=no
3563 else
3564 gcc_GAS_CHECK_FEATURE([COMDAT group support (GNU as, %type)],
3565 gcc_cv_as_comdat_group_percent,
3566 [--fatal-warnings],
3567 [.section .text,"axG",%progbits,.foo,comdat])
3568 if test $gcc_cv_as_comdat_group_percent = yes; then
3569 gcc_cv_as_comdat_group_group=no
3570 else
3571 case "${target}" in
3572 # Sun as uses a completely different syntax.
3573 *-*-solaris2*)
3574 case "${target}" in
3575 sparc*-*-solaris2*)
3576 conftest_s='
3577 .group foo,".text%foo",#comdat
3578 .section ".text%foo", #alloc,#execinstr,#progbits
3579 .globl foo
3580 foo:
3581 '
3582 ;;
3583 i?86-*-solaris2* | x86_64-*-solaris2*)
3584 conftest_s='
3585 .group foo,.text%foo,#comdat
3586 .section .text%foo, "ax", @progbits
3587 .globl foo
3588 foo:
3589 '
3590 ;;
3591 esac
3592 gcc_GAS_CHECK_FEATURE([COMDAT group support (Sun as, .group)],
3593 gcc_cv_as_comdat_group_group,
3594 , [$conftest_s])
3595 ;;
3596 esac
3597 if test -z "${gcc_cv_as_comdat_group_group+set}"; then
3598 gcc_cv_as_comdat_group_group=no
3599 fi
3600 fi
3601 fi
3602 if test x"$ld_is_gold" = xyes; then
3603 comdat_group=yes
3604 elif test x"$ld_is_mold" = xyes; then
3605 comdat_group=yes
3606 elif test $in_tree_ld = yes ; then
3607 comdat_group=no
3608 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 \
3609 && test $in_tree_ld_is_elf = yes; then
3610 comdat_group=yes
3611 fi
3612 elif echo "$ld_ver" | grep GNU > /dev/null; then
3613 comdat_group=yes
3614 if test 0"$ld_date" -lt 20050308; then
3615 if test -n "$ld_date"; then
3616 # If there was date string, but was earlier than 2005-03-08, fail
3617 comdat_group=no
3618 elif test "$ld_vers_major" -lt 2; then
3619 comdat_group=no
3620 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
3621 comdat_group=no
3622 fi
3623 fi
3624 else
3625 changequote(,)dnl
3626 case "${target}" in
3627 *-*-solaris2.1[1-9]*)
3628 comdat_group=no
3629 # Sun ld has COMDAT group support since Solaris 9, but it doesn't
3630 # interoperate with GNU as until Solaris 11 build 130, i.e. ld
3631 # version 1.688.
3632 #
3633 # If using Sun as for COMDAT group as emitted by GCC, one needs at
3634 # least ld version 1.2267.
3635 if test "$ld_vers_major" -gt 1; then
3636 comdat_group=yes
3637 elif test "x$gas_flag" = xyes && test "$ld_vers_minor" -ge 1688; then
3638 comdat_group=yes
3639 elif test "$ld_vers_minor" -ge 2267; then
3640 comdat_group=yes
3641 fi
3642 ;;
3643 *)
3644 # Assume linkers other than GNU ld don't support COMDAT group.
3645 comdat_group=no
3646 ;;
3647 esac
3648 changequote([,])dnl
3649 fi
3650 # Allow overriding the automatic COMDAT group tests above.
3651 AC_ARG_ENABLE(comdat,
3652 [AS_HELP_STRING([--enable-comdat], [enable COMDAT group support])],
3653 [comdat_group="$enable_comdat"])
3654 if test $comdat_group = no; then
3655 gcc_cv_as_comdat_group=no
3656 gcc_cv_as_comdat_group_percent=no
3657 gcc_cv_as_comdat_group_group=no
3658 fi
3659 AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
3660 [`if test $gcc_cv_as_comdat_group = yes \
3661 || test $gcc_cv_as_comdat_group_percent = yes \
3662 || test $gcc_cv_as_comdat_group_group = yes; then echo 1; else echo 0; fi`],
3663 [Define 0/1 if your assembler and linker support COMDAT groups.])
3664
3665 # Restrict this test to Solaris/x86: other targets define this statically.
3666 case "${target}" in
3667 i?86-*-solaris2* | x86_64-*-solaris2*)
3668 AC_MSG_CHECKING(support for hidden thunks in linkonce sections)
3669 if test $in_tree_ld = yes || echo "$ld_ver" | grep GNU > /dev/null; then
3670 hidden_linkonce=yes
3671 else
3672 case "${target}" in
3673 # Full support for hidden thunks in linkonce sections only appeared in
3674 # Solaris 11/OpenSolaris.
3675 *-*-solaris2.1[[1-9]]*)
3676 hidden_linkonce=yes
3677 ;;
3678 *)
3679 hidden_linkonce=no
3680 ;;
3681 esac
3682 fi
3683 AC_MSG_RESULT($hidden_linkonce)
3684 AC_DEFINE_UNQUOTED(USE_HIDDEN_LINKONCE,
3685 [`if test $hidden_linkonce = yes; then echo 1; else echo 0; fi`],
3686 [Define 0/1 if your linker supports hidden thunks in linkonce sections.])
3687 ;;
3688 esac
3689
3690 gcc_GAS_CHECK_FEATURE([line table is_stmt support],
3691 gcc_cv_as_is_stmt,,
3692 [ .text
3693 .file 1 "conf.c"
3694 .loc 1 1 0 is_stmt 1],,
3695 [AC_DEFINE(HAVE_GAS_LOC_STMT, 1,
3696 [Define if your assembler supports the .loc is_stmt sub-directive.])])
3697
3698 gcc_GAS_CHECK_FEATURE([line table discriminator support],
3699 gcc_cv_as_discriminator,,
3700 [ .text
3701 .file 1 "conf.c"
3702 .loc 1 1 0 discriminator 1],,
3703 [AC_DEFINE(HAVE_GAS_DISCRIMINATOR, 1,
3704 [Define if your assembler supports the .loc discriminator sub-directive.])])
3705
3706 # Catch the newlib flag of the same name so we can gate GCC features on it.
3707 AC_ARG_ENABLE(newlib-nano-formatted-io,
3708 [AS_HELP_STRING([--enable-newlib-nano-formatted-io], [Use nano version
3709 formatted IO])],
3710 [case "${enableval}" in
3711 yes|no)
3712 ;;
3713 *)
3714 AC_MSG_ERROR([unknown newlib-nano-formatted-io setting $enableval])
3715 ;;
3716 esac], [])
3717
3718 # Thread-local storage - the check is heavily parameterized.
3719 conftest_s=
3720 tls_as_opt=
3721 case "$target" in
3722 changequote(,)dnl
3723 alpha*-*-*)
3724 conftest_s='
3725 .section ".tdata","awT",@progbits
3726 foo: .long 25
3727 .text
3728 ldq $27,__tls_get_addr($29) !literal!1
3729 lda $16,foo($29) !tlsgd!1
3730 jsr $26,($27),__tls_get_addr !lituse_tlsgd!1
3731 ldq $27,__tls_get_addr($29) !literal!2
3732 lda $16,foo($29) !tlsldm!2
3733 jsr $26,($27),__tls_get_addr !lituse_tlsldm!2
3734 ldq $1,foo($29) !gotdtprel
3735 ldah $2,foo($29) !dtprelhi
3736 lda $3,foo($2) !dtprello
3737 lda $4,foo($29) !dtprel
3738 ldq $1,foo($29) !gottprel
3739 ldah $2,foo($29) !tprelhi
3740 lda $3,foo($2) !tprello
3741 lda $4,foo($29) !tprel'
3742 tls_as_opt=--fatal-warnings
3743 ;;
3744 arc*-*-*)
3745 conftest_s='
3746 add_s r0,r0, @foo@tpoff'
3747 ;;
3748 cris-*-*|crisv32-*-*)
3749 conftest_s='
3750 .section ".tdata","awT",@progbits
3751 x: .long 25
3752 .text
3753 move.d x:IE,$r10
3754 nop'
3755 tls_as_opt=--fatal-warnings
3756 ;;
3757 frv*-*-*)
3758 conftest_s='
3759 .section ".tdata","awT",@progbits
3760 x: .long 25
3761 .text
3762 call #gettlsoff(x)'
3763 ;;
3764 hppa*-*-linux*)
3765 conftest_s='
3766 t1: .reg %r20
3767 t2: .reg %r21
3768 gp: .reg %r19
3769 .section ".tdata","awT",@progbits
3770 foo: .long 25
3771 .text
3772 .align 4
3773 addil LT%foo-$tls_gdidx$,gp
3774 ldo RT%foo-$tls_gdidx$(%r1),%arg0
3775 b __tls_get_addr
3776 nop
3777 addil LT%foo-$tls_ldidx$,gp
3778 b __tls_get_addr
3779 ldo RT%foo-$tls_ldidx$(%r1),%arg0
3780 addil LR%foo-$tls_dtpoff$,%ret0
3781 ldo RR%foo-$tls_dtpoff$(%r1),%t1
3782 mfctl %cr27,%t1
3783 addil LT%foo-$tls_ieoff$,gp
3784 ldw RT%foo-$tls_ieoff$(%r1),%t2
3785 add %t1,%t2,%t3
3786 mfctl %cr27,%t1
3787 addil LR%foo-$tls_leoff$,%t1
3788 ldo RR%foo-$tls_leoff$(%r1),%t2'
3789 tls_as_opt=--fatal-warnings
3790 ;;
3791 arm*-*-*)
3792 conftest_s='
3793 .section ".tdata","awT",%progbits
3794 foo: .long 25
3795 .text
3796 .word foo(gottpoff)
3797 .word foo(tpoff)
3798 .word foo(tlsgd)
3799 .word foo(tlsldm)
3800 .word foo(tlsldo)'
3801 ;;
3802 i[34567]86-*-* | x86_64-*-*)
3803 case "$target" in
3804 i[34567]86-*-solaris2.* | x86_64-*-solaris2.*)
3805 on_solaris=yes
3806 ;;
3807 *)
3808 on_solaris=no
3809 ;;
3810 esac
3811 if test x$on_solaris = xyes && test x$gas_flag = xno; then
3812 conftest_s='
3813 .section .tdata,"awt",@progbits'
3814 tls_section_flag=t
3815 changequote([,])dnl
3816 AC_DEFINE(TLS_SECTION_ASM_FLAG, 't',
3817 [Define to the flag used to mark TLS sections if the default (`T') doesn't work.])
3818 changequote(,)dnl
3819 else
3820 conftest_s='
3821 .section ".tdata","awT",@progbits'
3822 tls_section_flag=T
3823 tls_as_opt="--fatal-warnings"
3824 fi
3825 case "$target" in
3826 i[34567]86-*-*)
3827 if test x$on_solaris = xyes; then
3828 case $gas_flag in
3829 yes) tls_as_opt="$tls_as_opt --32" ;;
3830 esac
3831 fi
3832 conftest_s="$conftest_s
3833 foo: .long 25
3834 .text
3835 movl %gs:0, %eax
3836 leal foo@tlsgd(,%ebx,1), %eax
3837 leal foo@tlsldm(%ebx), %eax
3838 leal foo@dtpoff(%eax), %edx
3839 movl foo@gottpoff(%ebx), %eax
3840 subl foo@gottpoff(%ebx), %eax
3841 addl foo@gotntpoff(%ebx), %eax
3842 movl foo@indntpoff, %eax
3843 movl \$foo@tpoff, %eax
3844 subl \$foo@tpoff, %eax
3845 leal foo@ntpoff(%ecx), %eax"
3846 ;;
3847 x86_64-*-*)
3848 if test x$on_solaris = xyes; then
3849 case $gas_flag in
3850 yes) tls_as_opt="$tls_as_opt --64" ;;
3851 no) tls_as_opt="$tls_as_opt -xarch=amd64" ;;
3852 esac
3853 fi
3854 conftest_s="$conftest_s
3855 foo: .long 25
3856 .text
3857 movq %fs:0, %rax
3858 leaq foo@tlsgd(%rip), %rdi
3859 leaq foo@tlsld(%rip), %rdi
3860 leaq foo@dtpoff(%rax), %rdx
3861 movq foo@gottpoff(%rip), %rax
3862 movq \$foo@tpoff, %rax"
3863 ;;
3864 esac
3865 ;;
3866 ia64-*-*)
3867 conftest_s='
3868 .section ".tdata","awT",@progbits
3869 foo: data8 25
3870 .text
3871 addl r16 = @ltoff(@dtpmod(foo#)), gp
3872 addl r17 = @ltoff(@dtprel(foo#)), gp
3873 addl r18 = @ltoff(@tprel(foo#)), gp
3874 addl r19 = @dtprel(foo#), gp
3875 adds r21 = @dtprel(foo#), r13
3876 movl r23 = @dtprel(foo#)
3877 addl r20 = @tprel(foo#), gp
3878 adds r22 = @tprel(foo#), r13
3879 movl r24 = @tprel(foo#)'
3880 tls_as_opt=--fatal-warnings
3881 ;;
3882 loongarch*-*-*)
3883 conftest_s='
3884 .section .tdata,"awT",@progbits
3885 x: .word 2
3886 .text
3887 la.tls.gd $a0,x
3888 bl __tls_get_addr'
3889 tls_first_major=0
3890 tls_first_minor=0
3891 tls_as_opt='--fatal-warnings'
3892 ;;
3893 microblaze*-*-*)
3894 conftest_s='
3895 .section .tdata,"awT",@progbits
3896 x:
3897 .word 2
3898 .text
3899 addik r5,r20,x@TLSGD
3900 addik r5,r20,x@TLSLDM'
3901 tls_as_opt='--fatal-warnings'
3902 ;;
3903 mips*-*-*)
3904 conftest_s='
3905 .section .tdata,"awT",@progbits
3906 x:
3907 .word 2
3908 .text
3909 addiu $4, $28, %tlsgd(x)
3910 addiu $4, $28, %tlsldm(x)
3911 lui $4, %dtprel_hi(x)
3912 addiu $4, $4, %dtprel_lo(x)
3913 lw $4, %gottprel(x)($28)
3914 lui $4, %tprel_hi(x)
3915 addiu $4, $4, %tprel_lo(x)'
3916 tls_as_opt='-32 --fatal-warnings'
3917 ;;
3918 m68k-*-*)
3919 conftest_s='
3920 .section .tdata,"awT",@progbits
3921 x:
3922 .word 2
3923 .text
3924 foo:
3925 move.l x@TLSGD(%a5),%a0
3926 move.l x@TLSLDM(%a5),%a0
3927 move.l x@TLSLDO(%a5),%a0
3928 move.l x@TLSIE(%a5),%a0
3929 move.l x@TLSLE(%a5),%a0'
3930 tls_as_opt='--fatal-warnings'
3931 ;;
3932 nios2-*-*)
3933 conftest_s='
3934 .section ".tdata","awT",@progbits'
3935 tls_as_opt="--fatal-warnings"
3936 ;;
3937 aarch64*-*-*)
3938 conftest_s='
3939 .section ".tdata","awT",%progbits
3940 foo: .long 25
3941 .text
3942 adrp x0, :tlsgd:x
3943 add x0, x0, #:tlsgd_lo12:x
3944 bl __tls_get_addr
3945 nop'
3946 tls_as_opt='--fatal-warnings'
3947 ;;
3948 or1k*-*-*)
3949 conftest_s='
3950 .section ".tdata","awT",@progbits
3951 foo: .long 25
3952 .text
3953 l.movhi r3, tpoffha(foo)
3954 l.add r3, r3, r10
3955 l.lwz r4, tpofflo(foo)(r3)'
3956 tls_as_opt=--fatal-warnings
3957 ;;
3958 powerpc-ibm-aix*)
3959 conftest_s='
3960 .extern __get_tpointer
3961 .toc
3962 LC..1:
3963 .tc a[TC],a[TL]@le
3964 .csect .text[PR]
3965 .tlstest:
3966 lwz 9,LC..1(2)
3967 bla __get_tpointer
3968 lwzx 3,9,3
3969 .globl a
3970 .csect a[TL],4
3971 a:
3972 .space 4'
3973 ;;
3974 powerpc64*-*-*)
3975 conftest_s='
3976 .section ".tdata","awT",@progbits
3977 .align 3
3978 ld0: .space 8
3979 ld1: .space 8
3980 x1: .space 8
3981 x2: .space 8
3982 x3: .space 8
3983 .text
3984 addi 3,2,ld0@got@tlsgd
3985 bl .__tls_get_addr
3986 nop
3987 addi 3,2,ld1@toc
3988 bl .__tls_get_addr
3989 nop
3990 addi 3,2,x1@got@tlsld
3991 bl .__tls_get_addr
3992 nop
3993 addi 9,3,x1@dtprel
3994 bl .__tls_get_addr
3995 nop
3996 addis 9,3,x2@dtprel@ha
3997 addi 9,9,x2@dtprel@l
3998 bl .__tls_get_addr
3999 nop
4000 ld 9,x3@got@dtprel(2)
4001 add 9,9,3
4002 bl .__tls_get_addr
4003 nop'
4004 tls_as_opt="-a64 --fatal-warnings"
4005 ;;
4006 powerpc*-*-*)
4007 conftest_s='
4008 .section ".tdata","awT",@progbits
4009 .align 2
4010 ld0: .space 4
4011 ld1: .space 4
4012 x1: .space 4
4013 x2: .space 4
4014 x3: .space 4
4015 .text
4016 addi 3,31,ld0@got@tlsgd
4017 bl __tls_get_addr
4018 addi 3,31,x1@got@tlsld
4019 bl __tls_get_addr
4020 addi 9,3,x1@dtprel
4021 addis 9,3,x2@dtprel@ha
4022 addi 9,9,x2@dtprel@l
4023 lwz 9,x3@got@tprel(31)
4024 add 9,9,x@tls
4025 addi 9,2,x1@tprel
4026 addis 9,2,x2@tprel@ha
4027 addi 9,9,x2@tprel@l'
4028 tls_as_opt="-a32 --fatal-warnings"
4029 ;;
4030 riscv*-*-*)
4031 conftest_s='
4032 .section .tdata,"awT",@progbits
4033 x: .word 2
4034 .text
4035 la.tls.gd a0,x
4036 call __tls_get_addr'
4037 tls_as_opt='--fatal-warnings'
4038 ;;
4039 s390-*-*)
4040 conftest_s='
4041 .section ".tdata","awT",@progbits
4042 foo: .long 25
4043 .text
4044 .long foo@TLSGD
4045 .long foo@TLSLDM
4046 .long foo@DTPOFF
4047 .long foo@NTPOFF
4048 .long foo@GOTNTPOFF
4049 .long foo@INDNTPOFF
4050 l %r1,foo@GOTNTPOFF(%r12)
4051 l %r1,0(%r1):tls_load:foo
4052 bas %r14,0(%r1,%r13):tls_gdcall:foo
4053 bas %r14,0(%r1,%r13):tls_ldcall:foo'
4054 tls_as_opt="-m31 --fatal-warnings"
4055 ;;
4056 s390x-*-*)
4057 conftest_s='
4058 .section ".tdata","awT",@progbits
4059 foo: .long 25
4060 .text
4061 .quad foo@TLSGD
4062 .quad foo@TLSLDM
4063 .quad foo@DTPOFF
4064 .quad foo@NTPOFF
4065 .quad foo@GOTNTPOFF
4066 lg %r1,foo@GOTNTPOFF(%r12)
4067 larl %r1,foo@INDNTPOFF
4068 brasl %r14,__tls_get_offset@PLT:tls_gdcall:foo
4069 brasl %r14,__tls_get_offset@PLT:tls_ldcall:foo'
4070 tls_as_opt="-m64 -Aesame --fatal-warnings"
4071 ;;
4072 sh-*-* | sh[123456789lbe]*-*-*)
4073 conftest_s='
4074 .section ".tdata","awT",@progbits
4075 foo: .long 25
4076 .text
4077 .long foo@TLSGD
4078 .long foo@TLSLDM
4079 .long foo@DTPOFF
4080 .long foo@GOTTPOFF
4081 .long foo@TPOFF'
4082 tls_as_opt=--fatal-warnings
4083 ;;
4084 sparc*-*-*)
4085 case "$target" in
4086 sparc*-sun-solaris2.*)
4087 on_solaris=yes
4088 ;;
4089 *)
4090 on_solaris=no
4091 ;;
4092 esac
4093 if test x$on_solaris = xyes && test x$gas_flag = xno; then
4094 conftest_s='
4095 .section ".tdata",#alloc,#write,#tls'
4096 else
4097 conftest_s='
4098 .section ".tdata","awT",@progbits'
4099 tls_as_opt="-32 --fatal-warnings"
4100 fi
4101 conftest_s="$conftest_s
4102 foo: .long 25
4103 .text
4104 sethi %tgd_hi22(foo), %o0
4105 add %o0, %tgd_lo10(foo), %o1
4106 add %l7, %o1, %o0, %tgd_add(foo)
4107 call __tls_get_addr, %tgd_call(foo)
4108 sethi %tldm_hi22(foo), %l1
4109 add %l1, %tldm_lo10(foo), %l2
4110 add %l7, %l2, %o0, %tldm_add(foo)
4111 call __tls_get_addr, %tldm_call(foo)
4112 sethi %tldo_hix22(foo), %l3
4113 xor %l3, %tldo_lox10(foo), %l4
4114 add %o0, %l4, %l5, %tldo_add(foo)
4115 sethi %tie_hi22(foo), %o3
4116 add %o3, %tie_lo10(foo), %o3
4117 ld [%l7 + %o3], %o2, %tie_ld(foo)
4118 add %g7, %o2, %o4, %tie_add(foo)
4119 sethi %tle_hix22(foo), %l1
4120 xor %l1, %tle_lox10(foo), %o5
4121 ld [%g7 + %o5], %o1"
4122 ;;
4123 xtensa*-*-*)
4124 conftest_s='
4125 .section ".tdata","awT",@progbits
4126 foo: .long 25
4127 .text
4128 movi a8, foo@TLSFUNC
4129 movi a10, foo@TLSARG
4130 callx8.tls a8, foo@TLSCALL'
4131 ;;
4132 changequote([,])dnl
4133 esac
4134 set_have_as_tls=no
4135 if test "x$enable_tls" = xno ; then
4136 : # TLS explicitly disabled.
4137 elif test "x$enable_tls" = xyes ; then
4138 set_have_as_tls=yes # TLS explicitly enabled.
4139 elif test -z "$conftest_s"; then
4140 : # If we don't have a check, assume no support.
4141 else
4142 gcc_GAS_CHECK_FEATURE(thread-local storage support, gcc_cv_as_tls,
4143 [$tls_as_opt], [$conftest_s],,
4144 [set_have_as_tls=yes])
4145 fi
4146 if test $set_have_as_tls = yes ; then
4147 AC_DEFINE(HAVE_AS_TLS, 1,
4148 [Define if your assembler and linker support thread-local storage.])
4149 fi
4150
4151 # Target-specific assembler checks.
4152
4153 AC_MSG_CHECKING(linker -Bstatic/-Bdynamic option)
4154 gcc_cv_ld_static_dynamic=no
4155 gcc_cv_ld_static_option='-Bstatic'
4156 gcc_cv_ld_dynamic_option='-Bdynamic'
4157 if test $in_tree_ld = yes ; then
4158 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; then
4159 gcc_cv_ld_static_dynamic=yes
4160 fi
4161 elif test x$gcc_cv_ld != x; then
4162 # Check if linker supports -Bstatic/-Bdynamic option
4163 if $gcc_cv_ld --help 2>&1 | grep -- -Bstatic > /dev/null \
4164 && $gcc_cv_ld --help 2>&1 | grep -- -Bdynamic > /dev/null; then
4165 gcc_cv_ld_static_dynamic=yes
4166 else
4167 case "$target" in
4168 # AIX ld uses -b flags
4169 *-*-aix4.[[23]]* | *-*-aix[[5-9]]*)
4170 gcc_cv_ld_static_dynamic=yes
4171 gcc_cv_ld_static_option="-bstatic"
4172 gcc_cv_ld_dynamic_option="-bdynamic"
4173 ;;
4174 # HP-UX ld uses -a flags to select between shared and archive.
4175 *-*-hpux*)
4176 if test x"$gnu_ld" = xno; then
4177 gcc_cv_ld_static_dynamic=yes
4178 gcc_cv_ld_static_option="-aarchive_shared"
4179 gcc_cv_ld_dynamic_option="-adefault"
4180 fi
4181 ;;
4182 # Solaris 2 ld always supports -Bstatic/-Bdynamic.
4183 *-*-solaris2*)
4184 gcc_cv_ld_static_dynamic=yes
4185 ;;
4186 esac
4187 fi
4188 fi
4189 if test x"$gcc_cv_ld_static_dynamic" = xyes; then
4190 AC_DEFINE(HAVE_LD_STATIC_DYNAMIC, 1,
4191 [Define if your linker supports -Bstatic/-Bdynamic or equivalent options.])
4192 AC_DEFINE_UNQUOTED(LD_STATIC_OPTION, "$gcc_cv_ld_static_option",
4193 [Define to the linker option to disable use of shared objects.])
4194 AC_DEFINE_UNQUOTED(LD_DYNAMIC_OPTION, "$gcc_cv_ld_dynamic_option",
4195 [Define to the linker option to enable use of shared objects.])
4196 fi
4197 AC_MSG_RESULT($gcc_cv_ld_static_dynamic)
4198
4199 AC_MSG_CHECKING(linker --version-script option)
4200 gcc_cv_ld_version_script=no
4201 ld_version_script_option=''
4202 if test $in_tree_ld = yes || test x"$gnu_ld" = xyes; then
4203 gcc_cv_ld_version_script=yes
4204 ld_version_script_option='--version-script'
4205 elif test x$gcc_cv_ld != x; then
4206 case "$target" in
4207 # Solaris 2 ld always supports -M. It also supports a subset of
4208 # --version-script since Solaris 11.4, but requires
4209 # -z gnu-version-script-compat to activate.
4210 *-*-solaris2*)
4211 gcc_cv_ld_version_script=yes
4212 ld_version_script_option='-M'
4213 ;;
4214 esac
4215 fi
4216 # Don't AC_DEFINE result, only used in jit/Make-lang.in so far.
4217 AC_MSG_RESULT($gcc_cv_ld_version_script)
4218 AC_SUBST(ld_version_script_option)
4219
4220 AC_MSG_CHECKING(linker soname option)
4221 gcc_cv_ld_soname=no
4222 if test $in_tree_ld = yes || test x"$gnu_ld" = xyes; then
4223 gcc_cv_ld_soname=yes
4224 ld_soname_option='-soname'
4225 elif test x$gcc_cv_ld != x; then
4226 case "$target" in
4227 *-*-darwin*)
4228 gcc_cv_ld_soname=yes
4229 ld_soname_option='-install_name'
4230 ;;
4231 # Solaris 2 ld always supports -h. It also supports --soname for GNU
4232 # ld compatiblity since some Solaris 10 update.
4233 *-*-solaris2*)
4234 gcc_cv_ld_soname=yes
4235 ld_soname_option='-h'
4236 ;;
4237 esac
4238 fi
4239 # Don't AC_DEFINE result, only used in jit/Make-lang.in so far.
4240 AC_MSG_RESULT($gcc_cv_ld_soname)
4241 AC_SUBST(ld_soname_option)
4242
4243 if test x"$demangler_in_ld" = xyes; then
4244 AC_MSG_CHECKING(linker --demangle support)
4245 gcc_cv_ld_demangle=no
4246 if test $in_tree_ld = yes; then
4247 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 \
4248 gcc_cv_ld_demangle=yes
4249 fi
4250 elif test x$gcc_cv_ld != x -a x"$gnu_ld" = xyes; then
4251 # Check if the GNU linker supports --demangle option
4252 if $gcc_cv_ld --help 2>&1 | grep no-demangle > /dev/null; then
4253 gcc_cv_ld_demangle=yes
4254 fi
4255 fi
4256 if test x"$gcc_cv_ld_demangle" = xyes; then
4257 AC_DEFINE(HAVE_LD_DEMANGLE, 1,
4258 [Define if your linker supports --demangle option.])
4259 fi
4260 AC_MSG_RESULT($gcc_cv_ld_demangle)
4261 fi
4262
4263 AC_MSG_CHECKING(linker plugin support)
4264 gcc_cv_lto_plugin=0
4265 if test -f liblto_plugin.la; then
4266 save_ld_ver="$ld_ver"
4267 save_ld_vers_major="$ld_vers_major"
4268 save_ld_vers_minor="$ld_vers_minor"
4269 save_ld_is_gold="$ld_is_gold"
4270
4271 ld_is_gold=no
4272
4273 if test $in_tree_ld = yes -a x"$ORIGINAL_PLUGIN_LD_FOR_TARGET" = x"$gcc_cv_ld"; then
4274 ld_ver="GNU ld"
4275 # FIXME: ld_is_gold?
4276 ld_vers_major="$gcc_cv_gld_major_version"
4277 ld_vers_minor="$gcc_cv_gld_minor_version"
4278 else
4279 # Determine plugin linker version.
4280 # FIXME: Partial duplicate from above, generalize.
4281 changequote(,)dnl
4282 ld_ver=`$ORIGINAL_PLUGIN_LD_FOR_TARGET --version 2>/dev/null | sed 1q`
4283 if echo "$ld_ver" | grep GNU > /dev/null; then
4284 if echo "$ld_ver" | grep "GNU gold" > /dev/null; then
4285 ld_is_gold=yes
4286 ld_vers=`echo $ld_ver | sed -n \
4287 -e 's,^[^)]*[ ]\([0-9][0-9]*\.[0-9][0-9]*[^)]*\)) .*$,\1,p'`
4288 else
4289 ld_vers=`echo $ld_ver | sed -n \
4290 -e 's,^.*[ ]\([0-9][0-9]*\.[0-9][0-9]*.*\)$,\1,p'`
4291 fi
4292 ld_vers_major=`expr "$ld_vers" : '\([0-9]*\)'`
4293 ld_vers_minor=`expr "$ld_vers" : '[0-9]*\.\([0-9]*\)'`
4294 fi
4295 changequote([,])dnl
4296 fi
4297
4298 # Determine plugin support.
4299 if echo "$ld_ver" | grep GNU > /dev/null; then
4300 # Require GNU ld or gold 2.21+ for plugin support by default.
4301 if test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -ge 21; then
4302 gcc_cv_lto_plugin=2
4303 elif test "$ld_is_mold" = yes; then
4304 gcc_cv_lto_plugin=2
4305 # Allow -fuse-linker-plugin to enable plugin support in GNU gold 2.20.
4306 elif test "$ld_is_gold" = yes -a "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -eq 20; then
4307 gcc_cv_lto_plugin=1
4308 fi
4309 fi
4310
4311 ld_ver="$save_ld_ver"
4312 ld_vers_major="$save_ld_vers_major"
4313 ld_vers_minor="$save_ld_vers_minor"
4314 ld_is_gold="$save_ld_is_gold"
4315 fi
4316 AC_DEFINE_UNQUOTED(HAVE_LTO_PLUGIN, $gcc_cv_lto_plugin,
4317 [Define to the level of your linker's plugin support.])
4318 AC_MSG_RESULT($gcc_cv_lto_plugin)
4319
4320 # Target OS-specific assembler checks.
4321
4322 case "$target_os" in
4323 darwin*)
4324 gcc_GAS_CHECK_FEATURE([-mmacosx-version-min option],
4325 gcc_cv_as_mmacosx_version_min,
4326 [-mmacosx-version-min=10.1], [.text],,
4327 [AC_DEFINE(HAVE_AS_MMACOSX_VERSION_MIN_OPTION, 1,
4328 [Define if your Mac OS X assembler supports the -mmacos-version-min option.])])
4329 ;;
4330 esac
4331
4332 # Target CPU-specific assembler checks.
4333
4334 case "$target" in
4335 aarch64*-*-*)
4336 gcc_GAS_CHECK_FEATURE([-mabi option], gcc_cv_as_aarch64_mabi,
4337 [-mabi=lp64], [.text],,,)
4338 if test x$gcc_cv_as_aarch64_mabi = xyes; then
4339 AC_DEFINE(HAVE_AS_MABI_OPTION, 1,
4340 [Define if your assembler supports the -mabi option.])
4341 else
4342 if test x$with_abi = xilp32; then
4343 AC_MSG_ERROR([Assembler does not support -mabi=ilp32.\
4344 Upgrade the Assembler.])
4345 fi
4346 if test x"$with_multilib_list" = xdefault; then
4347 TM_MULTILIB_CONFIG=lp64
4348 else
4349 aarch64_multilibs=`echo $with_multilib_list | sed -e 's/,/ /g'`
4350 for aarch64_multilib in ${aarch64_multilibs}; do
4351 case ${aarch64_multilib} in
4352 ilp32)
4353 AC_MSG_ERROR([Assembler does not support -mabi=ilp32.\
4354 Upgrade the Assembler.])
4355 ;;
4356 *)
4357 ;;
4358 esac
4359 done
4360 fi
4361 fi
4362 # Check if we have binutils support for relocations types needed by -fpic
4363 gcc_GAS_CHECK_FEATURE([-fpic relocs], gcc_cv_as_aarch64_picreloc,,
4364 [
4365 .text
4366 ldr x0, [[x2, #:gotpage_lo15:globalsym]]
4367 ],,[AC_DEFINE(HAVE_AS_SMALL_PIC_RELOCS, 1,
4368 [Define if your assembler supports relocs needed by -fpic.])])
4369 # Enable Branch Target Identification Mechanism and Return Address
4370 # Signing by default.
4371 AC_ARG_ENABLE(standard-branch-protection,
4372 [
4373 AS_HELP_STRING([--enable-standard-branch-protection],
4374 [enable Branch Target Identification Mechanism and Return Address Signing by default for AArch64])
4375 AS_HELP_STRING([--disable-standard-branch-protection],
4376 [disable Branch Target Identification Mechanism and Return Address Signing by default for AArch64])
4377 ],
4378 [
4379 case $enableval in
4380 yes)
4381 tm_defines="${tm_defines} TARGET_ENABLE_BTI=1 TARGET_ENABLE_PAC_RET=1"
4382 ;;
4383 no)
4384 ;;
4385 *)
4386 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-standard-branch-protection.\
4387 Valid choices are 'yes' and 'no'.])
4388 ;;
4389 esac
4390 ],
4391 [])
4392 # Enable default workaround for AArch64 Cortex-A53 erratum 835769.
4393 AC_ARG_ENABLE(fix-cortex-a53-835769,
4394 [
4395 AS_HELP_STRING([--enable-fix-cortex-a53-835769],
4396 [enable workaround for AArch64 Cortex-A53 erratum 835769 by default])
4397 AS_HELP_STRING([--disable-fix-cortex-a53-835769],
4398 [disable workaround for AArch64 Cortex-A53 erratum 835769 by default])
4399 ],
4400 [
4401 case $enableval in
4402 yes)
4403 tm_defines="${tm_defines} TARGET_FIX_ERR_A53_835769_DEFAULT=1"
4404 ;;
4405 no)
4406 ;;
4407 *)
4408 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-fix-cortex-a53-835769.\
4409 Valid choices are 'yes' and 'no'.])
4410 ;;
4411
4412 esac
4413 ],
4414 [])
4415 # Enable default workaround for AArch64 Cortex-A53 erratum 843419.
4416 AC_ARG_ENABLE(fix-cortex-a53-843419,
4417 [
4418 AS_HELP_STRING([--enable-fix-cortex-a53-843419],
4419 [enable workaround for AArch64 Cortex-A53 erratum 843419 by default])
4420 AS_HELP_STRING([--disable-fix-cortex-a53-843419],
4421 [disable workaround for AArch64 Cortex-A53 erratum 843419 by default])
4422 ],
4423 [
4424 case $enableval in
4425 yes)
4426 tm_defines="${tm_defines} TARGET_FIX_ERR_A53_843419_DEFAULT=1"
4427 ;;
4428 no)
4429 ;;
4430 *)
4431 AC_MSG_ERROR(['$enableval' is an invalid value for --enable-fix-cortex-a53-843419.\
4432 Valid choices are 'yes' and 'no'.])
4433 ;;
4434
4435 esac
4436 ],
4437 [])
4438 ;;
4439
4440 # All TARGET_ABI_OSF targets.
4441 alpha*-*-linux* | alpha*-*-*bsd*)
4442 gcc_GAS_CHECK_FEATURE([explicit relocation support],
4443 gcc_cv_as_alpha_explicit_relocs,,
4444 [ .set nomacro
4445 .text
4446 extbl $3, $2, $3 !lituse_bytoff!1
4447 ldq $2, a($29) !literal!1
4448 ldq $4, b($29) !literal!2
4449 ldq_u $3, 0($2) !lituse_base!1
4450 ldq $27, f($29) !literal!5
4451 jsr $26, ($27), f !lituse_jsr!5
4452 ldah $29, 0($26) !gpdisp!3
4453 lda $0, c($29) !gprel
4454 ldah $1, d($29) !gprelhigh
4455 lda $1, d($1) !gprellow
4456 lda $29, 0($29) !gpdisp!3],,
4457 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
4458 [Define if your assembler supports explicit relocations.])])
4459 gcc_GAS_CHECK_FEATURE([jsrdirect relocation support],
4460 gcc_cv_as_alpha_jsrdirect_relocs,,
4461 [ .set nomacro
4462 .text
4463 ldq $27, a($29) !literal!1
4464 jsr $26, ($27), a !lituse_jsrdirect!1],,
4465 [AC_DEFINE(HAVE_AS_JSRDIRECT_RELOCS, 1,
4466 [Define if your assembler supports the lituse_jsrdirect relocation.])])
4467 ;;
4468
4469 avr-*-*)
4470 gcc_GAS_CHECK_FEATURE([--mlink-relax option], gcc_cv_as_avr_mlink_relax,
4471 [--mlink-relax], [.text],,
4472 [AC_DEFINE(HAVE_AS_AVR_MLINK_RELAX_OPTION, 1,
4473 [Define if your avr assembler supports --mlink-relax option.])])
4474
4475 gcc_GAS_CHECK_FEATURE([-mrmw option], gcc_cv_as_avr_mrmw,
4476 [-mrmw], [.text],,
4477 [AC_DEFINE(HAVE_AS_AVR_MRMW_OPTION, 1,
4478 [Define if your avr assembler supports -mrmw option.])])
4479
4480 gcc_GAS_CHECK_FEATURE([__gcc_isr pseudo instruction],
4481 gcc_cv_as_avr_mgccisr,
4482 [-mgcc-isr], [.text
4483 __gcc_isr 1
4484 __gcc_isr 2
4485 __gcc_isr 0,r24
4486 ],,
4487 [AC_DEFINE(HAVE_AS_AVR_MGCCISR_OPTION, 1,
4488 [Define if your avr assembler supports -mgcc-isr option.])])
4489
4490 # Check how default linker description file implements .rodata for
4491 # avrxmega3 (PR21472). avr-gcc assumes .rodata is *not* loaded to
4492 # RAM so avr-gcc skips __do_copy_data for .rodata objects.
4493 AC_MSG_CHECKING(binutils for avrxmega3 .rodata support)
4494 cat > conftest.s <<EOF
4495 .section .rodata,"a",@progbits
4496 .global xxvaryy
4497 ;; avr-nm should print "... R xxvaryy", not "... D xxvaryy".
4498 xxvaryy:
4499 .word 1
4500 EOF
4501 rm -f conftest.nm
4502 AC_TRY_COMMAND([$gcc_cv_as -mmcu=avrxmega3 conftest.s -o conftest.o])
4503 AC_TRY_COMMAND([$gcc_cv_ld -mavrxmega3 conftest.o -o conftest.elf])
4504 AC_TRY_COMMAND([$gcc_cv_nm conftest.elf > conftest.nm])
4505 if test -s conftest.nm
4506 then
4507 if grep ' R xxvaryy' conftest.nm > /dev/null; then
4508 AC_MSG_RESULT(yes)
4509 AC_DEFINE(HAVE_LD_AVR_AVRXMEGA3_RODATA_IN_FLASH, 1,
4510 [Define if your default avr linker script for avrxmega3 leaves .rodata in flash.])
4511 else
4512 AC_MSG_RESULT(no: avrxmega3 .rodata located in RAM)
4513 echo "$as_me: nm output was" >&AS_MESSAGE_LOG_FD
4514 cat conftest.nm >&AS_MESSAGE_LOG_FD
4515 avr_ld_ver="`$gcc_cv_ld -v | sed -e 's:^.* ::'`"
4516 AC_MSG_WARN([[support for avrxmega3 .rodata in flash needs Binutils 2.29 or higher (have $avr_ld_ver)]])
4517 fi
4518 else
4519 AC_MSG_RESULT(test failed)
4520 echo "$as_me: failed program was" >&AS_MESSAGE_LOG_FD
4521 cat conftest.s >&AS_MESSAGE_LOG_FD
4522 AC_MSG_WARN([[see `config.log' for details]])
4523 fi
4524 rm -f conftest.s conftest.o conftest.elf conftest.nm
4525 ;;
4526
4527 cris-*-*)
4528 gcc_GAS_CHECK_FEATURE([-no-mul-bug-abort option],
4529 gcc_cv_as_cris_no_mul_bug,
4530 [-no-mul-bug-abort], [.text],,
4531 [AC_DEFINE(HAVE_AS_NO_MUL_BUG_ABORT_OPTION, 1,
4532 [Define if your assembler supports the -no-mul-bug-abort option.])])
4533 ;;
4534
4535 sparc*-*-*)
4536 gcc_GAS_CHECK_FEATURE([-relax option], gcc_cv_as_sparc_relax,
4537 [-relax], [.text],,
4538 [AC_DEFINE(HAVE_AS_RELAX_OPTION, 1,
4539 [Define if your assembler supports -relax option.])])
4540
4541 gcc_GAS_CHECK_FEATURE([GOTDATA_OP relocs],
4542 gcc_cv_as_sparc_gotdata_op,
4543 [-K PIC],
4544 [.text
4545 .align 4
4546 foo:
4547 nop
4548 bar:
4549 sethi %gdop_hix22(foo), %g1
4550 xor %g1, %gdop_lox10(foo), %g1
4551 ld [[%l7 + %g1]], %g2, %gdop(foo)],
4552 [if test x$gcc_cv_ld != x \
4553 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
4554 if test x$gcc_cv_objdump != x; then
4555 if $gcc_cv_objdump -s -j .text conftest 2> /dev/null \
4556 | grep ' 03000004 82186004 c405c001'> /dev/null 2>&1; then
4557 gcc_cv_as_sparc_gotdata_op=no
4558 else
4559 gcc_cv_as_sparc_gotdata_op=yes
4560 fi
4561 fi
4562 fi
4563 rm -f conftest],
4564 [AC_DEFINE(HAVE_AS_SPARC_GOTDATA_OP, 1,
4565 [Define if your assembler and linker support GOTDATA_OP relocs.])])
4566
4567 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs],
4568 gcc_cv_as_sparc_ua_pcrel,
4569 [-K PIC],
4570 [.text
4571 foo:
4572 nop
4573 .data
4574 .align 4
4575 .byte 0
4576 .uaword %r_disp32(foo)],
4577 [if test x$gcc_cv_ld != x \
4578 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1; then
4579 gcc_cv_as_sparc_ua_pcrel=yes
4580 fi
4581 rm -f conftest],
4582 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL, 1,
4583 [Define if your assembler and linker support unaligned PC relative relocs.])
4584
4585 gcc_GAS_CHECK_FEATURE([unaligned pcrel relocs against hidden symbols],
4586 gcc_cv_as_sparc_ua_pcrel_hidden,
4587 [-K PIC],
4588 [.data
4589 .align 4
4590 .byte 0x31
4591 .uaword %r_disp32(foo)
4592 .byte 0x32, 0x33, 0x34
4593 .global foo
4594 .hidden foo
4595 foo:
4596 .skip 4],
4597 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
4598 && $gcc_cv_ld -o conftest conftest.o -G > /dev/null 2>&1 \
4599 && $gcc_cv_objdump -s -j .data conftest 2> /dev/null \
4600 | grep ' 31000000 07323334' > /dev/null 2>&1; then
4601 if $gcc_cv_objdump -R conftest 2> /dev/null \
4602 | grep 'DISP32' > /dev/null 2>&1; then
4603 :
4604 else
4605 gcc_cv_as_sparc_ua_pcrel_hidden=yes
4606 fi
4607 fi
4608 rm -f conftest],
4609 [AC_DEFINE(HAVE_AS_SPARC_UA_PCREL_HIDDEN, 1,
4610 [Define if your assembler and linker support unaligned PC relative relocs against hidden symbols.])])
4611 ]) # unaligned pcrel relocs
4612
4613 gcc_GAS_CHECK_FEATURE([offsetable %lo()],
4614 gcc_cv_as_sparc_offsetable_lo10,
4615 [-xarch=v9],
4616 [.text
4617 or %g1, %lo(ab) + 12, %g1
4618 or %g1, %lo(ab + 12), %g1],
4619 [if test x$gcc_cv_objdump != x \
4620 && $gcc_cv_objdump -s -j .text conftest.o 2> /dev/null \
4621 | grep ' 82106000 82106000' > /dev/null 2>&1; then
4622 gcc_cv_as_sparc_offsetable_lo10=yes
4623 fi],
4624 [AC_DEFINE(HAVE_AS_OFFSETABLE_LO10, 1,
4625 [Define if your assembler supports offsetable %lo().])])
4626
4627 gcc_GAS_CHECK_FEATURE([FMAF, HPC, and VIS 3.0 instructions],
4628 gcc_cv_as_sparc_fmaf,
4629 [-xarch=v9d],
4630 [.text
4631 .register %g2, #scratch
4632 .register %g3, #scratch
4633 .align 4
4634 fmaddd %f0, %f2, %f4, %f6
4635 addxccc %g1, %g2, %g3
4636 fsrl32 %f2, %f4, %f8
4637 fnaddd %f10, %f12, %f14],,
4638 [AC_DEFINE(HAVE_AS_FMAF_HPC_VIS3, 1,
4639 [Define if your assembler supports FMAF, HPC, and VIS 3.0 instructions.])])
4640
4641 gcc_GAS_CHECK_FEATURE([SPARC4 instructions],
4642 gcc_cv_as_sparc_sparc4,
4643 [-xarch=sparc4],
4644 [.text
4645 .register %g2, #scratch
4646 .register %g3, #scratch
4647 .align 4
4648 cxbe %g2, %g3, 1f
4649 1: cwbneg %g2, %g3, 1f
4650 1: sha1
4651 md5
4652 aes_kexpand0 %f4, %f6, %f8
4653 des_round %f38, %f40, %f42, %f44
4654 camellia_f %f54, %f56, %f58, %f60
4655 kasumi_fi_xor %f46, %f48, %f50, %f52],,
4656 [AC_DEFINE(HAVE_AS_SPARC4, 1,
4657 [Define if your assembler supports SPARC4 instructions.])])
4658
4659 gcc_GAS_CHECK_FEATURE([SPARC5 and VIS 4.0 instructions],
4660 gcc_cv_as_sparc_sparc5,
4661 [-xarch=sparc5],
4662 [.text
4663 .register %g2, #scratch
4664 .register %g3, #scratch
4665 .align 4
4666 subxc %g1, %g2, %g3
4667 fpadd8 %f0, %f2, %f4],,
4668 [AC_DEFINE(HAVE_AS_SPARC5_VIS4, 1,
4669 [Define if your assembler supports SPARC5 and VIS 4.0 instructions.])])
4670
4671 gcc_GAS_CHECK_FEATURE([SPARC6 instructions],
4672 gcc_cv_as_sparc_sparc6,
4673 [-xarch=sparc6],
4674 [.text
4675 .register %g2, #scratch
4676 .register %g3, #scratch
4677 .align 4
4678 rd %entropy, %g1
4679 fpsll64x %f0, %f2, %f4],,
4680 [AC_DEFINE(HAVE_AS_SPARC6, 1,
4681 [Define if your assembler supports SPARC6 instructions.])])
4682
4683 gcc_GAS_CHECK_FEATURE([LEON instructions],
4684 gcc_cv_as_sparc_leon,
4685 [-Aleon],
4686 [.text
4687 .register %g2, #scratch
4688 .register %g3, #scratch
4689 .align 4
4690 smac %g2, %g3, %g1
4691 umac %g2, %g3, %g1
4692 casa [[%g2]] 0xb, %g3, %g1],,
4693 [AC_DEFINE(HAVE_AS_LEON, 1,
4694 [Define if your assembler supports LEON instructions.])])
4695 ;;
4696
4697 changequote(,)dnl
4698 i[34567]86-*-* | x86_64-*-*)
4699 changequote([,])dnl
4700 case $target_os in
4701 cygwin*)
4702 # Full C++ conformance when using a shared libstdc++-v3 requires some
4703 # support from the Cygwin DLL, which in more recent versions exports
4704 # wrappers to aid in interposing and redirecting operators new, delete,
4705 # etc., as per n2800 #17.6.4.6 [replacement.functions]. Check if we
4706 # are configuring for a version of Cygwin that exports the wrappers.
4707 if test x$host = x$target && test x$host_cpu = xi686; then
4708 AC_CHECK_FUNC([__wrap__Znaj],[gcc_ac_cygwin_dll_wrappers=yes],[gcc_ac_cygwin_dll_wrappers=no])
4709 else
4710 # Can't check presence of libc functions during cross-compile, so
4711 # we just have to assume we're building for an up-to-date target.
4712 gcc_ac_cygwin_dll_wrappers=yes
4713 fi
4714 AC_DEFINE_UNQUOTED(USE_CYGWIN_LIBSTDCXX_WRAPPERS,
4715 [`if test $gcc_ac_cygwin_dll_wrappers = yes; then echo 1; else echo 0; fi`],
4716 [Define if you want to generate code by default that assumes that the
4717 Cygwin DLL exports wrappers to support libstdc++ function replacement.])
4718 esac
4719 case $target_os in
4720 cygwin* | pe | mingw32*)
4721 # Recent binutils allows the three-operand form of ".comm" on PE. This
4722 # definition is used unconditionally to initialise the default state of
4723 # the target option variable that governs usage of the feature.
4724 gcc_GAS_CHECK_FEATURE([.comm with alignment], gcc_cv_as_comm_has_align,,
4725 [.comm foo,1,32])
4726 AC_DEFINE_UNQUOTED(HAVE_GAS_ALIGNED_COMM,
4727 [`if test $gcc_cv_as_comm_has_align = yes; then echo 1; else echo 0; fi`],
4728 [Define if your assembler supports specifying the alignment
4729 of objects allocated using the GAS .comm command.])
4730 # Used for DWARF 2 in PE
4731 gcc_GAS_CHECK_FEATURE([.secrel32 relocs],
4732 gcc_cv_as_ix86_pe_secrel32,,
4733 [.text
4734 foo: nop
4735 .data
4736 .secrel32 foo],
4737 [if test x$gcc_cv_ld != x \
4738 && $gcc_cv_ld -o conftest conftest.o > /dev/null 2>&1; then
4739 gcc_cv_as_ix86_pe_secrel32=yes
4740 fi
4741 rm -f conftest],
4742 [AC_DEFINE(HAVE_GAS_PE_SECREL32_RELOC, 1,
4743 [Define if your assembler and linker support 32-bit section relative relocs via '.secrel32 label'.])])
4744 # Test if the assembler supports the extended form of the .section
4745 # directive that specifies section alignment. LTO support uses this,
4746 # but normally only after installation, so we warn but don't fail the
4747 # configure if LTO is enabled but the assembler does not support it.
4748 gcc_GAS_CHECK_FEATURE([.section with alignment], gcc_cv_as_section_has_align,
4749 -fatal-warnings,[.section lto_test,"dr0"])
4750 if test x$gcc_cv_as_section_has_align != xyes; then
4751 case ",$enable_languages," in
4752 *,lto,*)
4753 AC_MSG_WARN([LTO for $target requires binutils >= 2.20.1, but version found appears insufficient; LTO will not work until binutils is upgraded.])
4754 ;;
4755 esac
4756 fi
4757 ;;
4758 esac
4759 case $target_os in
4760 darwin2* | darwin19*)
4761 gcc_GAS_CHECK_FEATURE([llvm assembler x86-pad-for-align option],
4762 gcc_cv_as_mllvm_x86_pad_for_align,
4763 [-mllvm -x86-pad-for-align=false], [.text],,
4764 [AC_DEFINE(HAVE_AS_MLLVM_X86_PAD_FOR_ALIGN, 1,
4765 [Define if your Mac OS X assembler supports -mllvm -x86-pad-for-align=false.])])
4766 ;;
4767 esac
4768
4769 gcc_GAS_CHECK_FEATURE([-xbrace_comment], gcc_cv_as_ix86_xbrace_comment,
4770 [-xbrace_comment=no], [.text],,
4771 [AC_DEFINE(HAVE_AS_XBRACE_COMMENT_OPTION, 1,
4772 [Define if your assembler supports -xbrace_comment option.])])
4773
4774 gcc_GAS_CHECK_FEATURE([filds and fists mnemonics],
4775 gcc_cv_as_ix86_filds,,
4776 [filds (%ebp); fists (%ebp)],,
4777 [AC_DEFINE(HAVE_AS_IX86_FILDS, 1,
4778 [Define if your assembler uses filds and fists mnemonics.])])
4779
4780 gcc_GAS_CHECK_FEATURE([fildq and fistpq mnemonics],
4781 gcc_cv_as_ix86_fildq,,
4782 [fildq (%ebp); fistpq (%ebp)],,
4783 [AC_DEFINE(HAVE_AS_IX86_FILDQ, 1,
4784 [Define if your assembler uses fildq and fistq mnemonics.])])
4785
4786 gcc_GAS_CHECK_FEATURE([cmov syntax],
4787 gcc_cv_as_ix86_cmov_sun_syntax,,
4788 [cmovl.l %edx, %eax],,
4789 [AC_DEFINE(HAVE_AS_IX86_CMOV_SUN_SYNTAX, 1,
4790 [Define if your assembler supports the Sun syntax for cmov.])])
4791
4792 gcc_GAS_CHECK_FEATURE([ffreep mnemonic],
4793 gcc_cv_as_ix86_ffreep,,
4794 [ffreep %st(1)],,
4795 [AC_DEFINE(HAVE_AS_IX86_FFREEP, 1,
4796 [Define if your assembler supports the ffreep mnemonic.])])
4797
4798 gcc_GAS_CHECK_FEATURE([.quad directive],
4799 gcc_cv_as_ix86_quad,,
4800 [.quad 0],,
4801 [AC_DEFINE(HAVE_AS_IX86_QUAD, 1,
4802 [Define if your assembler supports the .quad directive.])])
4803
4804 gcc_GAS_CHECK_FEATURE([sahf mnemonic],
4805 gcc_cv_as_ix86_sahf,,
4806 [.code64
4807 sahf],,
4808 [AC_DEFINE(HAVE_AS_IX86_SAHF, 1,
4809 [Define if your assembler supports the sahf mnemonic in 64bit mode.])])
4810
4811 gcc_GAS_CHECK_FEATURE([interunit movq mnemonic],
4812 gcc_cv_as_ix86_interunit_movq,,
4813 [.code64
4814 movq %mm0, %rax
4815 movq %rax, %xmm0])
4816 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_INTERUNIT_MOVQ,
4817 [`if test $gcc_cv_as_ix86_interunit_movq = yes; then echo 1; else echo 0; fi`],
4818 [Define if your assembler supports interunit movq mnemonic.])
4819
4820 gcc_GAS_CHECK_FEATURE([hle prefixes],
4821 gcc_cv_as_ix86_hle,,
4822 [lock xacquire cmpxchg %esi, (%ecx)],,
4823 [AC_DEFINE(HAVE_AS_IX86_HLE, 1,
4824 [Define if your assembler supports HLE prefixes.])])
4825
4826 gcc_GAS_CHECK_FEATURE([swap suffix],
4827 gcc_cv_as_ix86_swap,,
4828 [movl.s %esp, %ebp],,
4829 [AC_DEFINE(HAVE_AS_IX86_SWAP, 1,
4830 [Define if your assembler supports the swap suffix.])])
4831
4832 gcc_GAS_CHECK_FEATURE([different section symbol subtraction],
4833 gcc_cv_as_ix86_diff_sect_delta,,
4834 [.section .rodata
4835 .L1:
4836 .long .L2-.L1
4837 .long .L3-.L1
4838 .text
4839 .L3: nop
4840 .L2: nop],,
4841 [AC_DEFINE(HAVE_AS_IX86_DIFF_SECT_DELTA, 1,
4842 [Define if your assembler supports the subtraction of symbols in different sections.])])
4843
4844 gcc_GAS_CHECK_FEATURE([rep and lock prefix],
4845 gcc_cv_as_ix86_rep_lock_prefix,,
4846 [rep movsl
4847 rep ret
4848 rep nop
4849 rep bsf %ecx, %eax
4850 rep bsr %ecx, %eax
4851 lock addl %edi, (%eax,%esi)
4852 lock orl $0, (%esp)],,
4853 [AC_DEFINE(HAVE_AS_IX86_REP_LOCK_PREFIX, 1,
4854 [Define if the assembler supports 'rep <insn>, lock <insn>'.])])
4855
4856 gcc_GAS_CHECK_FEATURE([ud2 mnemonic],
4857 gcc_cv_as_ix86_ud2,,
4858 [ud2],,
4859 [AC_DEFINE(HAVE_AS_IX86_UD2, 1,
4860 [Define if your assembler supports the 'ud2' mnemonic.])])
4861
4862 # Enforce 32-bit output with gas and gld.
4863 if test x$gas = xyes; then
4864 as_ix86_gas_32_opt="--32"
4865 fi
4866 if echo "$ld_ver" | grep GNU > /dev/null; then
4867 if $gcc_cv_ld -V 2>/dev/null | grep elf_i386_sol2 > /dev/null; then
4868 ld_ix86_gld_32_opt="-melf_i386_sol2"
4869 else
4870 ld_ix86_gld_32_opt="-melf_i386"
4871 fi
4872 fi
4873
4874 gcc_GAS_CHECK_FEATURE([R_386_TLS_GD_PLT reloc],
4875 gcc_cv_as_ix86_tlsgdplt,
4876 [$as_ix86_gas_32_opt],
4877 [call tls_gd@tlsgdplt],
4878 [if test x$gcc_cv_ld != x \
4879 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o -G > /dev/null 2>&1; then
4880 gcc_cv_as_ix86_tlsgdplt=yes
4881 fi
4882 rm -f conftest],
4883 [AC_DEFINE(HAVE_AS_IX86_TLSGDPLT, 1,
4884 [Define if your assembler and linker support @tlsgdplt.])])
4885
4886 conftest_s='
4887 .section .tdata,"aw'$tls_section_flag'",@progbits
4888 tls_ld:
4889 .section .text,"ax",@progbits
4890 call tls_ld@tlsldmplt'
4891
4892 gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM_PLT reloc],
4893 gcc_cv_as_ix86_tlsldmplt,
4894 [$as_ix86_gas_32_opt],
4895 [$conftest_s],
4896 [if test x$gcc_cv_ld != x \
4897 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o -G > /dev/null 2>&1; then
4898 gcc_cv_as_ix86_tlsldmplt=yes
4899 fi
4900 rm -f conftest])
4901 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLSLDMPLT,
4902 [`if test $gcc_cv_as_ix86_tlsldmplt = yes; then echo 1; else echo 0; fi`],
4903 [Define to 1 if your assembler and linker support @tlsldmplt.])
4904
4905 conftest_s='
4906 .section .text,"ax",@progbits
4907 .globl _start
4908 .type _start, @function
4909 _start:
4910 leal value@tlsldm(%ebx), %eax
4911 call ___tls_get_addr@plt
4912
4913 .section .tdata,"aw'$tls_section_flag'",@progbits
4914 .type value, @object
4915 value:'
4916 gcc_GAS_CHECK_FEATURE([R_386_TLS_LDM reloc],
4917 gcc_cv_as_ix86_tlsldm,
4918 [$as_ix86_gas_32_opt],
4919 [$conftest_s],
4920 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
4921 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o $ld_tls_libs -lc > /dev/null 2>&1; then
4922 if $gcc_cv_objdump -d conftest 2>/dev/null | grep nop > /dev/null \
4923 || dis conftest 2>/dev/null | grep nop > /dev/null; then
4924 gcc_cv_as_ix86_tlsldm=yes
4925 fi
4926 fi
4927 rm -f conftest])
4928 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLSLDM,
4929 [`if test $gcc_cv_as_ix86_tlsldm = yes; then echo 1; else echo 0; fi`],
4930 [Define to 1 if your assembler and linker support @tlsldm.])
4931
4932 conftest_s='
4933 .data
4934 bar:
4935 .byte 1
4936 .text
4937 .global _start
4938 _start:
4939 cmpl $0, bar@GOT
4940 jmp *_start@GOT'
4941 gcc_GAS_CHECK_FEATURE([R_386_GOT32X reloc],
4942 gcc_cv_as_ix86_got32x,
4943 [$as_ix86_gas_32_opt],
4944 [$conftest_s],
4945 [if test x$gcc_cv_ld != x && test x$gcc_cv_objdump != x \
4946 && test x$gcc_cv_readelf != x \
4947 && $gcc_cv_readelf --relocs --wide conftest.o 2>&1 \
4948 | grep R_386_GOT32X > /dev/null 2>&1 \
4949 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o > /dev/null 2>&1; then
4950 if $gcc_cv_objdump -dw conftest 2>&1 \
4951 | grep 0xffffff > /dev/null 2>&1; then
4952 gcc_cv_as_ix86_got32x=no
4953 else
4954 gcc_cv_as_ix86_got32x=yes
4955 fi
4956 fi
4957 rm -f conftest])
4958 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_GOT32X,
4959 [`if test x"$gcc_cv_as_ix86_got32x" = xyes; then echo 1; else echo 0; fi`],
4960 [Define 0/1 if your assembler and linker support @GOT.])
4961
4962 gcc_GAS_CHECK_FEATURE([GOTOFF in data],
4963 gcc_cv_as_ix86_gotoff_in_data,
4964 [$as_ix86_gas_32_opt],
4965 [ .text
4966 .L0:
4967 nop
4968 .data
4969 .long .L0@GOTOFF])
4970 AC_DEFINE_UNQUOTED(HAVE_AS_GOTOFF_IN_DATA,
4971 [`if test $gcc_cv_as_ix86_gotoff_in_data = yes; then echo 1; else echo 0; fi`],
4972 [Define true if the assembler supports '.long foo@GOTOFF'.])
4973
4974 conftest_s='
4975 .section .text,"ax",@progbits
4976 .globl _start
4977 .type _start, @function
4978 _start:
4979 leal ld@tlsldm(%ecx), %eax
4980 call *___tls_get_addr@GOT(%ecx)
4981 leal gd@tlsgd(%ecx), %eax
4982 call *___tls_get_addr@GOT(%ecx)
4983
4984 .section .tdata,"aw'$tls_section_flag'",@progbits
4985 .type ld, @object
4986 ld:
4987 .byte 0
4988 .globl gd
4989 .type gd, @object
4990 gd:
4991 .byte 0'
4992 gcc_GAS_CHECK_FEATURE([calling ___tls_get_addr via GOT],
4993 gcc_cv_as_ix86_tls_get_addr_via_got,
4994 [$as_ix86_gas_32_opt],
4995 [$conftest_s],
4996 [if test x$gcc_cv_ld != x \
4997 && $gcc_cv_ld $ld_ix86_gld_32_opt -o conftest conftest.o > /dev/null 2>&1; then
4998 gcc_cv_as_ix86_tls_get_addr_via_got=yes
4999 fi
5000 rm -f conftest])
5001 AC_DEFINE_UNQUOTED(HAVE_AS_IX86_TLS_GET_ADDR_GOT,
5002 [`if test x"$gcc_cv_as_ix86_tls_get_addr_via_got" = xyes; then echo 1; else echo 0; fi`],
5003 [Define 0/1 if your assembler and linker support calling ___tls_get_addr via GOT.])
5004 ;;
5005
5006 ia64*-*-*)
5007 gcc_GAS_CHECK_FEATURE([ltoffx and ldxmov relocs],
5008 gcc_cv_as_ia64_ltoffx_ldxmov_relocs,,
5009 [ .text
5010 addl r15 = @ltoffx(x#), gp
5011 ;;
5012 ld8.mov r16 = [[r15]], x#
5013 ],,
5014 [AC_DEFINE(HAVE_AS_LTOFFX_LDXMOV_RELOCS, 1,
5015 [Define if your assembler supports ltoffx and ldxmov relocations.])])
5016
5017 ;;
5018
5019 powerpc*-*-*)
5020
5021 case $target in
5022 *-*-darwin*)
5023 gcc_GAS_CHECK_FEATURE([.machine directive support],
5024 gcc_cv_as_machine_directive,,
5025 [ .machine ppc7400])
5026 if test x$gcc_cv_as_machine_directive != xyes; then
5027 echo "*** This target requires an assembler supporting \".machine\"" >&2
5028 echo you can get it from: https://gcc.gnu.org/pub/gcc/infrastructure/cctools-528.5.dmg >&2
5029 test x$build = x$target && exit 1
5030 fi
5031 ;;
5032 esac
5033
5034 case $target in
5035 *-*-aix*) conftest_s=' .machine "pwr5"
5036 .csect .text[[PR]]
5037 mfcr 3,128';;
5038 *-*-darwin*) conftest_s=' .text
5039 mfcr r3,128';;
5040 *) conftest_s=' .machine power4
5041 .text
5042 mfcr 3,128';;
5043 esac
5044
5045 gcc_GAS_CHECK_FEATURE([mfcr field support],
5046 gcc_cv_as_powerpc_mfcrf,,
5047 [$conftest_s],,
5048 [AC_DEFINE(HAVE_AS_MFCRF, 1,
5049 [Define if your assembler supports mfcr field.])])
5050
5051 case $target in
5052 *-*-aix*) conftest_s=' .csect .text[[PR]]
5053 LCF..0:
5054 addis 11,30,_GLOBAL_OFFSET_TABLE_-LCF..0@ha';;
5055 *-*-darwin*)
5056 conftest_s=' .text
5057 LCF0:
5058 addis r11,r30,_GLOBAL_OFFSET_TABLE_-LCF0@ha';;
5059 *) conftest_s=' .text
5060 .LCF0:
5061 addis 11,30,_GLOBAL_OFFSET_TABLE_-.LCF0@ha';;
5062 esac
5063
5064 gcc_GAS_CHECK_FEATURE([rel16 relocs],
5065 gcc_cv_as_powerpc_rel16, -a32,
5066 [$conftest_s],,
5067 [AC_DEFINE(HAVE_AS_REL16, 1,
5068 [Define if your assembler supports R_PPC_REL16 relocs.])])
5069
5070 case $target in
5071 *-*-aix*) conftest_s=' .machine "pwr7"
5072 .csect .text[[PR]]
5073 lxvd2x 1,2,3';;
5074 *) conftest_s=' .machine power7
5075 .text
5076 lxvd2x 1,2,3';;
5077 esac
5078
5079 gcc_GAS_CHECK_FEATURE([vector-scalar support],
5080 gcc_cv_as_powerpc_vsx, -a32,
5081 [$conftest_s],,
5082 [AC_DEFINE(HAVE_AS_VSX, 1,
5083 [Define if your assembler supports VSX instructions.])])
5084
5085 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
5086 gcc_cv_as_powerpc_gnu_attribute,,
5087 [.gnu_attribute 4,1],,
5088 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5089 [Define if your assembler supports .gnu_attribute.])])
5090
5091 gcc_GAS_CHECK_FEATURE([prologue entry point marker support],
5092 gcc_cv_as_powerpc_entry_markers,-a64 --fatal-warnings,
5093 [ .reloc .,R_PPC64_ENTRY; nop],,
5094 [AC_DEFINE(HAVE_AS_ENTRY_MARKERS, 1,
5095 [Define if your assembler supports the R_PPC64_ENTRY relocation.])])
5096
5097 gcc_GAS_CHECK_FEATURE([plt sequence marker support],
5098 gcc_cv_as_powerpc_pltseq_markers,-a32 --fatal-warnings,
5099 [ .reloc .,R_PPC_PLTSEQ; nop],,
5100 [AC_DEFINE(HAVE_AS_PLTSEQ, 1,
5101 [Define if your assembler supports R_PPC*_PLTSEQ relocations.])])
5102
5103 case $target in
5104 *-*-aix*)
5105 gcc_GAS_CHECK_FEATURE([AIX .ref support],
5106 gcc_cv_as_aix_ref,,
5107 [ .csect stuff[[rw]]
5108 stuff:
5109 .long 1
5110 .extern sym
5111 .ref sym
5112 ],,
5113 [AC_DEFINE(HAVE_AS_REF, 1,
5114 [Define if your assembler supports .ref])])
5115
5116 gcc_GAS_CHECK_FEATURE([AIX DWARF location lists section support],
5117 gcc_cv_as_aix_dwloc,,
5118 [ .dwsect 0xA0000
5119 Lframe..0:
5120 .vbyte 4,Lframe..0
5121 ],,
5122 [AC_DEFINE(HAVE_XCOFF_DWARF_EXTRAS, 1,
5123 [Define if your assembler supports AIX debug frame section label reference.])])
5124 ;;
5125 esac
5126 ;;
5127
5128 mips*-*-*)
5129 gcc_GAS_CHECK_FEATURE([explicit relocation support],
5130 gcc_cv_as_mips_explicit_relocs,,
5131 [ lw $4,%gp_rel(foo)($4)],,
5132 [if test x$target_cpu_default = x
5133 then target_cpu_default=MASK_EXPLICIT_RELOCS
5134 else target_cpu_default="($target_cpu_default)|MASK_EXPLICIT_RELOCS"
5135 fi])
5136
5137 gcc_GAS_CHECK_FEATURE([-mno-shared support],
5138 gcc_cv_as_mips_no_shared,[-mno-shared], [nop],,
5139 [AC_DEFINE(HAVE_AS_NO_SHARED, 1,
5140 [Define if the assembler understands -mno-shared.])])
5141
5142 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
5143 gcc_cv_as_mips_gnu_attribute,,
5144 [.gnu_attribute 4,1],,
5145 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5146 [Define if your assembler supports .gnu_attribute.])])
5147
5148 gcc_GAS_CHECK_FEATURE([.module support],
5149 gcc_cv_as_mips_dot_module,[-32],
5150 [.module mips2
5151 .module fp=xx],,
5152 [AC_DEFINE(HAVE_AS_DOT_MODULE, 1,
5153 [Define if your assembler supports .module.])])
5154 if test x$gcc_cv_as_mips_dot_module = xno \
5155 && test x$with_fp_32 != x; then
5156 AC_MSG_ERROR(
5157 [Requesting --with-fp-32= requires assembler support for .module.])
5158 fi
5159
5160 gcc_GAS_CHECK_FEATURE([.micromips support],
5161 gcc_cv_as_micromips_support,[--fatal-warnings],
5162 [.set micromips],,
5163 [AC_DEFINE(HAVE_GAS_MICROMIPS, 1,
5164 [Define if your assembler supports the .set micromips directive])])
5165
5166 gcc_GAS_CHECK_FEATURE([.dtprelword support],
5167 gcc_cv_as_mips_dtprelword,,
5168 [.section .tdata,"awT",@progbits
5169 x:
5170 .word 2
5171 .text
5172 .dtprelword x+0x8000],,
5173 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
5174 [Define if your assembler supports .dtprelword.])])
5175
5176 gcc_GAS_CHECK_FEATURE([DSPR1 mult with four accumulators support],
5177 gcc_cv_as_mips_dspr1_mult,,
5178 [ .set mips32r2
5179 .set nodspr2
5180 .set dsp
5181 madd $ac3,$4,$5
5182 maddu $ac3,$4,$5
5183 msub $ac3,$4,$5
5184 msubu $ac3,$4,$5
5185 mult $ac3,$4,$5
5186 multu $ac3,$4,$5],,
5187 [AC_DEFINE(HAVE_AS_DSPR1_MULT, 1,
5188 [Define if your assembler supports DSPR1 mult.])])
5189
5190 AC_MSG_CHECKING(assembler and linker for explicit JALR relocation)
5191 gcc_cv_as_ld_jalr_reloc=no
5192 if test $gcc_cv_as_mips_explicit_relocs = yes; then
5193 if test $in_tree_ld = yes ; then
5194 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 20 -o "$gcc_cv_gld_major_version" -gt 2 \
5195 && test $in_tree_ld_is_elf = yes; then
5196 gcc_cv_as_ld_jalr_reloc=yes
5197 fi
5198 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x; then
5199 echo ' .ent x' > conftest.s
5200 echo 'x: lw $2,%got_disp(y)($3)' >> conftest.s
5201 echo ' lw $25,%call16(y)($28)' >> conftest.s
5202 echo ' .reloc 1f,R_MIPS_JALR,y' >> conftest.s
5203 echo '1: jalr $25' >> conftest.s
5204 echo ' .reloc 1f,R_MIPS_JALR,x' >> conftest.s
5205 echo '1: jalr $25' >> conftest.s
5206 echo ' .end x' >> conftest.s
5207 if $gcc_cv_as -o conftest.o conftest.s >/dev/null 2>&AS_MESSAGE_LOG_FD \
5208 && $gcc_cv_ld -shared -o conftest.so conftest.o >/dev/null 2>&AS_MESSAGE_LOG_FD; then
5209 if $gcc_cv_objdump -d conftest.so | grep jalr >/dev/null 2>&1 \
5210 && $gcc_cv_objdump -d conftest.so | grep "bal.*<x>" >/dev/null 2>&1; then
5211 gcc_cv_as_ld_jalr_reloc=yes
5212 fi
5213 fi
5214 rm -f conftest.*
5215 fi
5216 fi
5217 if test $gcc_cv_as_ld_jalr_reloc = yes; then
5218 if test x$target_cpu_default = x; then
5219 target_cpu_default=MASK_RELAX_PIC_CALLS
5220 else
5221 target_cpu_default="($target_cpu_default)|MASK_RELAX_PIC_CALLS"
5222 fi
5223 fi
5224 AC_MSG_RESULT($gcc_cv_as_ld_jalr_reloc)
5225
5226 AC_CACHE_CHECK([linker for .eh_frame personality relaxation],
5227 [gcc_cv_ld_mips_personality_relaxation],
5228 [gcc_cv_ld_mips_personality_relaxation=no
5229 if test $in_tree_ld = yes ; then
5230 if test "$gcc_cv_gld_major_version" -eq 2 \
5231 -a "$gcc_cv_gld_minor_version" -ge 21 \
5232 -o "$gcc_cv_gld_major_version" -gt 2; then
5233 gcc_cv_ld_mips_personality_relaxation=yes
5234 fi
5235 elif test x$gcc_cv_as != x \
5236 -a x$gcc_cv_ld != x \
5237 -a x$gcc_cv_readelf != x ; then
5238 cat > conftest.s <<EOF
5239 .cfi_startproc
5240 .cfi_personality 0x80,indirect_ptr
5241 .ent test
5242 test:
5243 nop
5244 .end test
5245 .cfi_endproc
5246
5247 .section .data,"aw",@progbits
5248 indirect_ptr:
5249 .dc.a personality
5250 EOF
5251 if $gcc_cv_as -KPIC -o conftest.o conftest.s > /dev/null 2>&1 \
5252 && $gcc_cv_ld -o conftest conftest.o -shared > /dev/null 2>&1; then
5253 if $gcc_cv_readelf -d conftest 2>&1 \
5254 | grep TEXTREL > /dev/null 2>&1; then
5255 :
5256 elif $gcc_cv_readelf --relocs conftest 2>&1 \
5257 | grep 'R_MIPS_REL32 *$' > /dev/null 2>&1; then
5258 :
5259 else
5260 gcc_cv_ld_mips_personality_relaxation=yes
5261 fi
5262 fi
5263 fi
5264 rm -f conftest.s conftest.o conftest])
5265 if test x$gcc_cv_ld_mips_personality_relaxation = xyes; then
5266 AC_DEFINE(HAVE_LD_PERSONALITY_RELAXATION, 1,
5267 [Define if your linker can relax absolute .eh_frame personality
5268 pointers into PC-relative form.])
5269 fi
5270
5271 gcc_GAS_CHECK_FEATURE([-mnan= support],
5272 gcc_cv_as_mips_nan,
5273 [-mnan=2008],,,
5274 [AC_DEFINE(HAVE_AS_NAN, 1,
5275 [Define if the assembler understands -mnan=.])])
5276 if test x$gcc_cv_as_mips_nan = xno \
5277 && test x$with_nan != x; then
5278 AC_MSG_ERROR(
5279 [Requesting --with-nan= requires assembler support for -mnan=])
5280 fi
5281 ;;
5282 msp430-*-*)
5283 # Earlier GAS versions generically support .gnu_attribute, but the
5284 # msp430 assembler will not do anything with it.
5285 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
5286 gcc_cv_as_msp430_gnu_attribute,,
5287 [.gnu_attribute 4,1],,
5288 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5289 [Define if your assembler supports .gnu_attribute.])])
5290 gcc_GAS_CHECK_FEATURE([.mspabi_attribute support],
5291 gcc_cv_as_msp430_mspabi_attribute,,
5292 [.mspabi_attribute 4,2],,
5293 [AC_DEFINE(HAVE_AS_MSPABI_ATTRIBUTE, 1,
5294 [Define if your assembler supports .mspabi_attribute.])])
5295 if test x$enable_newlib_nano_formatted_io = xyes; then
5296 AC_DEFINE(HAVE_NEWLIB_NANO_FORMATTED_IO, 1, [Define if GCC has been
5297 configured with --enable-newlib-nano-formatted-io.])
5298 fi
5299 ;;
5300 nios2-*-*)
5301 # Versions 2.33 and earlier lacked support for the %gotoff relocation
5302 # syntax that is documented in the ABI specification.
5303 gcc_GAS_CHECK_FEATURE([support for %gotoff relocations in constant data],
5304 gcc_cv_as_nios2_gotoff_relocation,,
5305 [ .extern foo
5306 .data
5307 .long %gotoff(foo)],,
5308 [AC_DEFINE(HAVE_AS_NIOS2_GOTOFF_RELOCATION, 1,
5309 [Define if your assembler supports %gotoff relocation syntax.])])
5310 ;;
5311 riscv*-*-*)
5312 gcc_GAS_CHECK_FEATURE([.attribute support],
5313 gcc_cv_as_riscv_attribute,,
5314 [.attribute stack_align,4],,
5315 [AC_DEFINE(HAVE_AS_RISCV_ATTRIBUTE, 1,
5316 [Define if your assembler supports .attribute.])])
5317 gcc_GAS_CHECK_FEATURE([-misa-spec= support],
5318 gcc_cv_as_riscv_isa_spec,
5319 [-misa-spec=2.2],,,
5320 [AC_DEFINE(HAVE_AS_MISA_SPEC, 1,
5321 [Define if the assembler understands -misa-spec=.])])
5322 gcc_GAS_CHECK_FEATURE([-march=rv32i_zifencei support],
5323 gcc_cv_as_riscv_march_zifencei,
5324 [-march=rv32i_zifencei2p0],,,
5325 [AC_DEFINE(HAVE_AS_MARCH_ZIFENCEI, 1,
5326 [Define if the assembler understands -march=rv*_zifencei.])])
5327 ;;
5328 loongarch*-*-*)
5329 gcc_GAS_CHECK_FEATURE([.dtprelword support],
5330 gcc_cv_as_loongarch_dtprelword, [2,18,0],,
5331 [.section .tdata,"awT",@progbits
5332 x:
5333 .word 2
5334 .text
5335 .dtprelword x+0x8000],,
5336 [AC_DEFINE(HAVE_AS_DTPRELWORD, 1,
5337 [Define if your assembler supports .dtprelword.])])
5338 gcc_GAS_CHECK_FEATURE([explicit relocation support],
5339 gcc_cv_as_loongarch_explicit_relocs,,
5340 [a:pcalau12i $t0,%pc_hi20(a)],,
5341 [AC_DEFINE(HAVE_AS_EXPLICIT_RELOCS, 1,
5342 [Define if your assembler supports explicit relocation.])])
5343 gcc_GAS_CHECK_FEATURE([eh_frame pcrel encoding support],
5344 gcc_cv_as_loongarch_eh_frame_pcrel_encoding_support,,
5345 [.cfi_startproc
5346 .cfi_personality 0x9b,a
5347 .cfi_lsda 0x1b,b
5348 .cfi_endproc],,
5349 [AC_DEFINE(HAVE_AS_EH_FRAME_PCREL_ENCODING_SUPPORT, 1,
5350 [Define if your assembler supports eh_frame pcrel encoding.])])
5351 ;;
5352 s390*-*-*)
5353 gcc_GAS_CHECK_FEATURE([.gnu_attribute support],
5354 gcc_cv_as_s390_gnu_attribute,,
5355 [.gnu_attribute 8,1],,
5356 [AC_DEFINE(HAVE_AS_GNU_ATTRIBUTE, 1,
5357 [Define if your assembler supports .gnu_attribute.])])
5358 gcc_GAS_CHECK_FEATURE([.machine and .machinemode support],
5359 gcc_cv_as_s390_machine_machinemode,,
5360 [ .machinemode push
5361 .machinemode pop
5362 .machine push
5363 .machine pop],,
5364 [AC_DEFINE(HAVE_AS_MACHINE_MACHINEMODE, 1,
5365 [Define if your assembler supports .machine and .machinemode.])])
5366 gcc_GAS_CHECK_FEATURE([architecture modifiers support],
5367 gcc_cv_as_s390_architecture_modifiers,,
5368 [ .machine z13+vx ],,
5369 [AC_DEFINE(HAVE_AS_ARCHITECTURE_MODIFIERS, 1,
5370 [Define if your assembler supports architecture modifiers.])])
5371 gcc_GAS_CHECK_FEATURE([vector load/store alignment hints],
5372 gcc_cv_as_s390_vector_loadstore_alignment_hints,,
5373 [ vl %v24,0(%r15),3 ],,
5374 [AC_DEFINE(HAVE_AS_VECTOR_LOADSTORE_ALIGNMENT_HINTS, 1,
5375 [Define if your assembler supports vl/vst/vlm/vstm with an optional alignment hint argument.])])
5376 gcc_GAS_CHECK_FEATURE([vector load/store alignment hints on z13],
5377 gcc_cv_as_s390_vector_loadstore_alignment_hints_on_z13, [-mzarch -march=z13],
5378 [ vl %v24,0(%r15),3 ],,
5379 [AC_DEFINE(HAVE_AS_VECTOR_LOADSTORE_ALIGNMENT_HINTS_ON_Z13, 1,
5380 [Define if your assembler supports vl/vst/vlm/vstm with an optional alignment hint argument on z13.])])
5381
5382 ;;
5383 esac
5384
5385 # Mips, LoongArch and HP-UX need the GNU assembler.
5386 # Linux on IA64 might be able to use the Intel assembler.
5387
5388 case "$target" in
5389 mips*-*-* | loongarch*-*-* | *-*-hpux* )
5390 if test x$gas_flag = xyes \
5391 || test x"$host" != x"$build" \
5392 || test ! -x "$gcc_cv_as" \
5393 || "$gcc_cv_as" -v < /dev/null 2>&1 | grep GNU > /dev/null; then
5394 :
5395 else
5396 echo "*** This configuration requires the GNU assembler" >&2
5397 exit 1
5398 fi
5399 ;;
5400 esac
5401
5402 # AMD GCN needs the LLVM assembler and linker.
5403 # Test that LLVM is at least 13.0.1.
5404 case "$target" in
5405 amdgcn-* | gcn-*)
5406 AC_MSG_CHECKING(llvm assembler version)
5407 gcc_cv_as_version="unknown"
5408 if test x$gcc_cv_as != x; then
5409 gcc_cv_as_version=`$gcc_cv_as --version 2>&1 | sed -ne '/version/s/.* \([[0-9]]\)/\1/p' || echo error`
5410 case "$gcc_cv_as_version" in
5411 13.0.[[1-9]]*) ;; # 13.0.1+
5412 13.[[1-9]]*) ;; # 13.1+
5413 1[[4-9]]*) ;; # 14..19
5414 [[2-9]][[0-9]]*) ;; # 20..99
5415 [[1-9]][[0-9]][[0-9]]*) ;; # 100+
5416 error) AC_MSG_ERROR([cannot determine LLVM version]) ;;
5417 *) AC_MSG_ERROR([LLVM 13.0.1 or later is required (found LLVM $gcc_cv_as_version)]) ;;
5418 esac
5419 fi
5420 AC_MSG_RESULT([$gcc_cv_as_version, ok])
5421 ;;
5422 esac
5423
5424 case "$target" in
5425 arm*)
5426 gcc_GAS_CHECK_FEATURE([assembler for arm accepts context-specific architecture extensions],
5427 gcc_cv_as_arm_option_extensions,
5428 [-march=armv8.1-m.main+mve],
5429 [.text
5430 .thumb
5431 .syntax unified
5432 vmov.f32 s0, s1],,
5433 [AC_DEFINE(HAVE_GAS_ARM_EXTENDED_ARCH, 1,
5434 [Define if your Arm assembler permits context-specific feature extensions.])])
5435 esac
5436
5437 # ??? Not all targets support dwarf2 debug_line, even within a version
5438 # of gas. Moreover, we need to emit a valid instruction to trigger any
5439 # info to the output file. So, as supported targets are added to gas 2.11,
5440 # add some instruction here to (also) show we expect this might work.
5441 # ??? Once 2.11 is released, probably need to add first known working
5442 # version to the per-target configury.
5443 case "$cpu_type" in
5444 aarch64 | alpha | arc | arm | avr | bfin | cris | csky | i386 | loongarch | m32c \
5445 | m68k | microblaze | mips | nds32 | nios2 | pa | riscv | rs6000 | score | sparc \
5446 | visium | xstormy16 | xtensa)
5447 insn="nop"
5448 ;;
5449 ia64 | s390)
5450 insn="nop 0"
5451 ;;
5452 mmix)
5453 insn="swym 0"
5454 ;;
5455 esac
5456 if test x"$insn" != x; then
5457 conftest_s="\
5458 .file 1 \"conftest.s\"
5459 .loc 1 3 0
5460 $insn"
5461 gcc_GAS_CHECK_FEATURE([dwarf2 debug_line support],
5462 gcc_cv_as_dwarf2_debug_line,,
5463 [$conftest_s],
5464 [if test x$gcc_cv_objdump != x \
5465 && $gcc_cv_objdump -h conftest.o 2> /dev/null \
5466 | grep debug_line > /dev/null 2>&1; then
5467 gcc_cv_as_dwarf2_debug_line=yes
5468 elif test x$gcc_cv_otool != x \
5469 && $gcc_cv_otool -l conftest.o 2> /dev/null \
5470 | grep debug_line > /dev/null 2>&1; then
5471 gcc_cv_as_dwarf2_debug_line=yes
5472 fi])
5473
5474 # The .debug_line file table must be in the exact order that
5475 # we specified the files, since these indices are also used
5476 # by DW_AT_decl_file. Approximate this test by testing if
5477 # the assembler bitches if the same index is assigned twice.
5478 gcc_GAS_CHECK_FEATURE([buggy dwarf2 .file directive],
5479 gcc_cv_as_dwarf2_file_buggy,,
5480 [ .file 1 "foo.s"
5481 .file 1 "bar.s"])
5482
5483 if test $gcc_cv_as_dwarf2_debug_line = yes \
5484 && test $gcc_cv_as_dwarf2_file_buggy = no; then
5485 AC_DEFINE(HAVE_AS_DWARF2_DEBUG_LINE, 1,
5486 [Define if your assembler supports dwarf2 .file/.loc directives,
5487 and preserves file table indices exactly as given.])
5488
5489 if test $gcc_cv_as_leb128 = yes; then
5490 conftest_s="\
5491 .file 1 \"conftest.s\"
5492 .loc 1 3 0 view .LVU1
5493 $insn
5494 .data
5495 .uleb128 .LVU1
5496 .uleb128 .LVU1
5497 "
5498 gcc_GAS_CHECK_FEATURE([dwarf2 debug_view support],
5499 gcc_cv_as_dwarf2_debug_view,,
5500 [$conftest_s],,
5501 [AC_DEFINE(HAVE_AS_DWARF2_DEBUG_VIEW, 1,
5502 [Define if your assembler supports views in dwarf2 .loc directives.])])
5503 fi
5504 fi
5505
5506 gcc_GAS_CHECK_FEATURE([--gdwarf2 option],
5507 gcc_cv_as_gdwarf2_flag,
5508 [--gdwarf2], [$insn],,
5509 [AC_DEFINE(HAVE_AS_GDWARF2_DEBUG_FLAG, 1,
5510 [Define if your assembler supports the --gdwarf2 option.])])
5511
5512 gcc_GAS_CHECK_FEATURE([--gdwarf-5 option],
5513 gcc_cv_as_gdwarf_5_flag,
5514 [--gdwarf-5], [$insn],
5515 [if test x$gcc_cv_objdump != x \
5516 && $gcc_cv_objdump -Wi conftest.o 2>&1 \
5517 | grep DW_TAG_compile_unit > /dev/null 2>&1; then
5518 gcc_cv_as_gdwarf_5_flag=yes;
5519 fi],[AC_DEFINE(HAVE_AS_GDWARF_5_DEBUG_FLAG, 1,
5520 [Define if your assembler supports the --gdwarf-5 option.])])
5521
5522 case $target_os in
5523 win32 | pe | cygwin* | mingw32*)
5524 section_flags=\"dr\"
5525 function_type=".def foo; .scl 2; .type 32; .endef"
5526 function_size="";;
5527 *)
5528 section_flags=\"\",%progbits
5529 function_type=".type foo, %function"
5530 function_size=".size foo, .-foo";;
5531 esac
5532 dwarf4_debug_info_size=0x46
5533 dwarf4_high_pc_form=7
5534 dwarf4_debug_aranges_size=0x2c
5535 dwarf4_line_sz=9
5536 for dwarf4_addr_size in 8 4; do
5537 conftest_s="\
5538 .file \"a.c\"
5539 .text
5540 .Ltext0:
5541 .p2align 4
5542 .globl foo
5543 $function_type
5544 foo:
5545 .LFB0:
5546 .LM1:
5547 $insn
5548 .LM2:
5549 .LFE0:
5550 $function_size
5551 .Letext0:
5552 .section .debug_info,$section_flags
5553 .Ldebug_info0:
5554 .4byte $dwarf4_debug_info_size
5555 .2byte 0x4
5556 .4byte .Ldebug_abbrev0
5557 .byte 0x$dwarf4_addr_size
5558 .byte 0x1
5559 .ascii \"GNU C17\\0\"
5560 .byte 0xc
5561 .ascii \"a.c\\0\"
5562 .ascii \"/\\0\"
5563 .${dwarf4_addr_size}byte .Ltext0
5564 .${dwarf4_addr_size}byte .Letext0-.Ltext0
5565 .4byte .Ldebug_line0
5566 .byte 0x2
5567 .ascii \"foo\\0\"
5568 .byte 0x1
5569 .byte 0x2
5570 .byte 0x1
5571 .${dwarf4_addr_size}byte .LFB0
5572 .${dwarf4_addr_size}byte .LFE0-.LFB0
5573 .byte 0x1
5574 .byte 0x9c
5575 .byte 0
5576 .section .debug_abbrev,$section_flags
5577 .Ldebug_abbrev0:
5578 .byte 0x1
5579 .byte 0x11
5580 .byte 0x1
5581 .byte 0x25
5582 .byte 0x8
5583 .byte 0x13
5584 .byte 0xb
5585 .byte 0x3
5586 .byte 0x8
5587 .byte 0x1b
5588 .byte 0x8
5589 .byte 0x11
5590 .byte 0x1
5591 .byte 0x12
5592 .byte 0x$dwarf4_high_pc_form
5593 .byte 0x10
5594 .byte 0x17
5595 .byte 0
5596 .byte 0
5597 .byte 0x2
5598 .byte 0x2e
5599 .byte 0
5600 .byte 0x3f
5601 .byte 0x19
5602 .byte 0x3
5603 .byte 0x8
5604 .byte 0x3a
5605 .byte 0xb
5606 .byte 0x3b
5607 .byte 0xb
5608 .byte 0x39
5609 .byte 0xb
5610 .byte 0x11
5611 .byte 0x1
5612 .byte 0x12
5613 .byte 0x$dwarf4_high_pc_form
5614 .byte 0x40
5615 .byte 0x18
5616 .byte 0
5617 .byte 0
5618 .byte 0
5619 .section .debug_aranges,$section_flags
5620 .4byte $dwarf4_debug_aranges_size
5621 .2byte 0x2
5622 .4byte .Ldebug_info0
5623 .byte 0x8
5624 .byte 0
5625 .2byte 0
5626 .2byte 0
5627 .${dwarf4_addr_size}byte .Ltext0
5628 .${dwarf4_addr_size}byte .Letext0-.Ltext0
5629 .${dwarf4_addr_size}byte 0
5630 .${dwarf4_addr_size}byte 0
5631 .section .debug_line,$section_flags
5632 .Ldebug_line0:
5633 .4byte .LELT0-.LSLT0
5634 .LSLT0:
5635 .2byte 0x4
5636 .4byte .LELTP0-.LASLTP0
5637 .LASLTP0:
5638 .byte 0x1
5639 .byte 0x1
5640 .byte 0x1
5641 .byte 0xf6
5642 .byte 0xf2
5643 .byte 0xd
5644 .byte 0
5645 .byte 0x1
5646 .byte 0x1
5647 .byte 0x1
5648 .byte 0x1
5649 .byte 0
5650 .byte 0
5651 .byte 0
5652 .byte 0x1
5653 .byte 0
5654 .byte 0
5655 .byte 0x1
5656 .byte 0
5657 .ascii \"a.c\\0\"
5658 .byte 0
5659 .byte 0
5660 .byte 0
5661 .byte 0
5662 .LELTP0:
5663 .byte 0
5664 .byte 0x$dwarf4_line_sz
5665 .byte 0x2
5666 .${dwarf4_addr_size}byte .LM1
5667 .byte 0x18
5668 .byte 0x5
5669 .byte 0x1
5670 .byte 0
5671 .byte 0x$dwarf4_line_sz
5672 .byte 0x2
5673 .${dwarf4_addr_size}byte .LM2
5674 .byte 0x1
5675 .byte 0x5
5676 .byte 0x1
5677 .byte 0
5678 .byte 0x$dwarf4_line_sz
5679 .byte 0x2
5680 .${dwarf4_addr_size}byte .Letext0
5681 .byte 0
5682 .byte 0x1
5683 .byte 0x1
5684 .LELT0:
5685 .section .debug_str,$section_flags
5686 .ident \"GCC\"
5687 "
5688 dwarf4_success=no
5689 if test $dwarf4_addr_size = 4; then
5690 gcc_GAS_CHECK_FEATURE([assembly of compiler generated 32-bit .debug_line],
5691 gcc_cv_as_debug_line_32_flag,,
5692 [$conftest_s],,
5693 [dwarf4_success=yes])
5694 else
5695 gcc_GAS_CHECK_FEATURE([assembly of compiler generated 64-bit .debug_line],
5696 gcc_cv_as_debug_line_64_flag,,
5697 [$conftest_s],,
5698 [dwarf4_success=yes])
5699 fi
5700 if test $dwarf4_success = yes; then
5701 dwarf4_success=no
5702 gcc_GAS_CHECK_FEATURE([--gdwarf-4 not refusing compiler generated .debug_line],
5703 gcc_cv_as_dwarf_4_debug_line_flag,
5704 [--gdwarf-4], [$conftest_s],,
5705 [dwarf4_success=yes])
5706 break
5707 fi
5708 dwarf4_debug_info_size=0x36
5709 dwarf4_high_pc_form=6
5710 dwarf4_debug_aranges_size=0x1c
5711 dwarf4_line_sz=5
5712 done
5713
5714 if test $dwarf4_success = yes; then
5715 conftest_s="\
5716 .file \"foo.c\"
5717 .text
5718 bar:
5719 #APP
5720 # 82 \"xxx.h\" 1
5721 $insn
5722 # 0 \"\" 2
5723 #NO_APP
5724 $insn
5725 foo:
5726 .file 1 \"foo.c\"
5727 $insn
5728 .file 2 \"foo.h\"
5729 ret
5730 "
5731 dwarf4_success=no
5732 gcc_GAS_CHECK_FEATURE([--gdwarf-4 with the APP marker],
5733 gcc_cv_as_dwarf_4_app_flag,
5734 [--gdwarf-4], [$conftest_s],, [dwarf4_success=yes])
5735 fi
5736
5737 if test $dwarf4_success = yes; then
5738 conftest_s="\
5739 .text
5740 .globl foo
5741 $function_type
5742 foo:
5743 $insn
5744 $function_size
5745 .file 1 \"foo.c\"
5746 "
5747 gcc_GAS_CHECK_FEATURE([working --gdwarf-4/--gdwarf-5 for all sources],
5748 gcc_cv_as_working_gdwarf_n_flag,
5749 [--gdwarf-4],
5750 [$conftest_s],
5751 [changequote(,)dnl
5752 if test x$gcc_cv_objdump != x \
5753 && $gcc_cv_objdump -W conftest.o 2>&1 \
5754 | grep conftest.s > /dev/null 2>&1; then
5755 gcc_cv_as_working_gdwarf_n_flag=no
5756 else
5757 gcc_cv_as_working_gdwarf_n_flag=yes
5758 fi
5759 changequote([,])dnl])
5760 if test $gcc_cv_as_working_gdwarf_n_flag = yes; then
5761 AC_DEFINE(HAVE_AS_WORKING_DWARF_N_FLAG, 1,
5762 [Define if your assembler supports --gdwarf-4/--gdwarf-5 even with
5763 compiler generated .debug_line.])
5764 fi
5765 fi
5766
5767 gcc_GAS_CHECK_FEATURE([--debug-prefix-map option],
5768 gcc_cv_as_debug_prefix_map_flag,
5769 [--debug-prefix-map /a=/b], [$insn],,
5770 [AC_DEFINE(HAVE_AS_DEBUG_PREFIX_MAP, 1,
5771 [Define if your assembler supports the --debug-prefix-map option.])])
5772 fi
5773
5774 gcc_GAS_CHECK_FEATURE([compressed debug sections],
5775 gcc_cv_as_compress_debug,,,
5776 [# gas compiled without zlib cannot compress debug sections and warns
5777 # about it, but still exits successfully. So check for this, too.
5778 if $gcc_cv_as --compress-debug-sections -o conftest.o conftest.s 2>&1 | grep -i warning > /dev/null
5779 then
5780 gcc_cv_as_compress_debug=0
5781 elif $gcc_cv_as --compress-debug-sections=zlib -o conftest.o conftest.s > /dev/null 2>&1
5782 then
5783 gcc_cv_as_compress_debug=1
5784 gcc_cv_as_compress_debug_option="--compress-debug-sections"
5785 gcc_cv_as_no_compress_debug_option="--nocompress-debug-sections"
5786 # Since binutils 2.40, gas supports --compress-debug-sections=zstd.
5787 if $gcc_cv_as --compress-debug-sections=zstd -o conftest.o conftest.s > /dev/null 2>&1
5788 then
5789 gcc_cv_as_compress_debug=2
5790 fi
5791 else
5792 gcc_cv_as_compress_debug=0
5793 fi])
5794 AC_DEFINE_UNQUOTED(HAVE_AS_COMPRESS_DEBUG, $gcc_cv_as_compress_debug,
5795 [Define to the level of your assembler's compressed debug section support.])
5796 AC_DEFINE_UNQUOTED(AS_COMPRESS_DEBUG_OPTION, "$gcc_cv_as_compress_debug_option",
5797 [Define to the assembler option to enable compressed debug sections.])
5798 AC_DEFINE_UNQUOTED(AS_NO_COMPRESS_DEBUG_OPTION, "$gcc_cv_as_no_compress_debug_option",
5799 [Define to the assembler option to disable compressed debug sections.])
5800
5801 gcc_GAS_CHECK_FEATURE([.lcomm with alignment], gcc_cv_as_lcomm_with_alignment,,
5802 [.lcomm bar,4,16],,
5803 [AC_DEFINE(HAVE_GAS_LCOMM_WITH_ALIGNMENT, 1,
5804 [Define if your assembler supports .lcomm with an alignment field.])])
5805
5806 if test x$with_sysroot = x && test x$host = x$target \
5807 && test "$prefix" != "/usr" && test "x$prefix" != "x$local_prefix" \
5808 && test "$prefix" != "NONE"; then
5809 AC_DEFINE_UNQUOTED(PREFIX_INCLUDE_DIR, "$prefix/include",
5810 [Define to PREFIX/include if cpp should also search that directory.])
5811 fi
5812
5813 # Determine the version of glibc, if any, used on the target.
5814 AC_MSG_CHECKING([for target glibc version])
5815 AC_ARG_WITH([glibc-version],
5816 [AS_HELP_STRING([--with-glibc-version=M.N],
5817 [assume GCC used with glibc version M.N or later])], [
5818 if [echo "$with_glibc_version" | grep '^[0-9][0-9]*\.[0-9][0-9]*$']; then
5819 glibc_version_major=`echo "$with_glibc_version" | sed -e 's/\..*//'`
5820 glibc_version_minor=`echo "$with_glibc_version" | sed -e 's/.*\.//'`
5821 else
5822 AC_MSG_ERROR([option --with-glibc-version requires a version number M.N])
5823 fi], [
5824 glibc_version_major=0
5825 glibc_version_minor=0
5826 [if test -f $target_header_dir/features.h \
5827 && glibc_version_major_define=`$EGREP '^[ ]*#[ ]*define[ ]+__GLIBC__[ ]+[0-9]' $target_header_dir/features.h` \
5828 && glibc_version_minor_define=`$EGREP '^[ ]*#[ ]*define[ ]+__GLIBC_MINOR__[ ]+[0-9]' $target_header_dir/features.h`; then
5829 glibc_version_major=`echo "$glibc_version_major_define" | sed -e 's/.*__GLIBC__[ ]*//'`
5830 glibc_version_minor=`echo "$glibc_version_minor_define" | sed -e 's/.*__GLIBC_MINOR__[ ]*//'`
5831 fi]])
5832 AC_MSG_RESULT([$glibc_version_major.$glibc_version_minor])
5833 AC_DEFINE_UNQUOTED([TARGET_GLIBC_MAJOR], [$glibc_version_major],
5834 [GNU C Library major version number used on the target, or 0.])
5835 AC_DEFINE_UNQUOTED([TARGET_GLIBC_MINOR], [$glibc_version_minor],
5836 [GNU C Library minor version number used on the target, or 0.])
5837
5838 AC_ARG_ENABLE(gnu-unique-object,
5839 [AS_HELP_STRING([--enable-gnu-unique-object],
5840 [enable the use of the @gnu_unique_object ELF extension on glibc systems])],
5841 [case $enable_gnu_unique_object in
5842 yes | no) ;;
5843 *) AC_MSG_ERROR(['$enable_gnu_unique_object' is an invalid value for --enable-gnu-unique-object.
5844 Valid choices are 'yes' and 'no'.]) ;;
5845 esac],
5846 [gcc_GAS_CHECK_FEATURE([gnu_unique_object], gcc_cv_as_gnu_unique_object,,
5847 [.type foo, '$target_type_format_char'gnu_unique_object],,
5848 # We need to unquote above to to use the definition from config.gcc.
5849 # Also check for ld.so support, i.e. glibc 2.11 or higher.
5850 [GCC_GLIBC_VERSION_GTE_IFELSE([2], [11], [enable_gnu_unique_object=yes], )]
5851 )])
5852 if test x$enable_gnu_unique_object = xyes; then
5853 AC_DEFINE(HAVE_GAS_GNU_UNIQUE_OBJECT, 1,
5854 [Define if your assembler supports @gnu_unique_object.])
5855 fi
5856
5857 AC_CACHE_CHECK([assembler for tolerance to line number 0],
5858 [gcc_cv_as_line_zero],
5859 [gcc_cv_as_line_zero=no
5860 if test "x$gcc_cv_as" != x; then
5861 { echo '# 1 "test.s" 1'; echo '# 0 "" 2'; } > conftest.s
5862 if AC_TRY_COMMAND([$gcc_cv_as -o conftest.o conftest.s >&AS_MESSAGE_LOG_FD 2>conftest.out]) &&
5863 test "x`cat conftest.out`" = x
5864 then
5865 gcc_cv_as_line_zero=yes
5866 else
5867 echo "configure: failed program was" >&AS_MESSAGE_LOG_FD
5868 cat conftest.s >&AS_MESSAGE_LOG_FD
5869 echo "configure: error output was" >&AS_MESSAGE_LOG_FD
5870 cat conftest.out >&AS_MESSAGE_LOG_FD
5871 fi
5872 rm -f conftest.o conftest.s conftest.out
5873 fi])
5874 if test "x$gcc_cv_as_line_zero" = xyes; then
5875 AC_DEFINE([HAVE_AS_LINE_ZERO], 1,
5876 [Define if the assembler won't complain about a line such as # 0 "" 2.])
5877 fi
5878
5879 AC_MSG_CHECKING(support for thin archives)
5880 thin_archive_support=no
5881 echo 'int main (void) { return 0; }' > conftest.c
5882 if ($AR --version | sed 1q | grep "GNU ar" \
5883 && $CC $CFLAGS -c conftest.c \
5884 && $AR rcT conftest.a conftest.o \
5885 && $CC $CFLAGS $LDFLAGS -o conftest conftest.a) >/dev/null 2>&1; then
5886 thin_archive_support=yes
5887 fi
5888 rm -f conftest.c conftest.o conftest.a conftest
5889 AC_MSG_RESULT($thin_archive_support)
5890 AC_SUBST(thin_archive_support)
5891
5892 AC_MSG_CHECKING(linker PT_GNU_EH_FRAME support)
5893 gcc_cv_ld_eh_frame_hdr=no
5894 if test $in_tree_ld = yes ; then
5895 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 \
5896 && test $in_tree_ld_is_elf = yes; then
5897 gcc_cv_ld_eh_frame_hdr=yes
5898 fi
5899 elif test x$gcc_cv_ld != x; then
5900 if echo "$ld_ver" | grep GNU > /dev/null; then
5901 # Check if linker supports --eh-frame-hdr option
5902 if $gcc_cv_ld --help 2>&1 | grep eh-frame-hdr > /dev/null; then
5903 gcc_cv_ld_eh_frame_hdr=yes
5904 fi
5905 else
5906 case "$target" in
5907 *-*-solaris2*)
5908 # Sun ld has various bugs in .eh_frame_hdr support before version 1.2251.
5909 if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2251; then
5910 gcc_cv_ld_eh_frame_hdr=yes
5911 fi
5912 ;;
5913 esac
5914 fi
5915 fi
5916 GCC_TARGET_TEMPLATE([HAVE_LD_EH_FRAME_HDR])
5917 if test x"$gcc_cv_ld_eh_frame_hdr" = xyes; then
5918 AC_DEFINE(HAVE_LD_EH_FRAME_HDR, 1,
5919 [Define if your linker supports .eh_frame_hdr.])
5920 fi
5921 AC_MSG_RESULT($gcc_cv_ld_eh_frame_hdr)
5922
5923 AC_MSG_CHECKING(linker CIEv3 in .eh_frame support)
5924 gcc_cv_ld_eh_frame_ciev3=no
5925 if test $in_tree_ld = yes ; then
5926 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 \
5927 && test $in_tree_ld_is_elf = yes; then
5928 gcc_cv_ld_eh_frame_ciev3=yes
5929 fi
5930 elif test x$gcc_cv_ld != x; then
5931 if echo "$ld_ver" | grep GNU > /dev/null; then
5932 gcc_cv_ld_eh_frame_ciev3=yes
5933 if test 0"$ld_date" -lt 20040513; then
5934 if test -n "$ld_date"; then
5935 # If there was date string, but was earlier than 2004-05-13, fail
5936 gcc_cv_ld_eh_frame_ciev3=no
5937 elif test "$ld_vers_major" -lt 2; then
5938 gcc_cv_ld_eh_frame_ciev3=no
5939 elif test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 16; then
5940 gcc_cv_ld_eh_frame_ciev3=no
5941 fi
5942 fi
5943 else
5944 case "$target" in
5945 *-*-solaris2*)
5946 # Sun ld added support for CIE v3 in .eh_frame in Solaris 11.1.
5947 if test "$ld_vers_major" -gt 1 || test "$ld_vers_minor" -ge 2324; then
5948 gcc_cv_ld_eh_frame_ciev3=yes
5949 fi
5950 ;;
5951 esac
5952 fi
5953 fi
5954 AC_DEFINE_UNQUOTED(HAVE_LD_EH_FRAME_CIEV3,
5955 [`if test x"$gcc_cv_ld_eh_frame_ciev3" = xyes; then echo 1; else echo 0; fi`],
5956 [Define 0/1 if your linker supports CIE v3 in .eh_frame.])
5957 AC_MSG_RESULT($gcc_cv_ld_eh_frame_ciev3)
5958
5959 AC_MSG_CHECKING(linker position independent executable support)
5960 gcc_cv_ld_pie=no
5961 if test $in_tree_ld = yes ; then
5962 case "$target" in
5963 # Full PIE support on Solaris was only introduced in gld 2.26.
5964 *-*-solaris2*) gcc_gld_pie_min_version=26 ;;
5965 *) gcc_gld_pie_min_version=15 ;;
5966 esac
5967 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge "$gcc_gld_pie_min_version" -o "$gcc_cv_gld_major_version" -gt 2 \
5968 && test $in_tree_ld_is_elf = yes; then
5969 gcc_cv_ld_pie=yes
5970 fi
5971 elif test x$gcc_cv_ld != x; then
5972 # Check if linker supports -pie option
5973 if $gcc_cv_ld --help 2>&1 | grep -- -pie > /dev/null; then
5974 gcc_cv_ld_pie=yes
5975 case "$target" in
5976 *-*-solaris2*)
5977 if echo "$ld_ver" | grep GNU > /dev/null \
5978 && test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -lt 26; then
5979 gcc_cv_ld_pie=no
5980 fi
5981 ;;
5982 esac
5983 else
5984 case "$target" in
5985 *-*-solaris2.1[[1-9]]*)
5986 # Solaris 11.3 added PIE support.
5987 if $gcc_cv_ld -z help 2>&1 | grep -- type.*pie > /dev/null; then
5988 gcc_cv_ld_pie=yes
5989 fi
5990 ;;
5991 esac
5992 fi
5993 fi
5994 if test x"$gcc_cv_ld_pie" = xyes; then
5995 AC_DEFINE(HAVE_LD_PIE, 1,
5996 [Define if your linker supports PIE option.])
5997 fi
5998 AC_MSG_RESULT($gcc_cv_ld_pie)
5999
6000 AC_MSG_CHECKING(linker PIE support with copy reloc)
6001 gcc_cv_ld_pie_copyreloc=no
6002 if test $gcc_cv_ld_pie = yes ; then
6003 if test $in_tree_ld = yes ; then
6004 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
6005 gcc_cv_ld_pie_copyreloc=yes
6006 fi
6007 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6008 # Check if linker supports -pie option with copy reloc
6009 case "$target" in
6010 i?86-*-linux* | x86_64-*-linux*)
6011 cat > conftest1.s <<EOF
6012 .globl a_glob
6013 .data
6014 .type a_glob, @object
6015 .size a_glob, 4
6016 a_glob:
6017 .long 2
6018 EOF
6019 cat > conftest2.s <<EOF
6020 .text
6021 .globl main
6022 .type main, @function
6023 main:
6024 movl %eax, a_glob(%rip)
6025 .size main, .-main
6026 .globl ptr
6027 .section .data.rel,"aw",@progbits
6028 .type ptr, @object
6029 ptr:
6030 .quad a_glob
6031 EOF
6032 if $gcc_cv_as --64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6033 && $gcc_cv_ld -shared -melf_x86_64 -o conftest1.so conftest1.o > /dev/null 2>&1 \
6034 && $gcc_cv_as --64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
6035 && $gcc_cv_ld -pie -melf_x86_64 -o conftest conftest2.o conftest1.so > /dev/null 2>&1; then
6036 gcc_cv_ld_pie_copyreloc=yes
6037 fi
6038 rm -f conftest conftest1.so conftest1.o conftest2.o conftest1.s conftest2.s
6039 ;;
6040 esac
6041 fi
6042 fi
6043 AC_DEFINE_UNQUOTED(HAVE_LD_PIE_COPYRELOC,
6044 [`if test x"$gcc_cv_ld_pie_copyreloc" = xyes; then echo 1; else echo 0; fi`],
6045 [Define 0/1 if your linker supports -pie option with copy reloc.])
6046 AC_MSG_RESULT($gcc_cv_ld_pie_copyreloc)
6047
6048 AC_MSG_CHECKING(linker EH-compatible garbage collection of sections)
6049 gcc_cv_ld_eh_gc_sections=no
6050 if test $in_tree_ld = yes ; then
6051 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 \
6052 && test $in_tree_ld_is_elf = yes; then
6053 gcc_cv_ld_eh_gc_sections=yes
6054 fi
6055 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x ; then
6056 cat > conftest.s <<EOF
6057 .section .text
6058 .globl _start
6059 .type _start, @function
6060 _start:
6061 .long foo
6062 .size _start, .-_start
6063 .section .text.foo,"ax",@progbits
6064 .type foo, @function
6065 foo:
6066 .long 0
6067 .size foo, .-foo
6068 .section .gcc_except_table.foo,"a",@progbits
6069 .L0:
6070 .long 0
6071 .section .eh_frame,"a",@progbits
6072 .long .L0
6073 EOF
6074 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6075 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6076 | grep "gc-sections option ignored" > /dev/null; then
6077 gcc_cv_ld_eh_gc_sections=no
6078 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6079 | grep gcc_except_table > /dev/null; then
6080 gcc_cv_ld_eh_gc_sections=yes
6081 # If no COMDAT groups, the compiler will emit .gnu.linkonce.t. sections.
6082 if test x$gcc_cv_as_comdat_group != xyes; then
6083 gcc_cv_ld_eh_gc_sections=no
6084 cat > conftest.s <<EOF
6085 .section .text
6086 .globl _start
6087 .type _start, @function
6088 _start:
6089 .long foo
6090 .size _start, .-_start
6091 .section .gnu.linkonce.t.foo,"ax",@progbits
6092 .type foo, @function
6093 foo:
6094 .long 0
6095 .size foo, .-foo
6096 .section .gcc_except_table.foo,"a",@progbits
6097 .L0:
6098 .long 0
6099 .section .eh_frame,"a",@progbits
6100 .long .L0
6101 EOF
6102 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6103 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6104 | grep "gc-sections option ignored" > /dev/null; then
6105 gcc_cv_ld_eh_gc_sections=no
6106 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6107 | grep gcc_except_table > /dev/null; then
6108 gcc_cv_ld_eh_gc_sections=yes
6109 fi
6110 fi
6111 fi
6112 fi
6113 fi
6114 rm -f conftest.s conftest.o conftest
6115 fi
6116 case "$target" in
6117 hppa*-*-linux*)
6118 # ??? This apparently exposes a binutils bug with PC-relative relocations.
6119 gcc_cv_ld_eh_gc_sections=no
6120 ;;
6121 esac
6122 if test x$gcc_cv_ld_eh_gc_sections = xyes; then
6123 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS, 1,
6124 [Define if your linker supports garbage collection of
6125 sections in presence of EH frames.])
6126 fi
6127 AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections)
6128
6129 AC_MSG_CHECKING(linker EH garbage collection of sections bug)
6130 gcc_cv_ld_eh_gc_sections_bug=no
6131 if test $in_tree_ld = yes ; then
6132 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -lt 19 -o "$gcc_cv_gld_major_version" -lt 2 \
6133 && test $in_tree_ld_is_elf = yes; then
6134 gcc_cv_ld_eh_gc_sections_bug=yes
6135 fi
6136 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_objdump != x -a x$gcc_cv_as_comdat_group = xyes; then
6137 gcc_cv_ld_eh_gc_sections_bug=yes
6138 cat > conftest.s <<EOF
6139 .section .text
6140 .globl _start
6141 .type _start, @function
6142 _start:
6143 .long foo
6144 .size _start, .-_start
6145 .section .text.startup.foo,"ax",@progbits
6146 .type foo, @function
6147 foo:
6148 .long 0
6149 .size foo, .-foo
6150 .section .gcc_except_table.foo,"a",@progbits
6151 .L0:
6152 .long 0
6153 .section .eh_frame,"a",@progbits
6154 .long .L0
6155 EOF
6156 if $gcc_cv_as -o conftest.o conftest.s > /dev/null 2>&1; then
6157 if $gcc_cv_ld -o conftest conftest.o --entry=_start --gc-sections 2>&1 \
6158 | grep "gc-sections option ignored" > /dev/null; then
6159 :
6160 elif $gcc_cv_objdump -h conftest 2> /dev/null \
6161 | grep gcc_except_table > /dev/null; then
6162 gcc_cv_ld_eh_gc_sections_bug=no
6163 fi
6164 fi
6165 rm -f conftest.s conftest.o conftest
6166 fi
6167 if test x$gcc_cv_ld_eh_gc_sections_bug = xyes; then
6168 AC_DEFINE(HAVE_LD_EH_GC_SECTIONS_BUG, 1,
6169 [Define if your linker has buggy garbage collection of
6170 sections support when .text.startup.foo like sections are used.])
6171 fi
6172 AC_MSG_RESULT($gcc_cv_ld_eh_gc_sections_bug)
6173
6174 AC_MSG_CHECKING(linker for compressed debug sections)
6175 # GNU ld/gold support --compressed-debug-sections=zlib since binutils 2.26.
6176 if $gcc_cv_ld --help 2>&1 | grep -- '--compress-debug-sections.*\<zlib-gabi\>' > /dev/null; then
6177 gcc_cv_ld_compress_debug=1
6178 gcc_cv_ld_compress_debug_option="--compress-debug-sections"
6179 # Detect zstd debug section compression support
6180 if $gcc_cv_ld --help 2>&1 | grep -- '--compress-debug-sections.*\<zstd\>' > /dev/null; then
6181 gcc_cv_ld_compress_debug=2
6182 fi
6183 else
6184 changequote(,)dnl
6185 case "${target}" in
6186 *-*-solaris2*)
6187 # Introduced in Solaris 11.2.
6188 if $gcc_cv_ld --help 2>&1 | grep -- '-z compress-sections' > /dev/null; then
6189 gcc_cv_ld_compress_debug=1
6190 gcc_cv_ld_compress_debug_option="-z compress-sections"
6191 else
6192 gcc_cv_ld_compress_debug=0
6193 fi
6194 ;;
6195 *)
6196 # Assume linkers other than GNU ld don't support compessed debug
6197 # sections.
6198 gcc_cv_ld_compress_debug=0
6199 ;;
6200 esac
6201 changequote([,])dnl
6202 fi
6203 AC_DEFINE_UNQUOTED(HAVE_LD_COMPRESS_DEBUG, $gcc_cv_ld_compress_debug,
6204 [Define to the level of your linker's compressed debug section support.])
6205 AC_DEFINE_UNQUOTED(LD_COMPRESS_DEBUG_OPTION, "$gcc_cv_ld_compress_debug_option",
6206 [Define to the linker option to enable compressed debug sections.])
6207 AC_MSG_RESULT($gcc_cv_ld_compress_debug)
6208
6209 if test x"$ld64_flag" = x"yes"; then
6210
6211 # Set defaults for possibly untestable items.
6212 gcc_cv_ld64_export_dynamic=0
6213 gcc_cv_ld64_platform_version=0
6214
6215 if test "$build" = "$host"; then
6216 darwin_try_test=1
6217 else
6218 darwin_try_test=0
6219 fi
6220
6221 # On Darwin, because of FAT library support, it is often possible to execute
6222 # exes from compatible archs even when the host differs from the build system.
6223 case "$build","$host" in
6224 x86_64-*-darwin*,i?86-*-darwin* | powerpc64*-*-darwin*,powerpc*-*-darwin*)
6225 darwin_try_test=1;;
6226 *) ;;
6227 esac
6228
6229 # If the configurer specified a minimum ld64 version to be supported, then use
6230 # that to determine feature support.
6231 if test x"${gcc_cv_ld64_version}" != x; then
6232 AC_MSG_CHECKING(ld64 specified version)
6233 gcc_cv_ld64_major=`echo "$gcc_cv_ld64_version" | sed -e 's/\..*//'`
6234 AC_MSG_RESULT($gcc_cv_ld64_major)
6235 if test "$gcc_cv_ld64_major" -ge 236; then
6236 gcc_cv_ld64_export_dynamic=1
6237 fi
6238 if test "$gcc_cv_ld64_major" -ge 512; then
6239 gcc_cv_ld64_platform_version=1
6240 fi
6241 elif test -x "$gcc_cv_ld" -a "$darwin_try_test" -eq 1; then
6242 # If the version was not specified, try to find it.
6243 AC_MSG_CHECKING(linker version)
6244 if test x"${gcc_cv_ld64_version}" = x; then
6245 gcc_cv_ld64_version=`$gcc_cv_ld -v 2>&1 | grep ld64 | sed s/.*ld64-// | awk '{print $1}'`
6246 fi
6247 AC_MSG_RESULT($gcc_cv_ld64_version)
6248
6249 AC_MSG_CHECKING(linker for -export_dynamic support)
6250 gcc_cv_ld64_export_dynamic=1
6251 if $gcc_cv_ld -export_dynamic < /dev/null 2>&1 | grep 'unknown option' > /dev/null; then
6252 gcc_cv_ld64_export_dynamic=0
6253 fi
6254 AC_MSG_RESULT($gcc_cv_ld64_export_dynamic)
6255
6256 AC_MSG_CHECKING(linker for -platform_version support)
6257 gcc_cv_ld64_platform_version=1
6258 if $gcc_cv_ld -platform_version macos 10.5 0.0 < /dev/null 2>&1 | grep 'unknown option' > /dev/null; then
6259 gcc_cv_ld64_platform_version=0
6260 fi
6261 AC_MSG_RESULT($gcc_cv_ld64_platform_version)
6262 fi
6263
6264 if test x"${gcc_cv_ld64_version}" != x; then
6265 AC_DEFINE_UNQUOTED(LD64_VERSION, "${gcc_cv_ld64_version}",
6266 [Define to ld64 version.])
6267 fi
6268
6269 AC_DEFINE_UNQUOTED(LD64_HAS_EXPORT_DYNAMIC, $gcc_cv_ld64_export_dynamic,
6270 [Define to 1 if ld64 supports '-export_dynamic'.])
6271
6272 AC_DEFINE_UNQUOTED(LD64_HAS_PLATFORM_VERSION, $gcc_cv_ld64_platform_version,
6273 [Define to 1 if ld64 supports '-platform_version'.])
6274 fi
6275
6276 if test x"$dsymutil_flag" = x"yes"; then
6277
6278 # If the user specified a dsymutil path, then we will already have the
6279 # version string, otherwise, pick it up.
6280 if test x"$gcc_cv_dsymutil" = x; then
6281 AC_MSG_WARN([dsymutil is a required tool for this system, but not found])
6282 dsymutil_vers="tool unspecified"
6283 elif test x"$dsymutil_vers" = x; then
6284 dsymutil_vers=`$gcc_cv_dsymutil -v /dev/null 2>&1`
6285 fi
6286
6287 dsymutil_temp=`echo $dsymutil_vers | sed 1q`
6288 AC_MSG_CHECKING(dsymutil version "$dsymutil_temp")
6289 if echo $dsymutil_temp | grep dwarfutils- > /dev/null; then
6290 dsymutil_kind=DWARFUTILS
6291 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*dwarfutils-\([[0-9\.]]*\).*/\1/'`
6292 elif echo $dsymutil_temp | grep clang- > /dev/null; then
6293 dsymutil_kind=CLANG
6294 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*clang-\([[0-9\.]]*\).*/\1/'`
6295 elif echo $dsymutil_temp | grep 'LLVM version ' > /dev/null; then
6296 dsymutil_kind=LLVM
6297 dsymutil_vers=`echo $dsymutil_temp | sed 's/.*LLVM\ version\ \([[0-9\.]]*\).*/\1/'`
6298 else
6299 dsymutil_kind=UNKNOWN
6300 dsymutil_vers="0.0"
6301 fi
6302 dsymutil_major=`expr "$dsymutil_vers" : '\([[0-9]]*\)'`
6303 dsymutil_minor=`expr "$dsymutil_vers" : '[[0-9]]*\.\([[0-9]]*\)'`
6304 dsymutil_tiny=`expr "$dsymutil_vers" : '[[0-9]]*\.[[0-9]]*\.\([[0-9]]*\)'`
6305 if test x"${dsymutil_minor}" = x; then
6306 dsymutil_minor=0
6307 fi
6308 if test x"${dsymutil_tiny}" = x; then
6309 dsymutil_tiny=0
6310 fi
6311 AC_DEFINE_UNQUOTED(DSYMUTIL_VERSION, [$dsymutil_kind,${dsymutil_major},${dsymutil_minor},${dsymutil_tiny}],
6312 [Define to the dsymutil version.])
6313 AC_MSG_RESULT($dsymutil_vers : $dsymutil_kind ${dsymutil_major} ${dsymutil_minor} ${dsymutil_tiny} )
6314 fi
6315
6316 case $target_os in
6317 win32 | pe | cygwin* | mingw32*)
6318 AC_MSG_CHECKING(broken PE linker dwarf5 support)
6319 gcc_cv_ld_broken_pe_dwarf5=yes
6320 if test $in_tree_ld = yes ; then
6321 if grep -q '\.debug_loclists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6322 $gcc_cv_ld_gld_srcdir/scripttempl/pe*.sc \
6323 && grep -q '\.debug_rnglists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6324 $gcc_cv_ld_gld_srcdir/scripttempl/pe*.sc; then
6325 gcc_cv_ld_broken_pe_dwarf5=no
6326 fi
6327 else
6328 if $gcc_cv_ld --verbose 2>&1 | grep -q '\.debug_loclists.*BLOCK.*__section_alignment__.*NOLOAD.*:' \
6329 && $gcc_cv_ld --verbose 2>&1 | grep -q '\.debug_rnglists.*BLOCK.*__section_alignment__.*NOLOAD.*:'; then
6330 gcc_cv_ld_broken_pe_dwarf5=no
6331 fi
6332 fi
6333 if test x$gcc_cv_ld_broken_pe_dwarf5 = xyes; then
6334 AC_DEFINE(HAVE_LD_BROKEN_PE_DWARF5, 1,
6335 [Define if the PE linker has broken DWARF 5 support.])
6336 fi
6337 AC_MSG_RESULT($gcc_cv_ld_broken_pe_dwarf5)
6338
6339 AC_MSG_CHECKING(PE linker --disable-dynamicbase support)
6340 gcc_cv_ld_disable_dynamicbase=no
6341 if test $in_tree_ld = yes; then
6342 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 36 -o "$gcc_cv_gld_major_version" -gt 2; then \
6343 gcc_cv_ld_disable_dynamicbase=yes
6344 fi
6345 else
6346 if $gcc_cv_ld --help 2>&1 | grep -q 'disable\-]dynamicbase' > /dev/null; then
6347 gcc_cv_ld_disable_dynamicbase=yes
6348 fi
6349 fi
6350 if test x"$gcc_cv_ld_disable_dynamicbase" = xyes; then
6351 AC_DEFINE(HAVE_LD_PE_DISABLE_DYNAMICBASE, 1,
6352 [Define if the PE linker supports --disable-dynamicbase option.])
6353 fi
6354 AC_MSG_RESULT($gcc_cv_ld_disable_dynamicbase)
6355 ;;
6356 esac
6357
6358 # --------
6359 # UNSORTED
6360 # --------
6361
6362 AC_CACHE_CHECK(linker --as-needed support,
6363 gcc_cv_ld_as_needed,
6364 [gcc_cv_ld_as_needed=no
6365 gcc_cv_ld_as_needed_option='--as-needed'
6366 gcc_cv_ld_no_as_needed_option='--no-as-needed'
6367 if test $in_tree_ld = yes ; then
6368 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 \
6369 && test $in_tree_ld_is_elf = yes; then
6370 gcc_cv_ld_as_needed=yes
6371 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 28; then
6372 gcc_cv_ld_as_needed_option='--push-state --as-needed'
6373 gcc_cv_ld_no_as_needed_option='--pop-state'
6374 fi
6375 fi
6376 elif test x$gcc_cv_ld != x; then
6377 # Check if linker supports --as-needed and --no-as-needed options
6378 if $gcc_cv_ld --help 2>&1 | grep as-needed > /dev/null; then
6379 gcc_cv_ld_as_needed=yes
6380 if $gcc_cv_ld --help 2>&1 | grep push-state > /dev/null \
6381 && $gcc_cv_ld --help 2>&1 | grep pop-state > /dev/null \
6382 && echo "$ld_ver" | grep GNU > /dev/null \
6383 && test "$ld_vers_major" -eq 2 -a "$ld_vers_minor" -ge 28; then
6384 # Use these options only when both ld.bfd and ld.gold support
6385 # --push-state/--pop-state, which unfortunately wasn't added
6386 # at the same time.
6387 gcc_cv_ld_as_needed_option='--push-state --as-needed'
6388 gcc_cv_ld_no_as_needed_option='--pop-state'
6389 fi
6390 fi
6391 case "$target:$gnu_ld" in
6392 *-*-solaris2*:no)
6393 # Solaris 2 ld always supports -z ignore/-z record. Prefer the native
6394 # forms.
6395 gcc_cv_ld_as_needed=yes
6396 gcc_cv_ld_as_needed_option="-z ignore"
6397 gcc_cv_ld_no_as_needed_option="-z record"
6398 ;;
6399 esac
6400 fi
6401 # --as-needed/-z ignore can only be used if libgcc_s.so.1 uses
6402 # dl_iterate_phdr, i.e. since Solaris 11.
6403 case "$target" in
6404 *-*-solaris2.1[[1-9]]*)
6405 case "$target" in
6406 i?86-*-* | x86_64-*-*)
6407 if echo "$ld_ver" | grep GNU > /dev/null; then
6408 # Doesn't work with gld on Solaris/x86 due to PR ld/12320.
6409 gcc_cv_ld_as_needed=no
6410 fi
6411 ;;
6412 esac
6413 ;;
6414 *-*-solaris2*)
6415 gcc_cv_ld_as_needed=no
6416 ;;
6417 esac
6418 ])
6419 if test x"$gcc_cv_ld_as_needed" = xyes; then
6420 AC_DEFINE(HAVE_LD_AS_NEEDED, 1,
6421 [Define if your linker supports --as-needed/--no-as-needed or equivalent options.])
6422 AC_DEFINE_UNQUOTED(LD_AS_NEEDED_OPTION, "$gcc_cv_ld_as_needed_option",
6423 [Define to the linker option to ignore unused dependencies.])
6424 AC_DEFINE_UNQUOTED(LD_NO_AS_NEEDED_OPTION, "$gcc_cv_ld_no_as_needed_option",
6425 [Define to the linker option to keep unused dependencies.])
6426 fi
6427
6428 AC_MSG_CHECKING(linker mapfile support for clearing hardware capabilities)
6429 saved_LDFLAGS="$LDFLAGS"
6430 for clearcap_map in sol2-clearcapv2.map sol2-clearcap.map; do
6431 LDFLAGS="$saved_LDFLAGS -Wl,-M,${srcdir}/config/$clearcap_map"
6432 AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
6433 [gcc_cv_ld_clearcap=yes; break], [gcc_cv_ld_clearcap=no])
6434 done
6435 LDFLAGS="$saved_LDFLAGS"
6436 if test "x$gcc_cv_ld_clearcap" = xyes; then
6437 AC_DEFINE([HAVE_LD_CLEARCAP], 1,
6438 [Define if the linker supports clearing hardware capabilities via mapfile.])
6439 AC_CONFIG_LINKS([clearcap.map:${srcdir}/config/$clearcap_map])
6440 fi
6441 AC_MSG_RESULT($gcc_cv_ld_clearcap)
6442
6443 case "$target" in
6444 powerpc*-*-*)
6445 case "$target" in
6446 *le-*-linux*)
6447 emul_name="-melf32lppc"
6448 ;;
6449 *)
6450 emul_name="-melf32ppc"
6451 ;;
6452 esac
6453 AC_CACHE_CHECK(linker .gnu.attributes long double support,
6454 gcc_cv_ld_ppc_attr,
6455 [gcc_cv_ld_ppc_attr=no
6456 if test x"$ld_is_gold" = xyes; then
6457 gcc_cv_ld_ppc_attr=yes
6458 elif test $in_tree_ld = yes ; then
6459 if test "$gcc_cv_gld_major_version" -eq 2 \
6460 -a "$gcc_cv_gld_minor_version" -ge 28 \
6461 -o "$gcc_cv_gld_major_version" -gt 2; then
6462 gcc_cv_ld_ppc_attr=yes
6463 fi
6464 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6465 # check that merging the long double .gnu_attribute doesn't warn
6466 cat > conftest1.s <<EOF
6467 .gnu_attribute 4,1
6468 EOF
6469 cat > conftest2.s <<EOF
6470 .gnu_attribute 4,9
6471 EOF
6472 if $gcc_cv_as -a32 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6473 && $gcc_cv_as -a32 -o conftest2.o conftest2.s > /dev/null 2>&1 \
6474 && $gcc_cv_ld $emul_name -r -o conftest.o conftest1.o conftest2.o > /dev/null 2> conftest.err \
6475 && test ! -s conftest.err; then
6476 gcc_cv_ld_ppc_attr=yes
6477 fi
6478 rm -f conftest.err conftest.o conftest1.o conftest2.o conftest1.s conftest2.s
6479 fi
6480 ])
6481 if test x$gcc_cv_ld_ppc_attr = xyes; then
6482 AC_DEFINE(HAVE_LD_PPC_GNU_ATTR_LONG_DOUBLE, 1,
6483 [Define if your PowerPC linker has .gnu.attributes long double support.])
6484 fi
6485 ;;
6486 esac
6487
6488 case "$target:$tm_file" in
6489 powerpc64*-*-freebsd* | powerpc64*-*-linux* | powerpc*-*-linux*rs6000/biarch64.h*)
6490 case "$target" in
6491 *le-*-linux*)
6492 emul_name="-melf64lppc"
6493 ;;
6494 *-*-linux*)
6495 emul_name="-melf64ppc"
6496 ;;
6497 *le-*-freebsd*)
6498 emul_name="-melf64lppc_fbsd"
6499 ;;
6500 *-*-freebsd*)
6501 emul_name="-melf64ppc_fbsd"
6502 ;;
6503 esac
6504 AC_CACHE_CHECK(linker support for omitting dot symbols,
6505 gcc_cv_ld_no_dot_syms,
6506 [gcc_cv_ld_no_dot_syms=no
6507 if test x"$ld_is_gold" = xyes; then
6508 gcc_cv_ld_no_dot_syms=yes
6509 elif test $in_tree_ld = yes ; then
6510 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
6511 gcc_cv_ld_no_dot_syms=yes
6512 fi
6513 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6514 cat > conftest1.s <<EOF
6515 .text
6516 bl .foo
6517 EOF
6518 cat > conftest2.s <<EOF
6519 .section ".opd","aw"
6520 .align 3
6521 .globl foo
6522 .type foo,@function
6523 foo:
6524 .quad .LEfoo,.TOC.@tocbase,0
6525 .text
6526 .LEfoo:
6527 blr
6528 .size foo,.-.LEfoo
6529 EOF
6530 if $gcc_cv_as -a64 -o conftest1.o conftest1.s > /dev/null 2>&1 \
6531 && $gcc_cv_as -a64 -o conftest2.o conftest2.s > /dev/null 2>&1 \
6532 && $gcc_cv_ld $emul_name -o conftest conftest1.o conftest2.o > /dev/null 2>&1; then
6533 gcc_cv_ld_no_dot_syms=yes
6534 fi
6535 rm -f conftest conftest1.o conftest2.o conftest1.s conftest2.s
6536 fi
6537 ])
6538 if test x"$gcc_cv_ld_no_dot_syms" = xyes; then
6539 AC_DEFINE(HAVE_LD_NO_DOT_SYMS, 1,
6540 [Define if your PowerPC64 linker only needs function descriptor syms.])
6541 fi
6542
6543 AC_CACHE_CHECK(linker large toc support,
6544 gcc_cv_ld_large_toc,
6545 [gcc_cv_ld_large_toc=no
6546 if test x"$ld_is_gold" = xyes; then
6547 gcc_cv_ld_large_toc=yes
6548 elif test $in_tree_ld = yes ; then
6549 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 21 -o "$gcc_cv_gld_major_version" -gt 2; then
6550 gcc_cv_ld_large_toc=yes
6551 fi
6552 elif test x$gcc_cv_as != x -a x$gcc_cv_ld != x ; then
6553 cat > conftest.s <<EOF
6554 .section ".tbss","awT",@nobits
6555 .align 3
6556 ie0: .space 8
6557 .global _start
6558 .text
6559 _start:
6560 addis 9,13,ie0@got@tprel@ha
6561 ld 9,ie0@got@tprel@l(9)
6562 EOF
6563 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1 \
6564 && $gcc_cv_ld $emul_name --no-toc-sort -o conftest conftest.o > /dev/null 2>&1; then
6565 gcc_cv_ld_large_toc=yes
6566 fi
6567 rm -f conftest conftest.o conftest.s
6568 fi
6569 ])
6570 if test x"$gcc_cv_ld_large_toc" = xyes; then
6571 AC_DEFINE(HAVE_LD_LARGE_TOC, 1,
6572 [Define if your PowerPC64 linker supports a large TOC.])
6573 fi
6574
6575 AC_CACHE_CHECK(linker toc pointer alignment,
6576 gcc_cv_ld_toc_align,
6577 [if test x$gcc_cv_as != x -a x$gcc_cv_ld != x -a x$gcc_cv_nm != x; then
6578 cat > conftest.s <<EOF
6579 .global _start
6580 .text
6581 _start:
6582 addis 9,2,x@got@ha
6583 .section .data.rel.ro,"aw",@progbits
6584 .p2align 16
6585 .space 32768
6586 x: .quad .TOC.
6587 EOF
6588 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1 \
6589 && $gcc_cv_ld $emul_name -z norelro -o conftest conftest.o > /dev/null 2>&1; then
6590 gcc_cv_ld_toc_align=`$gcc_cv_nm conftest | ${AWK} '/\.TOC\./ { match ($0, "0[[[:xdigit:]]]*", a); print strtonum ("0x" substr(a[[0]], length(a[[0]])-3)) }'`
6591 fi
6592 rm -f conftest conftest.o conftest.s
6593 fi
6594 ])
6595 if test -n "$gcc_cv_ld_toc_align" && test $gcc_cv_ld_toc_align -gt 8; then
6596 AC_DEFINE_UNQUOTED(POWERPC64_TOC_POINTER_ALIGNMENT, $gcc_cv_ld_toc_align,
6597 [Define to .TOC. alignment forced by your linker.])
6598 fi
6599 ;;
6600 esac
6601
6602 case "$target" in
6603 *-*-aix*)
6604 AC_CACHE_CHECK(linker large toc support,
6605 gcc_cv_ld_large_toc,
6606 [gcc_cv_ld_large_toc=no
6607 if test x$gcc_cv_as != x ; then
6608 cat > conftest.s <<EOF
6609 .toc
6610 LC..1:
6611 .tc a[[TC]],a[[RW]]
6612 .extern a[[RW]]
6613 .csect .text[[PR]]
6614 .largetoctest:
6615 addis 9,LC..1@u(2)
6616 ld 3,LC..1@l(9)
6617 EOF
6618 if $gcc_cv_as -a64 -o conftest.o conftest.s > /dev/null 2>&1; then
6619 gcc_cv_ld_large_toc=yes
6620 fi
6621 rm -f conftest conftest.o conftest.s
6622 fi
6623 ])
6624 if test x"$gcc_cv_ld_large_toc" = xyes; then
6625 AC_DEFINE(HAVE_LD_LARGE_TOC, 1,
6626 [Define if your PowerPC64 linker supports a large TOC.])
6627 fi
6628 ;;
6629 esac
6630
6631 AC_CACHE_CHECK(linker --build-id support,
6632 gcc_cv_ld_buildid,
6633 [gcc_cv_ld_buildid=no
6634 if test $in_tree_ld = yes ; then
6635 if test "$gcc_cv_gld_major_version" -eq 2 -a \
6636 "$gcc_cv_gld_minor_version" -ge 18 -o \
6637 "$gcc_cv_gld_major_version" -gt 2 \
6638 && test $in_tree_ld_is_elf = yes; then
6639 gcc_cv_ld_buildid=yes
6640 fi
6641 elif test x$gcc_cv_ld != x; then
6642 if $gcc_cv_ld --help 2>&1 | grep build-id > /dev/null; then
6643 gcc_cv_ld_buildid=yes
6644 fi
6645 fi])
6646 if test x"$gcc_cv_ld_buildid" = xyes; then
6647 AC_DEFINE(HAVE_LD_BUILDID, 1,
6648 [Define if your linker supports --build-id.])
6649 fi
6650
6651 AC_ARG_ENABLE(linker-build-id,
6652 [AS_HELP_STRING([--enable-linker-build-id],
6653 [compiler will always pass --build-id to linker])],
6654 [],
6655 enable_linker_build_id=no)
6656
6657 if test x"$enable_linker_build_id" = xyes; then
6658 if test x"$gcc_cv_ld_buildid" = xyes; then
6659 AC_DEFINE(ENABLE_LD_BUILDID, 1,
6660 [Define if gcc should always pass --build-id to linker.])
6661 else
6662 AC_MSG_WARN(--build-id is not supported by your linker; --enable-linker-build-id ignored)
6663 fi
6664 fi
6665
6666 # In binutils 2.21, GNU ld gained support for new emulations fully
6667 # supporting the Solaris 2 ABI. Detect their presence in the linker used.
6668 AC_CACHE_CHECK(linker *_sol2 emulation support,
6669 gcc_cv_ld_sol2_emulation,
6670 [gcc_cv_ld_sol2_emulation=no
6671 if test $in_tree_ld = yes ; then
6672 if test "$gcc_cv_gld_major_version" -eq 2 -a \
6673 "$gcc_cv_gld_minor_version" -ge 21 -o \
6674 "$gcc_cv_gld_major_version" -gt 2 \
6675 && test $in_tree_ld_is_elf = yes; then
6676 gcc_cv_ld_sol2_emulation=yes
6677 fi
6678 elif test x$gcc_cv_ld != x; then
6679 if $gcc_cv_ld -V 2>/dev/null | sed -e '1,/Supported emulations/d;q' | \
6680 grep _sol2 > /dev/null; then
6681 gcc_cv_ld_sol2_emulation=yes
6682 fi
6683 fi])
6684 if test x"$gcc_cv_ld_sol2_emulation" = xyes; then
6685 AC_DEFINE(HAVE_LD_SOL2_EMULATION, 1,
6686 [Define if your linker supports the *_sol2 emulations.])
6687 fi
6688
6689 AC_CACHE_CHECK(linker --sysroot support,
6690 gcc_cv_ld_sysroot,
6691 [gcc_cv_ld_sysroot=no
6692 if test $in_tree_ld = yes ; then
6693 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
6694 gcc_cv_ld_sysroot=yes
6695 fi
6696 elif test x$gcc_cv_ld != x; then
6697 if $gcc_cv_ld --help 2>&1 | grep sysroot > /dev/null; then
6698 gcc_cv_ld_sysroot=yes
6699 fi
6700 fi])
6701 if test x"$gcc_cv_ld_sysroot" = xyes; then
6702 AC_DEFINE(HAVE_LD_SYSROOT, 1,
6703 [Define if your linker supports --sysroot.])
6704 fi
6705
6706 case $target in
6707 *-*-solaris2*)
6708 # Check for system-provided CRTs on Solaris 11.x and Solaris 12.
6709 AC_CACHE_CHECK([system-provided CRTs on Solaris],
6710 gcc_cv_solaris_crts,
6711 [gcc_cv_solaris_crts=no
6712 if test x$host != x$target; then
6713 if test "x$with_sysroot" = xyes; then
6714 target_sysroot="${test_exec_prefix}/${target_noncanonical}/sys-root"
6715 else
6716 target_sysroot="${with_sysroot}"
6717 fi
6718 fi
6719 target_libdir="$target_sysroot/usr/lib"
6720 # At the time they were added, gcrt1.o became a symlink for backwards
6721 # compatibility on x86, while crt1.o was added on sparc, so check for that.
6722 case $target in
6723 i?86-*-solaris2* | x86_64-*-solaris2*)
6724 if test -h "$target_libdir/gcrt1.o"; then gcc_cv_solaris_crts=yes; fi
6725 ;;
6726 sparc*-*-solaris2*)
6727 if test -f "$target_libdir/crt1.o"; then gcc_cv_solaris_crts=yes; fi
6728 ;;
6729 esac])
6730 ;;
6731 esac
6732 if test x$gcc_cv_solaris_crts = xyes; then
6733 AC_DEFINE(HAVE_SOLARIS_CRTS, 1,
6734 [Define if the system-provided CRTs are present on Solaris.])
6735 fi
6736
6737 AC_ARG_ENABLE(libssp,
6738 [AS_HELP_STRING([--enable-libssp], [enable linking against libssp])],
6739 [case "${enableval}" in
6740 yes|no)
6741 ;;
6742 *)
6743 AC_MSG_ERROR([unknown libssp setting $enableval])
6744 ;;
6745 esac], [])
6746
6747 # Test for stack protector support in target C library.
6748 AC_CACHE_CHECK(__stack_chk_fail in target C library,
6749 gcc_cv_libc_provides_ssp,
6750 [gcc_cv_libc_provides_ssp=no
6751 if test "x$enable_libssp" = "xno"; then
6752 gcc_cv_libc_provides_ssp=yes
6753 elif test "x$enable_libssp" = "xyes"; then
6754 gcc_cv_libc_provides_ssp=no
6755 else
6756 case "$target" in
6757 *-*-musl*)
6758 # All versions of musl provide stack protector
6759 gcc_cv_libc_provides_ssp=yes;;
6760 *-*-linux* | *-*-kfreebsd*-gnu)
6761 # glibc 2.4 and later provides __stack_chk_fail and
6762 # either __stack_chk_guard, or TLS access to stack guard canary.
6763 GCC_GLIBC_VERSION_GTE_IFELSE([2], [4], [gcc_cv_libc_provides_ssp=yes], [
6764 [if test -f $target_header_dir/features.h \
6765 && $EGREP '^[ ]*#[ ]*define[ ]+__GNU_LIBRARY__[ ]+([1-9][0-9]|[6-9])' \
6766 $target_header_dir/features.h > /dev/null; then
6767 if $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC__[ ]+1' \
6768 $target_header_dir/features.h > /dev/null && \
6769 test -f $target_header_dir/bits/uClibc_config.h && \
6770 $EGREP '^[ ]*#[ ]*define[ ]+__UCLIBC_HAS_SSP__[ ]+1' \
6771 $target_header_dir/bits/uClibc_config.h > /dev/null; then
6772 gcc_cv_libc_provides_ssp=yes
6773 fi
6774 # all versions of Bionic support stack protector
6775 elif test -f $target_header_dir/sys/cdefs.h \
6776 && $EGREP '^[ ]*#[ ]*define[ ]+__BIONIC__[ ]+1' \
6777 $target_header_dir/sys/cdefs.h > /dev/null; then
6778 gcc_cv_libc_provides_ssp=yes
6779 fi]])
6780 ;;
6781 *-*-gnu*)
6782 # Avoid complicated tests (see
6783 # <http://gcc.gnu.org/ml/gcc/2008-10/msg00130.html>) and for now
6784 # simply assert that glibc does provide this, which is true for all
6785 # realistically usable GNU/Hurd configurations.
6786 # All supported versions of musl provide it as well
6787 gcc_cv_libc_provides_ssp=yes;;
6788 *-*-darwin* | *-*-freebsd* | *-*-netbsd*)
6789 AC_CHECK_FUNC(__stack_chk_fail,[gcc_cv_libc_provides_ssp=yes],
6790 [echo "no __stack_chk_fail on this target"])
6791 ;;
6792 *) gcc_cv_libc_provides_ssp=no ;;
6793 esac
6794 fi])
6795
6796 if test x$gcc_cv_libc_provides_ssp = xyes; then
6797 AC_DEFINE(TARGET_LIBC_PROVIDES_SSP, 1,
6798 [Define if your target C library provides stack protector support])
6799 fi
6800
6801 # Check whether --enable-default-ssp was given.
6802 AC_ARG_ENABLE(default-ssp,
6803 [AS_HELP_STRING([--enable-default-ssp],
6804 [enable Stack Smashing Protection as default])],[
6805 if test x$gcc_cv_libc_provides_ssp = xyes; then
6806 case "$target" in
6807 ia64*-*-*) enable_default_ssp=no ;;
6808 *) enable_default_ssp=$enableval ;;
6809 esac
6810 else
6811 enable_default_ssp=no
6812 fi],
6813 enable_default_ssp=no)
6814 if test x$enable_default_ssp = xyes ; then
6815 AC_DEFINE(ENABLE_DEFAULT_SSP, 1,
6816 [Define if your target supports default stack protector and it is enabled.])
6817 fi
6818 AC_SUBST([enable_default_ssp])
6819
6820 # Test for <sys/sdt.h> on the target.
6821 GCC_TARGET_TEMPLATE([HAVE_SYS_SDT_H])
6822 AC_CACHE_CHECK([sys/sdt.h in the target C library], [gcc_cv_sys_sdt_h], [
6823 gcc_cv_sys_sdt_h=no
6824 if test -f $target_header_dir/sys/sdt.h; then
6825 gcc_cv_sys_sdt_h=yes
6826 fi
6827 ])
6828 AS_IF([test x$gcc_cv_sys_sdt_h = xyes], [
6829 AC_DEFINE([HAVE_SYS_SDT_H], [1],
6830 [Define if your target C library provides sys/sdt.h])
6831 ])
6832
6833 # Check if TFmode long double should be used by default or not.
6834 # Some glibc targets used DFmode long double, but with glibc 2.4
6835 # and later they can use TFmode.
6836 case "$target" in
6837 powerpc*-*-linux* | \
6838 sparc*-*-linux* | \
6839 s390*-*-linux* | \
6840 alpha*-*-linux*)
6841 AC_ARG_WITH(long-double-128,
6842 [AS_HELP_STRING([--with-long-double-128],
6843 [use 128-bit long double by default])],
6844 gcc_cv_target_ldbl128="$with_long_double_128", [
6845 case "$target" in
6846 s390*-*-linux-musl*)
6847 gcc_cv_target_ldbl128=yes
6848 ;;
6849 powerpc*-*-linux-musl*)
6850 gcc_cv_target_ldbl128=no
6851 ;;
6852 *)]
6853 [GCC_GLIBC_VERSION_GTE_IFELSE([2], [4], [gcc_cv_target_ldbl128=yes], [
6854 [gcc_cv_target_ldbl128=no
6855 grep '^[ ]*#[ ]*define[ ][ ]*__LONG_DOUBLE_MATH_OPTIONAL' \
6856 $target_header_dir/bits/wordsize.h > /dev/null 2>&1 \
6857 && gcc_cv_target_ldbl128=yes
6858 ]])]
6859 [
6860 ;;
6861 esac
6862 ])
6863 ;;
6864 esac
6865 if test x$gcc_cv_target_ldbl128 = xyes; then
6866 AC_DEFINE(TARGET_DEFAULT_LONG_DOUBLE_128, 1,
6867 [Define if TFmode long double should be the default])
6868 fi
6869
6870 # Check if TFmode long double target should use the IBM extended double or IEEE
6871 # 128-bit floating point formats if long doubles are 128-bits long. The long
6872 # double type can only be switched on powerpc64 bit Linux systems where VSX is
6873 # supported. Other PowerPC systems do not build the IEEE 128-bit emulator in
6874 # libgcc.
6875 AC_ARG_WITH([long-double-format],
6876 [AS_HELP_STRING([--with-long-double-format={ieee,ibm}]
6877 [Specify whether PowerPC long double uses IEEE or IBM format])],[
6878 case "$target:$with_long_double_format" in
6879 powerpc64le-*-linux*:ieee | powerpc64le-*-linux*:ibm)
6880 :
6881 ;;
6882 powerpc64-*-linux*:ieee | powerpc64-*-linux*:ibm)
6883 # IEEE 128-bit emulation is only built on 64-bit VSX Linux systems
6884 case "$with_cpu" in
6885 power7 | power8 | power9 | power1*)
6886 :
6887 ;;
6888 *)
6889 AC_MSG_ERROR([Configuration option --with-long-double-format is only \
6890 supported if the default cpu is power7 or newer])
6891 with_long_double_format=""
6892 ;;
6893 esac
6894 ;;
6895 powerpc64*-*-linux*:*)
6896 AC_MSG_ERROR([--with-long-double-format argument should be ibm or ieee])
6897 with_long_double_format=""
6898 ;;
6899 *)
6900 AC_MSG_ERROR([Configure option --with-long-double-format is only supported \
6901 on 64-bit PowerPC VSX Linux systems])
6902 with_long_double_format=""
6903 ;;
6904 esac],
6905 [])
6906
6907 # Check if the target LIBC supports exporting the AT_PLATFORM and AT_HWCAP
6908 # values in the TCB. Currently, only GLIBC 2.23 and later support this.
6909 gcc_cv_libc_provides_hwcap_in_tcb=no
6910 case "$target" in
6911 powerpc*-*-linux*)
6912 GCC_GLIBC_VERSION_GTE_IFELSE([2], [23], [gcc_cv_libc_provides_hwcap_in_tcb=yes], )
6913 ;;
6914 esac
6915 if test x$gcc_cv_libc_provides_hwcap_in_tcb = xyes; then
6916 AC_DEFINE(TARGET_LIBC_PROVIDES_HWCAP_IN_TCB, 1,
6917 [Define if your target C Library provides the AT_HWCAP value in the TCB])
6918 fi
6919
6920 # Check if the target LIBC handles PT_GNU_STACK.
6921 gcc_cv_libc_gnustack=unknown
6922 case "$target" in
6923 mips*-*-linux-musl*)
6924 gcc_cv_libc_gnustack=yes
6925 ;;
6926 mips*-*-linux*)
6927 GCC_GLIBC_VERSION_GTE_IFELSE([2], [31], [gcc_cv_libc_gnustack=yes], )
6928 ;;
6929 esac
6930 if test x$gcc_cv_libc_gnustack = xyes; then
6931 AC_DEFINE(TARGET_LIBC_GNUSTACK, 1,
6932 [Define if your target C Library properly handles PT_GNU_STACK])
6933 fi
6934
6935 AC_MSG_CHECKING(dl_iterate_phdr in target C library)
6936 gcc_cv_target_dl_iterate_phdr=unknown
6937 case "$target" in
6938 *-*-solaris2*)
6939 # <link.h> needs both a dl_iterate_phdr declaration and support for
6940 # compilation with largefile support.
6941 if grep dl_iterate_phdr $target_header_dir/link.h > /dev/null 2>&1 \
6942 && grep 'large file capable' $target_header_dir/link.h > /dev/null 2>&1; then
6943 gcc_cv_target_dl_iterate_phdr=yes
6944 else
6945 gcc_cv_target_dl_iterate_phdr=no
6946 fi
6947 ;;
6948 *-*-dragonfly* | *-*-freebsd*)
6949 if grep dl_iterate_phdr $target_header_dir/sys/link_elf.h > /dev/null 2>&1; then
6950 gcc_cv_target_dl_iterate_phdr=yes
6951 else
6952 gcc_cv_target_dl_iterate_phdr=no
6953 fi
6954 ;;
6955 *-linux-musl*)
6956 gcc_cv_target_dl_iterate_phdr=yes
6957 ;;
6958 esac
6959 GCC_TARGET_TEMPLATE([TARGET_DL_ITERATE_PHDR])
6960 if test x$gcc_cv_target_dl_iterate_phdr = xyes; then
6961 AC_DEFINE(TARGET_DL_ITERATE_PHDR, 1,
6962 [Define if your target C library provides the `dl_iterate_phdr' function.])
6963 fi
6964 AC_MSG_RESULT($gcc_cv_target_dl_iterate_phdr)
6965
6966 # We no longer support different GC mechanisms. Emit an error if
6967 # the user configures with --with-gc.
6968 AC_ARG_WITH(gc,
6969 [AS_HELP_STRING([--with-gc={page,zone}],
6970 [this option is not supported anymore. It used to choose
6971 the garbage collection mechanism to use with the compiler])],
6972 [AC_MSG_ERROR([Configure option --with-gc is only supported up to GCC 4.7.x])],
6973 [])
6974
6975 # Libraries to use on the host. This will normally be set by the top
6976 # level Makefile. Here we simply capture the value for our Makefile.
6977 if test -z "${HOST_LIBS+set}"; then
6978 HOST_LIBS=
6979 fi
6980 AC_SUBST(HOST_LIBS)
6981
6982 # Use the system's zlib library.
6983 AM_ZLIB
6984
6985 dnl Very limited version of automake's enable-maintainer-mode
6986
6987 AC_MSG_CHECKING([whether to enable maintainer-specific portions of Makefiles])
6988 dnl maintainer-mode is disabled by default
6989 AC_ARG_ENABLE(maintainer-mode,
6990 [AS_HELP_STRING([--enable-maintainer-mode],
6991 [enable make rules and dependencies not useful
6992 (and sometimes confusing) to the casual installer])],
6993 maintainer_mode=$enableval,
6994 maintainer_mode=no)
6995
6996 AC_MSG_RESULT($maintainer_mode)
6997
6998 if test "$maintainer_mode" = "yes"; then
6999 MAINT=''
7000 else
7001 MAINT='#'
7002 fi
7003 AC_SUBST(MAINT)dnl
7004
7005 dnl Variables for tags utilities; copied from automake 1.16.4+'s init.m4
7006 if test -z "$CTAGS"; then
7007 CTAGS=ctags
7008 fi
7009 AC_SUBST([CTAGS])
7010 if test -z "$ETAGS"; then
7011 ETAGS=etags
7012 fi
7013 AC_SUBST([ETAGS])
7014 if test -z "$CSCOPE"; then
7015 CSCOPE=cscope
7016 fi
7017 AC_SUBST([CSCOPE])
7018
7019 dnl Whether to prevent multiple front-ends from linking at the same time
7020
7021 AC_MSG_CHECKING([whether to avoid linking multiple front-ends at once])
7022 AC_ARG_ENABLE(link-mutex,
7023 [AS_HELP_STRING([--enable-link-mutex],
7024 [avoid linking multiple front-ends at once to avoid thrashing
7025 on the build machine])],
7026 do_link_mutex=$enableval,
7027 do_link_mutex=no)
7028 AC_MSG_RESULT($do_link_mutex)
7029
7030 if test "$do_link_mutex" = "yes"; then
7031 DO_LINK_MUTEX=true
7032 AC_MSG_WARN([--enable-link-mutex is deprecated and will be removed in the next release, use --enable-link-serialization instead])
7033 else
7034 DO_LINK_MUTEX=false
7035 fi
7036 AC_SUBST(DO_LINK_MUTEX)
7037
7038 dnl Whether to prevent multiple GCC front-ends from linking at the same time
7039
7040 AC_MSG_CHECKING([whether to serialize linking of multiple front-ends])
7041 AC_ARG_ENABLE(link-serialization,
7042 [AS_HELP_STRING([--enable-link-serialization],
7043 [avoid linking multiple GCC front-ends at once using make
7044 dependencies to avoid thrashing on the build machine])],
7045 do_link_serialization=$enableval,
7046 do_link_serialization=no)
7047 AC_MSG_RESULT($do_link_serialization)
7048
7049 case "$do_link_serialization" in
7050 yes)
7051 DO_LINK_SERIALIZATION=1;;
7052 [[1-9]] | [[1-9]][[0-9]] | [[1-9]][[0-9]][[0-9]])
7053 DO_LINK_SERIALIZATION=$do_link_serialization;;
7054 no)
7055 DO_LINK_SERIALIZATION=;;
7056 *)
7057 AC_MSG_ERROR(bad value ${do_link_serialization} given for --enable-link-serialization) ;;
7058 esac
7059 AC_SUBST(DO_LINK_SERIALIZATION)
7060
7061 # --------------
7062 # Language hooks
7063 # --------------
7064
7065 # Make empty files to contain the specs and options for each language.
7066 # Then add #include lines to for a compiler that has specs and/or options.
7067
7068 subdirs=
7069 lang_opt_files=
7070 lang_specs_files=
7071 lang_tree_files=
7072 # These (without "all_") are set in each config-lang.in.
7073 # `language' must be a single word so is spelled singularly.
7074 all_languages=
7075 all_compilers=
7076 all_outputs='Makefile'
7077 # List of language configure and makefile fragments.
7078 all_lang_configurefrags=
7079 all_lang_makefrags=
7080 # Additional files for gengtype
7081 all_gtfiles="$target_gtfiles"
7082
7083 # These are the languages that are set in --enable-languages,
7084 # and are available in the GCC tree.
7085 all_selected_languages=
7086
7087 # Add the language fragments.
7088 # Languages are added via two mechanisms. Some information must be
7089 # recorded in makefile variables, these are defined in config-lang.in.
7090 # We accumulate them and plug them into the main Makefile.
7091 # The other mechanism is a set of hooks for each of the main targets
7092 # like `clean', `install', etc.
7093
7094 language_hooks="Make-hooks"
7095
7096 for lang in ${srcdir}/*/config-lang.in
7097 do
7098 changequote(,)dnl
7099 test "$lang" = "${srcdir}/*/config-lang.in" && continue
7100
7101 lang_alias=`sed -n -e 's,^language=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^language=\([^ ]*\).*$,\1,p' $lang`
7102 if test "x$lang_alias" = x
7103 then
7104 echo "$lang doesn't set \$language." 1>&2
7105 exit 1
7106 fi
7107 subdir="`echo $lang | sed -e 's,^.*/\([^/]*\)/config-lang.in$,\1,'`"
7108 subdirs="$subdirs $subdir"
7109
7110 # $gcc_subdir is where the gcc integration files are to be found
7111 # for a language, both for internal compiler purposes (compiler
7112 # sources implementing front-end to GCC tree converters), and for
7113 # build infrastructure purposes (Make-lang.in, etc.)
7114 #
7115 # This will be <subdir> (relative to $srcdir) if a line like
7116 # gcc_subdir="<subdir>" or gcc_subdir=<subdir>
7117 # is found in <langdir>/config-lang.in, and will remain <langdir>
7118 # otherwise.
7119 #
7120 # Except for the language alias (fetched above), the regular
7121 # "config-lang.in" contents are always retrieved from $gcc_subdir,
7122 # so a <langdir>/config-lang.in setting gcc_subdir typically sets
7123 # only this and the language alias.
7124
7125 gcc_subdir=`sed -n -e 's,^gcc_subdir=['"'"'"'"]\(.*\)["'"'"'"'].*$,\1,p' -e 's,^gcc_subdir=\([^ ]*\).*$,\1,p' $lang`
7126 if [ "$gcc_subdir" = "" ]; then
7127 gcc_subdir="$subdir"
7128 fi
7129
7130 case ",$enable_languages," in
7131 *,$lang_alias,*)
7132 all_selected_languages="$all_selected_languages $lang_alias"
7133 if test -f $srcdir/$gcc_subdir/lang-specs.h; then
7134 lang_specs_files="$lang_specs_files $srcdir/$gcc_subdir/lang-specs.h"
7135 fi
7136 ;;
7137 esac
7138 changequote([,])dnl
7139
7140 language=
7141 boot_language=
7142 compilers=
7143 outputs=
7144 gtfiles=
7145 subdir_requires=
7146 . ${srcdir}/$gcc_subdir/config-lang.in
7147 if test "x$language" = x
7148 then
7149 echo "${srcdir}/$gcc_subdir/config-lang.in doesn't set \$language." 1>&2
7150 exit 1
7151 fi
7152
7153 ok=:
7154 case ",$enable_languages," in
7155 *,$lang_alias,*) ;;
7156 *)
7157 for i in $subdir_requires; do
7158 test -f "${srcdir}/$i/config-lang.in" && continue
7159 ok=false
7160 break
7161 done
7162 ;;
7163 esac
7164 $ok || continue
7165
7166 all_lang_configurefrags="$all_lang_configurefrags \$(srcdir)/$gcc_subdir/config-lang.in"
7167 if test "x$language" = xc && test -n "$all_lang_makefrags"; then
7168 # Put c/Make-lang.in fragment first to match serialization languages order.
7169 all_lang_makefrags="\$(srcdir)/$gcc_subdir/Make-lang.in $all_lang_makefrags"
7170 else
7171 all_lang_makefrags="$all_lang_makefrags \$(srcdir)/$gcc_subdir/Make-lang.in"
7172 fi
7173 if test -f $srcdir/$gcc_subdir/lang.opt; then
7174 lang_opt_files="$lang_opt_files $srcdir/$gcc_subdir/lang.opt"
7175 all_opt_files="$all_opt_files $srcdir/$gcc_subdir/lang.opt"
7176 fi
7177 if test -f $srcdir/$gcc_subdir/$subdir-tree.def; then
7178 lang_tree_files="$lang_tree_files $srcdir/$gcc_subdir/$subdir-tree.def"
7179 fi
7180 all_languages="$all_languages $language"
7181 all_compilers="$all_compilers $compilers"
7182 all_outputs="$all_outputs $outputs"
7183 all_gtfiles="$all_gtfiles [[$subdir]] $gtfiles"
7184 case ",$enable_languages," in
7185 *,lto,*)
7186 AC_DEFINE(ENABLE_LTO, 1, [Define to enable LTO support.])
7187 enable_lto=yes
7188 AC_SUBST(enable_lto)
7189 ;;
7190 *) ;;
7191 esac
7192 done
7193
7194 check_languages=
7195 for language in $all_selected_languages
7196 do
7197 check_languages="$check_languages check-$language"
7198 done
7199
7200 selftest_languages=
7201 for language in $all_selected_languages
7202 do
7203 selftest_languages="$selftest_languages selftest-$language"
7204 done
7205
7206 # We link each language in with a set of hooks, reached indirectly via
7207 # lang.${target}. Only do so for selected languages.
7208
7209 rm -f Make-hooks
7210 touch Make-hooks
7211 target_list="all.cross start.encap rest.encap tags \
7212 install-common install-man install-info install-dvi install-pdf \
7213 install-html dvi pdf html uninstall info man srcextra srcman srcinfo \
7214 mostlyclean clean distclean maintainer-clean install-plugin"
7215
7216 for t in $target_list
7217 do
7218 x=
7219 for lang in $all_selected_languages
7220 do
7221 x="$x $lang.$t"
7222 done
7223 echo "lang.$t: $x" >> Make-hooks
7224 done
7225
7226 echo "ifeq (\$(DO_LINK_SERIALIZATION),)" >> Make-hooks
7227 echo "SERIAL_LIST =" >> Make-hooks
7228 echo else >> Make-hooks
7229 lang_cnt=0
7230 lang_list=
7231 prev=c
7232 serialization_languages=c
7233 for lang in $all_selected_languages
7234 do
7235 test $lang = c && continue
7236 if test $lang = lto; then
7237 serialization_languages="$serialization_languages lto1 lto2"
7238 else
7239 serialization_languages="$serialization_languages $lang"
7240 fi
7241 done
7242 for lang in $serialization_languages
7243 do
7244 test $lang = c && continue
7245 lang_cnt=`expr $lang_cnt + 1`
7246 lang_list=" $prev$lang_list"
7247 prev=${lang}
7248 done
7249 echo "SERIAL_LIST = \$(wordlist \$(DO_LINK_SERIALIZATION),$lang_cnt,$lang_list)" >> Make-hooks
7250 echo endif >> Make-hooks
7251 echo "SERIAL_COUNT = `expr $lang_cnt + 1`" >> Make-hooks
7252 echo "INDEX.c = 0" >> Make-hooks
7253 lang_idx=1
7254 for lang in $serialization_languages
7255 do
7256 test $lang = c && continue
7257 echo "$lang.prev = \$(if \$(word $lang_cnt,\$(SERIAL_LIST)),\$(\$(word $lang_cnt,\$(SERIAL_LIST)).serial))" >> Make-hooks
7258 echo "INDEX.$lang = $lang_idx" >> Make-hooks
7259 lang_cnt=`expr $lang_cnt - 1`
7260 lang_idx=`expr $lang_idx + 1`
7261 done
7262
7263 # --------
7264 # Option include files
7265 # --------
7266
7267 ${AWK} -f $srcdir/opt-include.awk $all_opt_files > option-includes.mk
7268 option_includes="option-includes.mk"
7269 AC_SUBST_FILE(option_includes)
7270
7271 # --------
7272 # UNSORTED
7273 # --------
7274
7275 # Create .gdbinit.
7276
7277 echo "dir ." > .gdbinit
7278 echo "dir ${srcdir}" >> .gdbinit
7279 if test x$gdb_needs_out_file_path = xyes
7280 then
7281 echo "dir ${srcdir}/config/"`dirname ${out_file}` >> .gdbinit
7282 fi
7283 if test "x$subdirs" != x; then
7284 for s in $subdirs
7285 do
7286 echo "dir ${srcdir}/$s" >> .gdbinit
7287 done
7288 fi
7289 echo "source ${srcdir}/gdbinit.in" >> .gdbinit
7290 echo "python import sys; sys.path.append('${srcdir}'); import gdbhooks" >> .gdbinit
7291
7292 # Put a breakpoint on __asan_report_error to help with debugging buffer
7293 # overflow.
7294 case "$CFLAGS" in
7295 *-fsanitize=address*)
7296 echo "source ${srcdir}/gdbasan.in" >> .gdbinit
7297 ;;
7298 esac
7299
7300 gcc_tooldir='$(libsubdir)/$(libsubdir_to_prefix)$(target_noncanonical)'
7301 AC_SUBST(gcc_tooldir)
7302 AC_SUBST(dollar)
7303
7304 # Find a directory in which to install a shared libgcc.
7305
7306 AC_ARG_ENABLE(version-specific-runtime-libs,
7307 [AS_HELP_STRING([--enable-version-specific-runtime-libs],
7308 [specify that runtime libraries should be
7309 installed in a compiler-specific directory])])
7310
7311 # Substitute configuration variables
7312 AC_SUBST(subdirs)
7313 AC_SUBST(srcdir)
7314 AC_SUBST(all_compilers)
7315 AC_SUBST(all_gtfiles)
7316 AC_SUBST(all_lang_configurefrags)
7317 AC_SUBST(all_lang_makefrags)
7318 AC_SUBST(all_languages)
7319 AC_SUBST(all_selected_languages)
7320 AC_SUBST(build_exeext)
7321 AC_SUBST(build_install_headers_dir)
7322 AC_SUBST(build_xm_file_list)
7323 AC_SUBST(build_xm_include_list)
7324 AC_SUBST(build_xm_defines)
7325 AC_SUBST(build_file_translate)
7326 AC_SUBST(check_languages)
7327 AC_SUBST(selftest_languages)
7328 AC_SUBST(cpp_install_dir)
7329 AC_SUBST(xmake_file)
7330 AC_SUBST(tmake_file)
7331 AC_SUBST(TM_ENDIAN_CONFIG)
7332 AC_SUBST(TM_MULTILIB_CONFIG)
7333 AC_SUBST(TM_MULTILIB_EXCEPTIONS_CONFIG)
7334 AC_SUBST(extra_gcc_objs)
7335 AC_SUBST(user_headers_inc_next_pre)
7336 AC_SUBST(user_headers_inc_next_post)
7337 AC_SUBST(extra_headers_list)
7338 AC_SUBST(extra_objs)
7339 AC_SUBST(extra_programs)
7340 AC_SUBST(float_h_file)
7341 AC_SUBST(gcc_config_arguments)
7342 AC_SUBST(gcc_gxx_include_dir)
7343 AC_SUBST(gcc_gxx_include_dir_add_sysroot)
7344 AC_SUBST(gcc_gxx_libcxx_include_dir)
7345 AC_SUBST(gcc_gxx_libcxx_include_dir_add_sysroot)
7346 AC_SUBST(host_exeext)
7347 AC_SUBST(host_xm_file_list)
7348 AC_SUBST(host_xm_include_list)
7349 AC_SUBST(host_xm_defines)
7350 AC_SUBST(out_host_hook_obj)
7351 AC_SUBST(install)
7352 AC_SUBST(lang_opt_files)
7353 AC_SUBST(lang_specs_files)
7354 AC_SUBST(lang_tree_files)
7355 AC_SUBST(local_prefix)
7356 AC_SUBST(md_file)
7357 AC_SUBST(objc_boehm_gc)
7358 AC_SUBST(out_file)
7359 AC_SUBST(out_object_file)
7360 AC_SUBST(common_out_file)
7361 AC_SUBST(common_out_object_file)
7362 AC_SUBST(tm_file_list)
7363 AC_SUBST(tm_include_list)
7364 AC_SUBST(tm_defines)
7365 AC_SUBST(tm_p_file_list)
7366 AC_SUBST(tm_p_include_list)
7367 AC_SUBST(tm_d_file_list)
7368 AC_SUBST(tm_d_include_list)
7369 AC_SUBST(xm_file_list)
7370 AC_SUBST(xm_include_list)
7371 AC_SUBST(xm_defines)
7372 AC_SUBST(use_gcc_stdint)
7373 AC_SUBST(c_target_objs)
7374 AC_SUBST(cxx_target_objs)
7375 AC_SUBST(fortran_target_objs)
7376 AC_SUBST(d_target_objs)
7377 AC_SUBST(target_cpu_default)
7378
7379 AC_SUBST_FILE(language_hooks)
7380
7381 # Echo link setup.
7382 if test x${build} = x${host} ; then
7383 if test x${host} = x${target} ; then
7384 echo "Links are now set up to build a native compiler for ${target}." 1>&2
7385 else
7386 echo "Links are now set up to build a cross-compiler" 1>&2
7387 echo " from ${host} to ${target}." 1>&2
7388 fi
7389 else
7390 if test x${host} = x${target} ; then
7391 echo "Links are now set up to build (on ${build}) a native compiler" 1>&2
7392 echo " for ${target}." 1>&2
7393 else
7394 echo "Links are now set up to build (on ${build}) a cross-compiler" 1>&2
7395 echo " from ${host} to ${target}." 1>&2
7396 fi
7397 fi
7398
7399 AC_ARG_VAR(GMPLIBS,[How to link GMP])
7400 AC_ARG_VAR(GMPINC,[How to find GMP include files])
7401
7402 AC_ARG_VAR(ISLLIBS,[How to link isl])
7403 AC_ARG_VAR(ISLINC,[How to find isl include files])
7404 if test "x${ISLLIBS}" != "x" ; then
7405 AC_DEFINE(HAVE_isl, 1, [Define if isl is in use.])
7406 fi
7407
7408 GCC_ENABLE_PLUGINS
7409 AC_SUBST(pluginlibs)
7410 AC_SUBST(enable_plugin)
7411 if test x"$enable_plugin" = x"yes"; then
7412 AC_DEFINE(ENABLE_PLUGIN, 1, [Define to enable plugin support.])
7413 fi
7414
7415
7416 # Enable --enable-host-shared
7417 AC_ARG_ENABLE(host-shared,
7418 [AS_HELP_STRING([--enable-host-shared],
7419 [build host code as shared libraries])])
7420 AC_SUBST(enable_host_shared)
7421
7422 # Enable --enable-host-pie
7423 AC_ARG_ENABLE(host-pie,
7424 [AS_HELP_STRING([--enable-host-pie],
7425 [build host code as PIE])])
7426 AC_SUBST(enable_host_pie)
7427
7428 AC_ARG_ENABLE(libquadmath-support,
7429 [AS_HELP_STRING([--disable-libquadmath-support],
7430 [disable libquadmath support for Fortran])],
7431 ENABLE_LIBQUADMATH_SUPPORT=$enableval,
7432 ENABLE_LIBQUADMATH_SUPPORT=yes)
7433 if test "${ENABLE_LIBQUADMATH_SUPPORT}" != "no" ; then
7434 AC_DEFINE(ENABLE_LIBQUADMATH_SUPPORT, 1,
7435 [Define to 1 to enable libquadmath support])
7436 fi
7437
7438
7439 # Specify what hash style to use by default.
7440 AC_ARG_WITH([linker-hash-style],
7441 [AC_HELP_STRING([--with-linker-hash-style={sysv,gnu,both}],
7442 [specify the linker hash style])],
7443 [case x"$withval" in
7444 xsysv)
7445 LINKER_HASH_STYLE=sysv
7446 ;;
7447 xgnu)
7448 LINKER_HASH_STYLE=gnu
7449 ;;
7450 xboth)
7451 LINKER_HASH_STYLE=both
7452 ;;
7453 *)
7454 AC_MSG_ERROR([$withval is an invalid option to --with-linker-hash-style])
7455 ;;
7456 esac],
7457 [LINKER_HASH_STYLE=''])
7458 if test x"${LINKER_HASH_STYLE}" != x; then
7459 AC_DEFINE_UNQUOTED(LINKER_HASH_STYLE, "$LINKER_HASH_STYLE",
7460 [The linker hash style])
7461 fi
7462
7463 # Specify what should be the default of -fdiagnostics-color option.
7464 AC_ARG_WITH([diagnostics-color],
7465 [AC_HELP_STRING([--with-diagnostics-color={never,auto,auto-if-env,always}],
7466 [specify the default of -fdiagnostics-color option
7467 auto-if-env stands for -fdiagnostics-color=auto if
7468 GCC_COLOR environment variable is present and
7469 -fdiagnostics-color=never otherwise])],
7470 [case x"$withval" in
7471 xnever)
7472 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_NO
7473 ;;
7474 xauto)
7475 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_AUTO
7476 ;;
7477 xauto-if-env)
7478 DIAGNOSTICS_COLOR_DEFAULT=-1
7479 ;;
7480 xalways)
7481 DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_YES
7482 ;;
7483 *)
7484 AC_MSG_ERROR([$withval is an invalid option to --with-diagnostics-color])
7485 ;;
7486 esac],
7487 [DIAGNOSTICS_COLOR_DEFAULT=DIAGNOSTICS_COLOR_AUTO])
7488 AC_DEFINE_UNQUOTED(DIAGNOSTICS_COLOR_DEFAULT, $DIAGNOSTICS_COLOR_DEFAULT,
7489 [The default for -fdiagnostics-color option])
7490
7491 # Specify what should be the default of -fdiagnostics-urls option.
7492 AC_ARG_WITH([diagnostics-urls],
7493 [AC_HELP_STRING([--with-diagnostics-urls={never,auto,auto-if-env,always}],
7494 [specify the default of -fdiagnostics-urls option
7495 auto-if-env stands for -fdiagnostics-urls=auto if
7496 GCC_URLS or TERM_URLS environment variable is present and
7497 -fdiagnostics-urls=never otherwise])],
7498 [case x"$withval" in
7499 xnever)
7500 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_NO
7501 ;;
7502 xauto)
7503 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_AUTO
7504 ;;
7505 xauto-if-env)
7506 DIAGNOSTICS_URLS_DEFAULT=-1
7507 ;;
7508 xalways)
7509 DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_YES
7510 ;;
7511 *)
7512 AC_MSG_ERROR([$withval is an invalid option to --with-diagnostics-urls])
7513 ;;
7514 esac],
7515 [DIAGNOSTICS_URLS_DEFAULT=DIAGNOSTICS_URL_AUTO])
7516 AC_DEFINE_UNQUOTED(DIAGNOSTICS_URLS_DEFAULT, $DIAGNOSTICS_URLS_DEFAULT,
7517 [The default for -fdiagnostics-urls option])
7518
7519 # Generate gcc-driver-name.h containing GCC_DRIVER_NAME for the benefit
7520 # of jit/jit-playback.cc.
7521 gcc_driver_version=`eval "${get_gcc_base_ver} $srcdir/BASE-VER"`
7522 echo "gcc_driver_version: ${gcc_driver_version}"
7523 cat > gcc-driver-name.h <<EOF
7524 #define GCC_DRIVER_NAME "${target_noncanonical}-gcc-${gcc_driver_version}${exeext}"
7525 EOF
7526
7527 # Check whether --enable-default-pie was given.
7528 AC_ARG_ENABLE(default-pie,
7529 [AS_HELP_STRING([--enable-default-pie],
7530 [enable Position Independent Executable as default])],
7531 enable_default_pie=$enableval,
7532 enable_default_pie=no)
7533 if test x$enable_default_pie = xyes ; then
7534 AC_DEFINE(ENABLE_DEFAULT_PIE, 1,
7535 [Define if your target supports default PIE and it is enabled.])
7536 fi
7537 AC_SUBST([enable_default_pie])
7538
7539 # Check if -fno-PIE works.
7540 AC_CACHE_CHECK([for -fno-PIE option],
7541 [gcc_cv_c_no_fpie],
7542 [saved_CXXFLAGS="$CXXFLAGS"
7543 CXXFLAGS="$CXXFLAGS -fno-PIE"
7544 AC_COMPILE_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
7545 [gcc_cv_c_no_fpie=yes],
7546 [gcc_cv_c_no_fpie=no])
7547 CXXFLAGS="$saved_CXXFLAGS"])
7548
7549 # Check if -no-pie works.
7550 AC_CACHE_CHECK([for -no-pie option],
7551 [gcc_cv_no_pie],
7552 [saved_LDFLAGS="$LDFLAGS"
7553 LDFLAGS="$LDFLAGS -no-pie"
7554 AC_LINK_IFELSE([AC_LANG_SOURCE([int main(void) {return 0;}])],
7555 [gcc_cv_no_pie=yes],
7556 [gcc_cv_no_pie=no])
7557 LDFLAGS="$saved_LDFLAGS"])
7558
7559 if test x$enable_host_shared = xyes; then
7560 PICFLAG=-fPIC
7561 elif test x$enable_host_pie = xyes; then
7562 PICFLAG=-fPIE
7563 elif test x$gcc_cv_c_no_fpie = xyes; then
7564 PICFLAG=-fno-PIE
7565 else
7566 PICFLAG=
7567 fi
7568
7569 if test x$enable_host_pie = xyes; then
7570 LD_PICFLAG=-pie
7571 elif test x$gcc_cv_no_pie = xyes; then
7572 LD_PICFLAG=-no-pie
7573 else
7574 LD_PICFLAG=
7575 fi
7576
7577 AC_SUBST([PICFLAG])
7578 AC_SUBST([LD_PICFLAG])
7579
7580 # Enable Intel CET on Intel CET enabled host if jit is enabled.
7581 GCC_CET_HOST_FLAGS(CET_HOST_FLAGS)
7582 case x$enable_languages in
7583 *jit*)
7584 ;;
7585 *)
7586 CET_HOST_FLAGS=
7587 ;;
7588 esac
7589 AC_SUBST(CET_HOST_FLAGS)
7590
7591 # Check linker supports '-z bndplt'
7592 ld_bndplt_support=no
7593 AC_MSG_CHECKING(linker -z bndplt option)
7594 if test x"$ld_is_gold" = xno; then
7595 if test $in_tree_ld = yes ; then
7596 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
7597 ld_bndplt_support=yes
7598 fi
7599 elif test x$gcc_cv_ld != x; then
7600 # Check if linker supports -a bndplt option
7601 if $gcc_cv_ld --help 2>&1 | grep -- '-z bndplt' > /dev/null; then
7602 ld_bndplt_support=yes
7603 fi
7604 fi
7605 fi
7606 if test x"$ld_bndplt_support" = xyes; then
7607 AC_DEFINE(HAVE_LD_BNDPLT_SUPPORT, 1,
7608 [Define if your linker supports -z bndplt])
7609 fi
7610 AC_MSG_RESULT($ld_bndplt_support)
7611
7612 # Check linker supports '--push-state'/'--pop-state'
7613 ld_pushpopstate_support=no
7614 AC_MSG_CHECKING(linker --push-state/--pop-state options)
7615 if test x"$ld_is_gold" = xno; then
7616 if test $in_tree_ld = yes ; then
7617 if test "$gcc_cv_gld_major_version" -eq 2 -a "$gcc_cv_gld_minor_version" -ge 25 -o "$gcc_cv_gld_major_version" -gt 2; then
7618 ld_pushpopstate_support=yes
7619 fi
7620 elif test x$gcc_cv_ld != x; then
7621 # Check if linker supports --push-state/--pop-state options
7622 if $gcc_cv_ld --help 2>&1 | grep -- '--push-state' > /dev/null; then
7623 ld_pushpopstate_support=yes
7624 fi
7625 fi
7626 fi
7627 if test x"$ld_pushpopstate_support" = xyes; then
7628 AC_DEFINE(HAVE_LD_PUSHPOPSTATE_SUPPORT, 1,
7629 [Define if your linker supports --push-state/--pop-state])
7630 fi
7631 AC_MSG_RESULT($ld_pushpopstate_support)
7632
7633 # On s390, float_t has historically been statically defined as double for no
7634 # good reason. To comply with the C standard in the light of this definition,
7635 # gcc has evaluated float expressions in double precision when in
7636 # standards-compatible mode or when given -fexcess-precision=standard. To enable
7637 # a smooth transition towards the new model used by most architectures, where
7638 # gcc describes its behavior via the macro __FLT_EVAL_METHOD__ and glibc derives
7639 # float_t from that, this behavior can be configured with
7640 # --enable-s390-excess-float-precision. When given as enabled, that flag selects
7641 # the old model. When omitted, native builds and cross compiles that have target
7642 # libc headers will detect whether libc clamps float_t to double and in that
7643 # case maintain the old model. Otherwise, they will default to the new model.
7644 AC_ARG_ENABLE(s390-excess-float-precision,
7645 [AS_HELP_STRING([--enable-s390-excess-float-precision],
7646 [on s390 targets, evaluate float with double precision
7647 when in standards-conforming mode])],
7648 [],[enable_s390_excess_float_precision=auto])
7649
7650 case $target in
7651 s390*-linux*)
7652 if test x"$enable_s390_excess_float_precision" = xauto; then
7653 # Can we autodetect the behavior of the target libc?
7654 if test "$target" = "$host" -a "$host" = "$build"; then
7655 enable_s390_excess_float_precision=autodetect
7656 elif test "x$with_headers" != xno; then
7657 # cross build. are target headers available?
7658 # carefully coerce the build-system compiler to use target headers
7659 saved_CXXFLAGS="$CXXFLAGS"
7660 fixed_XGCC_FLAGS_FOR_TARGET=`echo "$XGCC_FLAGS_FOR_TARGET" | sed 's/-B/-idirafter/g'`
7661 CROSS_TEST_CXXFLAGS="-nostdinc $fixed_XGCC_FLAGS_FOR_TARGET"
7662 CXXFLAGS="$CROSS_TEST_CXXFLAGS"
7663 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
7664 #include <math.h>
7665 ]])], [enable_s390_excess_float_precision=autodetect], [])
7666 CXXFLAGS="$saved_CXXFLAGS"
7667 fi
7668
7669 if test x"$enable_s390_excess_float_precision" = xautodetect; then
7670 saved_CXXFLAGS="$CXXFLAGS"
7671 if ! test "$target" = "$host" -a "$host" = "$build"; then
7672 CXXFLAGS="$CROSS_TEST_CXXFLAGS"
7673 unset CROSS_TEST_CXXFLAGS
7674 fi
7675 AC_CACHE_CHECK([for glibc clamping float_t to double],
7676 gcc_cv_float_t_clamped_to_double, [
7677 AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
7678 #define __FLT_EVAL_METHOD__ 0
7679 #include <math.h>
7680 int dummy[sizeof(float_t) == sizeof(double) ? 1 : -1];
7681 ]])],
7682 [gcc_cv_float_t_clamped_to_double=yes],
7683 [gcc_cv_float_t_clamped_to_double=no])])
7684 CXXFLAGS="$saved_CXXFLAGS"
7685 enable_s390_excess_float_precision="$gcc_cv_float_t_clamped_to_double"
7686 else
7687 # no way to detect behavior of target libc, default to new model
7688 enable_s390_excess_float_precision=no
7689 fi
7690 fi
7691
7692 GCC_TARGET_TEMPLATE(ENABLE_S390_EXCESS_FLOAT_PRECISION)
7693 if test x"$enable_s390_excess_float_precision" = xyes; then
7694 AC_DEFINE(ENABLE_S390_EXCESS_FLOAT_PRECISION, 1,
7695 [Define to enable evaluating float expressions with double precision in
7696 standards-compatible mode on s390 targets.])
7697 fi
7698 ;;
7699 esac
7700
7701 # Configure the subdirectories
7702 # AC_CONFIG_SUBDIRS($subdirs)
7703
7704 # Create the Makefile
7705 # and configure language subdirectories
7706 AC_CONFIG_FILES($all_outputs)
7707
7708 AC_CONFIG_COMMANDS([default],
7709 [
7710 case ${CONFIG_HEADERS} in
7711 *auto-host.h:config.in*)
7712 echo > cstamp-h ;;
7713 esac
7714 # Make sure all the subdirs exist.
7715 for d in $subdirs doc build common c-family
7716 do
7717 test -d $d || mkdir $d
7718 done
7719 ],
7720 [subdirs='$subdirs'])
7721 AC_OUTPUT