diff options
author | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 04:07:36 +0000 |
---|---|---|
committer | pme <pme@138bc75d-0d04-0410-961f-82ee72b054a4> | 2003-07-06 04:07:36 +0000 |
commit | 196534dda29cad4bf49d64db900417bcab371e28 (patch) | |
tree | a48885b9c6d905ad208f5800cc45b68bdab46d3e /libstdc++-v3/aclocal.m4 | |
parent | a681799d04240265cb90d537361feb65ae52399c (diff) | |
download | gcc-196534dda29cad4bf49d64db900417bcab371e28.tar.gz |
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.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@68992 138bc75d-0d04-0410-961f-82ee72b054a4
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 1a5563ce0bc..17a95f69c45 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) |