mirror of
https://git.yoctoproject.org/poky
synced 2026-04-14 17:02:22 +02:00
insane: fix gnu-hash-style check
Fix gnu-hash-style check that always returned True after commit [1]
leading to false positive presence of "GNU_HASH" in objdump output.
Fixes: 9ff90bf04a4c ("mips: Enable gnu-hash-style on glibc") [1]
(From OE-Core rev: 996010f1b9ca98592e2c87e1adcb0c79b86517b7)
Signed-off-by: Sumit Garg <sumit.garg@linaro.org>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
f50b17b556
commit
c1b2e1b424
@@ -438,7 +438,7 @@ def package_qa_hash_style(path, name, d, elf, messages):
|
||||
for line in phdrs.split("\n"):
|
||||
if "SYMTAB" in line:
|
||||
has_syms = True
|
||||
if "GNU_HASH" or "DT_MIPS_XHASH" in line:
|
||||
if "GNU_HASH" in line or "DT_MIPS_XHASH" in line:
|
||||
sane = True
|
||||
if ("[mips32]" in line or "[mips64]" in line) and d.getVar('TCLIBC') == "musl":
|
||||
sane = True
|
||||
|
||||
Reference in New Issue
Block a user