From: Geoffrey Keating Date: Sun, 15 Oct 2006 07:52:18 +0000 (+0000) Subject: make_exports.pl: Use -_ rather than --strip-underscores or --strip-underscore. X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=9d6968a4dac504d9353c68944b401666922f1f93;p=gcc.git make_exports.pl: Use -_ rather than --strip-underscores or --strip-underscore. * scripts/make_exports.pl: Use -_ rather than --strip-underscores or --strip-underscore. From-SVN: r117742 --- diff --git a/libstdc++-v3/ChangeLog b/libstdc++-v3/ChangeLog index 3f465cf26e9..b87cb77408a 100644 --- a/libstdc++-v3/ChangeLog +++ b/libstdc++-v3/ChangeLog @@ -1,3 +1,8 @@ +2006-10-15 Geoffrey Keating + + * scripts/make_exports.pl: Use -_ rather than --strip-underscores + or --strip-underscore. + 2006-10-14 Geoffrey Keating * aclocal.m4: Regenerate. diff --git a/libstdc++-v3/scripts/make_exports.pl b/libstdc++-v3/scripts/make_exports.pl index a20b2dc6f4c..7c9e4e31d4f 100644 --- a/libstdc++-v3/scripts/make_exports.pl +++ b/libstdc++-v3/scripts/make_exports.pl @@ -92,7 +92,7 @@ my $nm = $ENV{'NM_FOR_TARGET'} || "nm"; 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 --strip-underscores") or die $!; +open2(*FILTIN, *FILTOUT, "c++filt -_") or die $!; NAME: while () { my $i; chomp;