mirror of
https://sourceware.org/git/glibc.git
synced 2025-08-08 17:42:12 +03:00
* scripts/abilist.awk: Avoid strtonum function, not there in mawk.
Just produce hex output for datum sizes.
This commit is contained in:
@@ -1,5 +1,8 @@
|
|||||||
2002-11-23 Roland McGrath <roland@redhat.com>
|
2002-11-23 Roland McGrath <roland@redhat.com>
|
||||||
|
|
||||||
|
* scripts/abilist.awk: Avoid strtonum function, not there in mawk.
|
||||||
|
Just produce hex output for datum sizes.
|
||||||
|
|
||||||
* elf/Makefile ($(objpfx)librtld.mk): Tighten up regexp.
|
* elf/Makefile ($(objpfx)librtld.mk): Tighten up regexp.
|
||||||
Reported by Luca Barbieri <ldb@ldb.ods.org>.
|
Reported by Luca Barbieri <ldb@ldb.ods.org>.
|
||||||
|
|
||||||
|
@@ -15,7 +15,9 @@ $2 == "l" { next }
|
|||||||
$2 == "g" || $2 == "w" && NF == 7 {
|
$2 == "g" || $2 == "w" && NF == 7 {
|
||||||
weak = ($2 == "w") ? "weak" : "strong";
|
weak = ($2 == "w") ? "weak" : "strong";
|
||||||
type = $3;
|
type = $3;
|
||||||
size = strtonum("0x" $5);
|
size = $5;
|
||||||
|
sub(/^0*/, "", size);
|
||||||
|
size = "0x" size;
|
||||||
version = $6;
|
version = $6;
|
||||||
symbol = $7;
|
symbol = $7;
|
||||||
gsub(/[()]/, "", version);
|
gsub(/[()]/, "", version);
|
||||||
|
Reference in New Issue
Block a user