diff options
-rw-r--r-- | scripts/abilist.awk | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/scripts/abilist.awk b/scripts/abilist.awk index 6e413f524b..c25cbc0934 100644 --- a/scripts/abilist.awk +++ b/scripts/abilist.awk @@ -44,6 +44,10 @@ $2 == "g" || $2 == "w" && NF == 7 { print symbol, version, weak, "?", type, $4, $5; next; } + if (size == " 0x") { + print symbol, version, weak, "?", type, $4, $5; + next; + } # Disabled -- weakness should not matter to shared library ABIs any more. #if (weak == "w") type = tolower(type); |