aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndrew Pinski <pinskia@physics.uc.edu>2005-07-30 22:46:25 +0000
committerAndrew Pinski <pinskia@gcc.gnu.org>2005-07-30 15:46:25 -0700
commit31537df3e5592bca084bb16afc174c4dc222eac3 (patch)
tree259106ddb50ee63c3f0d3867dc8d1f8434abfdae
parent0bde02b33905ecfb252b96cbe2ea257f0c0606da (diff)
downloadgcc-31537df3e5592bca084bb16afc174c4dc222eac3.zip
gcc-31537df3e5592bca084bb16afc174c4dc222eac3.tar.gz
gcc-31537df3e5592bca084bb16afc174c4dc222eac3.tar.bz2
make_exports.pl: Pass --strip-underscores to c++filt.
2005-07-30 Andrew Pinski <pinskia@physics.uc.edu> * scripts/make_exports.pl: Pass --strip-underscores to c++filt. From-SVN: r102595
-rw-r--r--libstdc++-v3/ChangeLog4
-rw-r--r--libstdc++-v3/scripts/make_exports.pl2
2 files changed, 5 insertions, 1 deletions
diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog
index 87cdb62..70bcbd9 100644
--- a/libstdc++-v3/ChangeLog
+++ b/libstdc++-v3/ChangeLog
@@ -1,3 +1,7 @@
+2005-07-30 Andrew Pinski <pinskia@physics.uc.edu>
+
+ * scripts/make_exports.pl: Pass --strip-underscores to c++filt.
+
2005-07-29 H.J. Lu <hongjiu.lu@intel.com>
PR libstdc++/22284
diff --git a/libstdc++-v3/scripts/make_exports.pl b/libstdc++-v3/scripts/make_exports.pl
index e5a5832..5d1cd74 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;