summaryrefslogtreecommitdiff
path: root/libstdc++-v3/scripts
diff options
context:
space:
mode:
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-30 22:46:25 +0000
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>2005-07-30 22:46:25 +0000
commit37ecfd3b3dc80ee7814b105185b9a59d00b274db (patch)
tree259106ddb50ee63c3f0d3867dc8d1f8434abfdae /libstdc++-v3/scripts
parenta2b1a05e75a0d5a6120792e12392ff3624eef95f (diff)
downloadgcc-37ecfd3b3dc80ee7814b105185b9a59d00b274db.tar.gz
2005-07-30 Andrew Pinski <pinskia@physics.uc.edu>
* scripts/make_exports.pl: Pass --strip-underscores to c++filt. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@102595 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libstdc++-v3/scripts')
-rw-r--r--libstdc++-v3/scripts/make_exports.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/scripts/make_exports.pl b/libstdc++-v3/scripts/make_exports.pl
index e5a58325ecb..5d1cd74a861 100644
--- a/libstdc++-v3/scripts/make_exports.pl
+++ b/libstdc++-v3/scripts/make_exports.pl
@@ -92,7 +92,7 @@ my %export_hash = ();
print STDERR 'nm -P '.(join ' ',@ARGV).'|';
open NM,'nm -P '.(join ' ',@ARGV).'|' or die $!;
# Talk to c++filt through a pair of file descriptors.
-open2(*FILTIN, *FILTOUT, "c++filt") or die $!;
+open2(*FILTIN, *FILTOUT, "c++filt --strip-underscores") or die $!;
NAME: while (<NM>) {
my $i;
chomp;