diff options
author | Phil Edwards <pme@gcc.gnu.org> | 2003-07-06 04:07:36 +0000 |
---|---|---|
committer | Phil Edwards <pme@gcc.gnu.org> | 2003-07-06 04:07:36 +0000 |
commit | e6b7a69ab66f49a531ff8d2b56a72eca31676435 (patch) | |
tree | a48885b9c6d905ad208f5800cc45b68bdab46d3e /libstdc++-v3/aclocal.m4 | |
parent | 0a72704b04e73d1173ae5e1c99464bea55a698b4 (diff) | |
download | gcc-e6b7a69ab66f49a531ff8d2b56a72eca31676435.zip gcc-e6b7a69ab66f49a531ff8d2b56a72eca31676435.tar.gz gcc-e6b7a69ab66f49a531ff8d2b56a72eca31676435.tar.bz2 |
acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Bump minimal version requirement.
2003-07-05 Phil Edwards <pme@gcc.gnu.org>
* acinclude.m4 (GLIBCXX_ENABLE_SYMVERS): Bump minimal version
requirement. Add port_specific_symbol_file variable.
* configure.host: Add docs for port_specific_symbol_file.
Clean up try_cpu block for x86.
* config/linker-map.gnu: No more "last symbol can't have a
semicolon" kaka. Add hook for port-specific symbols.
* src/Makefile.am: Remove trailing whitespace.
(libstdc++-symbol.ver): Detect the presence of port-specific
symbols, and add them accordingly.
* docs/html/17_intro/porting.texi: Bring up to date.
* src/Makefile.in, aclocal.m4, configure,
docs/html/17_intro/porting.html: Regenerated.
From-SVN: r68992
Diffstat (limited to 'libstdc++-v3/aclocal.m4')
-rw-r--r-- | libstdc++-v3/aclocal.m4 | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libstdc++-v3/aclocal.m4 b/libstdc++-v3/aclocal.m4 index 1a5563c..17a95f6 100644 --- a/libstdc++-v3/aclocal.m4 +++ b/libstdc++-v3/aclocal.m4 @@ -2270,9 +2270,9 @@ if test $enable_symvers != no; then AC_MSG_RESULT($glibcxx_shared_libgcc) fi -# For GNU ld, we need at least this version. It's 2.12 in the same format +# For GNU ld, we need at least this version. It's 2.14 in the same format # as the tested-for version. See GLIBCXX_CHECK_LINKER_FEATURES for more. -glibcxx_min_gnu_ld_version=21200 +glibcxx_min_gnu_ld_version=21400 # Check to see if unspecified "yes" value can win, given results # above. @@ -2317,6 +2317,7 @@ case $enable_symvers in esac AC_SUBST(SYMVER_MAP) +AC_SUBST(port_specific_symbol_file) AM_CONDITIONAL(GLIBCXX_BUILD_VERSIONED_SHLIB, test $enable_symvers != no) AC_MSG_CHECKING([versioning on shared library symbols]) AC_MSG_RESULT($enable_symvers) |