Commit 28690784 by John David Anglin Committed by John David Anglin

re PR bootstrap/13386 (HAVE_GAS_HIDDEN not set when using GAS with HP linker)

	PR bootstrap/13386
	* configure.in (gcc_cv_ld_hidden): Set to yes on hppa64*-*-hpux* when
	using HP native linker.
	* configure: Rebuilt.

From-SVN: r74705
parent aeb54188
2003-12-16 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
PR bootstrap/13386
* configure.in (gcc_cv_ld_hidden): Set to yes on hppa64*-*-hpux* when
using HP native linker.
* configure: Rebuilt.
2003-12-16 Mark Mitchell <mark@codesourcery.com>
PR c++/13275
......
......@@ -1884,8 +1884,14 @@ changequote(,)dnl
changequote([,])dnl
fi
else
# non-GNU linkers don't seem to support .hidden yet
gcc_cv_ld_hidden=no
case "${target}" in
hppa64*-*-hpux*)
gcc_cv_ld_hidden=yes
;;
*)
gcc_cv_ld_hidden=no
;;
esac
fi
fi])
libgcc_visibility=no
......
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