mirror of git://gcc.gnu.org/git/gcc.git
re PR libstdc++/26526 (std::__copy_streambufs link failure when _GLIBCXX_DEBUG is defined)
2006-03-03 Paolo Carlini <pcarlini@suse.de> PR libstdc++/26526 * config/abi/pre/gnu.ver (__copy_streambufs, 64-bit version): Add @GLIBCXX_3.4.8; move existing symbols @GLIBCXX_3.4.8 to 3.4.9. * configure.ac (libtool_VERSION): To 6:9:0. * testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.9. * configure: Regenerate. From-SVN: r111690
This commit is contained in:
parent
b5abd706cd
commit
0efaed01c0
|
|
@ -1,3 +1,12 @@
|
||||||
|
2006-03-03 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
|
PR libstdc++/26526
|
||||||
|
* config/abi/pre/gnu.ver (__copy_streambufs, 64-bit version): Add
|
||||||
|
@GLIBCXX_3.4.8; move existing symbols @GLIBCXX_3.4.8 to 3.4.9.
|
||||||
|
* configure.ac (libtool_VERSION): To 6:9:0.
|
||||||
|
* testsuite/testsuite_abi.cc (check_version): Add GLIBCXX_3.4.9.
|
||||||
|
* configure: Regenerate.
|
||||||
|
|
||||||
2006-03-02 Paolo Carlini <pcarlini@suse.de>
|
2006-03-02 Paolo Carlini <pcarlini@suse.de>
|
||||||
|
|
||||||
* config/abi/pre/gnu.ver: Adjust __copy_streambufs_eof export
|
* config/abi/pre/gnu.ver: Adjust __copy_streambufs_eof export
|
||||||
|
|
|
||||||
|
|
@ -641,6 +641,12 @@ GLIBCXX_3.4.7 {
|
||||||
|
|
||||||
GLIBCXX_3.4.8 {
|
GLIBCXX_3.4.8 {
|
||||||
|
|
||||||
|
_ZSt17__copy_streambufsI[cw]St11char_traitsI[cw]EElPSt15basic_streambuf*;
|
||||||
|
|
||||||
|
} GLIBCXX_3.4.7;
|
||||||
|
|
||||||
|
GLIBCXX_3.4.9 {
|
||||||
|
|
||||||
_ZNSt6__norm15_List_node_base4hook*;
|
_ZNSt6__norm15_List_node_base4hook*;
|
||||||
_ZNSt6__norm15_List_node_base4swap*;
|
_ZNSt6__norm15_List_node_base4swap*;
|
||||||
_ZNSt6__norm15_List_node_base6unhookEv;
|
_ZNSt6__norm15_List_node_base6unhookEv;
|
||||||
|
|
@ -653,7 +659,7 @@ GLIBCXX_3.4.8 {
|
||||||
_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractI[^g]*;
|
_ZNSt13basic_istreamIwSt11char_traitsIwEE10_M_extractI[^g]*;
|
||||||
|
|
||||||
_ZSt21__copy_streambufs_eofI[cw]St11char_traitsI[cw]EE[il]PSt15basic_streambuf*;
|
_ZSt21__copy_streambufs_eofI[cw]St11char_traitsI[cw]EE[il]PSt15basic_streambuf*;
|
||||||
} GLIBCXX_3.4.7;
|
} GLIBCXX_3.4.8;
|
||||||
|
|
||||||
|
|
||||||
# Symbols in the support library (libsupc++) have their own tag.
|
# Symbols in the support library (libsupc++) have their own tag.
|
||||||
|
|
|
||||||
|
|
@ -1378,7 +1378,7 @@ ac_compiler_gnu=$ac_cv_c_compiler_gnu
|
||||||
### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
|
### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
|
||||||
|
|
||||||
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
||||||
libtool_VERSION=6:8:0
|
libtool_VERSION=6:9:0
|
||||||
|
|
||||||
|
|
||||||
# Find the rest of the source tree framework.
|
# Find the rest of the source tree framework.
|
||||||
|
|
|
||||||
|
|
@ -12,7 +12,7 @@ AC_CONFIG_HEADER(config.h)
|
||||||
### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
|
### am handles this now? ORIGINAL_LD_FOR_MULTILIBS=$LD
|
||||||
|
|
||||||
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
# For libtool versioning info, format is CURRENT:REVISION:AGE
|
||||||
libtool_VERSION=6:8:0
|
libtool_VERSION=6:9:0
|
||||||
AC_SUBST(libtool_VERSION)
|
AC_SUBST(libtool_VERSION)
|
||||||
|
|
||||||
# Find the rest of the source tree framework.
|
# Find the rest of the source tree framework.
|
||||||
|
|
|
||||||
|
|
@ -187,6 +187,7 @@ check_version(symbol& test, bool added)
|
||||||
known_versions.push_back("GLIBCXX_3.4.6");
|
known_versions.push_back("GLIBCXX_3.4.6");
|
||||||
known_versions.push_back("GLIBCXX_3.4.7");
|
known_versions.push_back("GLIBCXX_3.4.7");
|
||||||
known_versions.push_back("GLIBCXX_3.4.8");
|
known_versions.push_back("GLIBCXX_3.4.8");
|
||||||
|
known_versions.push_back("GLIBCXX_3.4.9");
|
||||||
known_versions.push_back("GLIBCXX_LDBL_3.4");
|
known_versions.push_back("GLIBCXX_LDBL_3.4");
|
||||||
known_versions.push_back("GLIBCXX_LDBL_3.4.7");
|
known_versions.push_back("GLIBCXX_LDBL_3.4.7");
|
||||||
known_versions.push_back("CXXABI_1.3");
|
known_versions.push_back("CXXABI_1.3");
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue