diff options
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/abilist.awk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 385e85da80..cd030e4c9d 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -25,6 +25,9 @@ $2 == "g" || $2 == "w" && NF == 7 { if (type == "D" && $4 == ".tbss") { print symbol, version, weak, "TLS", size | outpipe; } + else if (type == "D" && $4 == ".opd") { + print symbol, version, weak, "FDESC" | outpipe; + } else if (type == "DO" && $4 == "*ABS*") { print symbol, version, weak, "ABS" | outpipe; } |