Commit 1cf0118d by Rainer Orth Committed by Rainer Orth

re PR bootstrap/26053 (Misdetection of COMDAT group support with GNU as and non-GNU ld)

	PR bootstrap/26053
	* configure.ac (HAVE_COMDAT_GROUP): Don't assume non-GNU linkers
	support COMDAT group.
	* configure: Regenerate.

From-SVN: r110985
parent 6c7a4dfd
2006-02-14 Rainer Orth <ro@TechFak.Uni-Bielefeld.DE>
PR bootstrap/26053
* configure.ac (HAVE_COMDAT_GROUP): Don't assume non-GNU linkers
support COMDAT group.
* configure: Regenerate.
2006-02-14 Roger Sayle <roger@eyesopen.com>
PR middle-end/26279
......
......@@ -2245,10 +2245,13 @@ if test $in_tree_ld != yes && test x"$ld_vers" != x; then
comdat_group=no
fi
fi
if test $comdat_group = no; then
gcc_cv_as_comdat_group=no
gcc_cv_as_comdat_group_percent=no
fi
else
# assume linkers other than GNU ld don't support COMDAT group
comdat_group=no
fi
if test $comdat_group = no; then
gcc_cv_as_comdat_group=no
gcc_cv_as_comdat_group_percent=no
fi
AC_DEFINE_UNQUOTED(HAVE_COMDAT_GROUP,
[`if test $gcc_cv_as_comdat_group = yes || test $gcc_cv_as_comdat_group_percent = yes; then echo 1; else echo 0; fi`],
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment