diff options
author | Geoffrey Keating <geoffk@apple.com> | 2006-10-15 07:52:18 +0000 |
---|---|---|
committer | Geoffrey Keating <geoffk@gcc.gnu.org> | 2006-10-15 07:52:18 +0000 |
commit | 9d6968a4dac504d9353c68944b401666922f1f93 (patch) | |
tree | 5d415847dc7758268937f797d30a2e7c4b339cd3 /libstdc++-v3/scripts | |
parent | 5b043f084508752b8c5ae7659e01d6486455c166 (diff) | |
download | gcc-9d6968a4dac504d9353c68944b401666922f1f93.zip gcc-9d6968a4dac504d9353c68944b401666922f1f93.tar.gz gcc-9d6968a4dac504d9353c68944b401666922f1f93.tar.bz2 |
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
Diffstat (limited to 'libstdc++-v3/scripts')
-rw-r--r-- | libstdc++-v3/scripts/make_exports.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libstdc++-v3/scripts/make_exports.pl b/libstdc++-v3/scripts/make_exports.pl index a20b2dc..7c9e4e3 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 (<NM>) { my $i; chomp; |