aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorH.J. Lu <hjl.tools@gmail.com>2015-09-10 13:41:43 -0700
committerH.J. Lu <hjl.tools@gmail.com>2015-09-15 09:43:35 -0700
commitad0a4cef8d88a8985820228413afde66af1f52eb (patch)
treef0cf2236daf97727fe533ff1930edd6307f77cfc
parent1c810396a130fc4cc8ad0bb7d7438b58bbac6e78 (diff)
downloadglibc-ad0a4cef8d88a8985820228413afde66af1f52eb.zip
glibc-ad0a4cef8d88a8985820228413afde66af1f52eb.tar.gz
glibc-ad0a4cef8d88a8985820228413afde66af1f52eb.tar.bz2
Add STB_SECONDARY support to conform/linknamespace.pl
* conform/linknamespace.pl (list_syms): Support STB_SECONDARY.
-rw-r--r--conform/linknamespace.pl2
1 files changed, 1 insertions, 1 deletions
diff --git a/conform/linknamespace.pl b/conform/linknamespace.pl
index 15fa613..b39be3c 100644
--- a/conform/linknamespace.pl
+++ b/conform/linknamespace.pl
@@ -83,7 +83,7 @@ sub list_syms {
my ($bind) = $fields[4];
my ($ndx) = $fields[6];
my ($sym) = $fields[7];
- if ($bind ne "GLOBAL" && $bind ne "WEAK") {
+ if ($bind ne "GLOBAL" && $bind ne "WEAK" && $bind ne "SECOND") {
next;
}
if ($sym !~ /^\w+$/) {