diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 87cdb625fc0..70bcbd95ac0 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,7 @@ +2005-07-30 Andrew Pinski + + * scripts/make_exports.pl: Pass --strip-underscores to c++filt. + 2005-07-29 H.J. Lu PR libstdc++/22284 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 () { my $i; chomp;