OSDN Git Service

2005-07-30 Andrew Pinski <pinskia@physics.uc.edu>
authorpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 30 Jul 2005 22:46:25 +0000 (22:46 +0000)
committerpinskia <pinskia@138bc75d-0d04-0410-961f-82ee72b054a4>
Sat, 30 Jul 2005 22:46:25 +0000 (22:46 +0000)
        * 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

libstdc++-v3/ChangeLog
libstdc++-v3/scripts/make_exports.pl

index 87cdb62..70bcbd9 100644 (file)
@@ -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
index e5a5832..5d1cd74 100644 (file)
@@ -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;