Commit 319840d3 by Rainer Orth Committed by Rainer Orth

configure.ac: Check for Solaris 8 ld with .hidden support.

	* configure.ac: Check for Solaris 8 ld with .hidden support.
	* configure: Regenerate.

From-SVN: r164815
parent 89d5c66f
2010-09-30 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
* configure.ac: Check for Solaris 8 ld with .hidden support.
* configure: Regenerate.
2010-09-30 Sebastian Pop <sebastian.pop@amd.com>
PR middle-end/45758
......@@ -21409,6 +21409,15 @@ else
hppa64*-*-hpux* | ia64*-*-hpux*)
gcc_cv_ld_hidden=yes
;;
*-*-solaris2.8*)
# .hidden support was backported to Solaris 8, starting with ld
# version 1.276.
if test "$ld_vers_minor" -ge 276; then
gcc_cv_ld_hidden=yes
else
gcc_cv_ld_hidden=no
fi
;;
*-*-solaris2.9* | *-*-solaris2.1[0-9]*)
# Support for .hidden in Sun ld appeared in Solaris 9 FCS, but
# .symbolic was only added in Solaris 9 12/02.
......
......@@ -2235,6 +2235,15 @@ else
hppa64*-*-hpux* | ia64*-*-hpux*)
gcc_cv_ld_hidden=yes
;;
*-*-solaris2.8*)
# .hidden support was backported to Solaris 8, starting with ld
# version 1.276.
if test "$ld_vers_minor" -ge 276; then
gcc_cv_ld_hidden=yes
else
gcc_cv_ld_hidden=no
fi
;;
*-*-solaris2.9* | *-*-solaris2.1[0-9]*)
# Support for .hidden in Sun ld appeared in Solaris 9 FCS, but
# .symbolic was only added in Solaris 9 12/02.
......
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