Commit 31537df3 by Andrew Pinski Committed by Andrew Pinski

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
parent 0bde02b3
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
......
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment