mirror of
git://gcc.gnu.org/git/gcc.git
synced 2024-12-20 18:50:00 +08:00
37cea03434
2002-02-14 Benjamin Kosnik <bkoz@redhat.com> * config/linker-map.gnu: Change tag from GCC_3.1 to GLIBCPP_3.1. Add typeinfo bits. Smooth. * aclocal.m4: Regenerate. * configure: Same. * src/Makefile.in: Same. From-SVN: r49780
106 lines
3.0 KiB
Gnuplot
106 lines
3.0 KiB
Gnuplot
## Linker script for GNU ld 2.11.94+ only.
|
|
##
|
|
## Copyright (C) 2002 Free Software Foundation, Inc.
|
|
##
|
|
## This file is part of the libstdc++ version 3 distribution.
|
|
##
|
|
## This file is part of the GNU ISO C++ Library. This library is free
|
|
## software; you can redistribute it and/or modify it under the
|
|
## terms of the GNU General Public License as published by the
|
|
## Free Software Foundation; either version 2, or (at your option)
|
|
## any later version.
|
|
##
|
|
## This library is distributed in the hope that it will be useful,
|
|
## but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
## GNU General Public License for more details.
|
|
##
|
|
## You should have received a copy of the GNU General Public License along
|
|
## with this library; see the file COPYING. If not, write to the Free
|
|
## Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
|
|
## USA.
|
|
|
|
|
|
GLIBCPP_3.1 {
|
|
|
|
global:
|
|
|
|
## Names inside the 'extern' block are demangled names.
|
|
## All but the last are terminated with a semicolon.
|
|
extern "C++"
|
|
{
|
|
std::[A-Za-z]*;
|
|
std::__throw_*;
|
|
std::__basic_file*;
|
|
std::__num_base*;
|
|
std::__timepunct*
|
|
};
|
|
|
|
## Names not in an 'extern' block are mangled names.
|
|
__cxa_*;
|
|
__gxx_personality_v0;
|
|
__dynamic_cast;
|
|
|
|
## operator new(unsigned)
|
|
_Znwj;
|
|
|
|
## operator delete(void*)
|
|
_ZdlPv;
|
|
|
|
## operator new[](unsigned)
|
|
_Znaj;
|
|
|
|
## operator delete[](void*)
|
|
_ZdaPv;
|
|
|
|
# vtable
|
|
# XXX export them all?
|
|
_ZTVSt*;
|
|
_ZTVN10__cxxabiv1*;
|
|
|
|
# typeinfo
|
|
# XXX export them all?
|
|
_ZTSSt*;
|
|
|
|
|
|
######## hmmmmm, the rediculous hacks section....
|
|
## std::_S_rb_tree_red
|
|
_ZSt14_S_rb_tree_red;
|
|
|
|
## std::_S_rb_tree_black
|
|
_ZSt16_S_rb_tree_black;
|
|
|
|
## std::__stl_threshold
|
|
_ZSt15__stl_threshold;
|
|
|
|
## std::__stl_chunk_size
|
|
_ZSt16__stl_chunk_size;
|
|
|
|
## VTT for std::basic_istringstream<char, std::char_traits<char>, std::allocator<char> >
|
|
_ZTTSt19basic_istringstreamIcSt11char_traitsIcESaIcEE;
|
|
|
|
## VTT for std::basic_ostringstream<char, std::char_traits<char>, std::allocator<char> >
|
|
_ZTTSt19basic_ostringstreamIcSt11char_traitsIcESaIcEE;
|
|
|
|
# this is a function, "void std::__convert_to_v(stuff)", and as such
|
|
# doesn't work well in the demangled section above
|
|
_ZSt14__convert_to_v*;
|
|
|
|
# likewise for "std::_Setfill<char> std::setfill<char>(char)"
|
|
_ZSt7setfillIcESt8_SetfillIT_ES1_;
|
|
|
|
# likewise for "bool std::has_facet<std::ctype<char> >(std::locale const&)"
|
|
_ZSt9has_facetISt5ctypeIcEEbRKSt6locale;
|
|
|
|
# likewise for "bool
|
|
# std::has_facet<std::num_put<char, std::ostreambuf_iterator<char,
|
|
# std::char_traits<char> > > >(std::locale const&)"
|
|
_ZSt9has_facetISt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale;
|
|
|
|
# ditto for istreambuf_iterator
|
|
_ZSt9has_facetISt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEEEbRKSt6locale;
|
|
|
|
local:
|
|
*;
|
|
};
|