diff options
author | Benjamin Kosnik <bkoz@redhat.com> | 2009-01-22 21:40:23 +0000 |
---|---|---|
committer | Benjamin Kosnik <bkoz@gcc.gnu.org> | 2009-01-22 21:40:23 +0000 |
commit | 6a5af9dcd87e2c30b6083eb51a8fda66926e441d (patch) | |
tree | c4bf9b4898925e40985d41a11784c15269e1e656 | |
parent | 3ea37b67152256b29b93699bfabc0abb681ecfe0 (diff) | |
download | gcc-6a5af9dcd87e2c30b6083eb51a8fda66926e441d.zip gcc-6a5af9dcd87e2c30b6083eb51a8fda66926e441d.tar.gz gcc-6a5af9dcd87e2c30b6083eb51a8fda66926e441d.tar.bz2 |
re PR target/38384 (shared link/execute fails for cross gcc from linux to target hppa64-hp-hpux11.00)
2009-01-22 Benjamin Kosnik <bkoz@redhat.com>
PR libstdc++/38384
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Disable symbol versioning
on HPUX.
* configure: Regenerate.
From-SVN: r143576
-rw-r--r-- | libstdc++-v3/ChangeLog | 7 | ||||
-rw-r--r-- | libstdc++-v3/acinclude.m4 | 2 | ||||
-rwxr-xr-x | libstdc++-v3/configure | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index e103b88..d15f1d7 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,10 @@ +2009-01-22 Benjamin Kosnik <bkoz@redhat.com> + + PR libstdc++/38384 + * acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Disable symbol versioning + on HPUX. + * configure: Regenerate. + 2009-01-22 Dodji Seketeli <dodji@redhat.com> * include/ext/bitmap_allocator.h: Reverting changes related to PR diff --git a/libstdc++-v3/acinclude.m4 b/libstdc++-v3/acinclude.m4 index 11f58f6..22e6bc4 100644 --- a/libstdc++-v3/acinclude.m4 +++ b/libstdc++-v3/acinclude.m4 @@ -2728,7 +2728,7 @@ if test x$enable_symvers = xyes ; then else if test $with_gnu_ld = yes ; then case ${target_os} in - cygwin* | pe | mingw32*) + cygwin* | pe | mingw32* | hpux*) enable_symvers=no ;; *) enable_symvers=gnu ;; diff --git a/libstdc++-v3/configure b/libstdc++-v3/configure index 81a81e7..d11acca 100755 --- a/libstdc++-v3/configure +++ b/libstdc++-v3/configure @@ -116669,7 +116669,7 @@ if test x$enable_symvers = xyes ; then else if test $with_gnu_ld = yes ; then case ${target_os} in - cygwin* | pe | mingw32*) + cygwin* | pe | mingw32* | hpux*) enable_symvers=no ;; *) enable_symvers=gnu ;; |