diff mbox series

[2/2] insane: remove now obsolete special case for musl on mips

Message ID 20241009104716.711424-2-ross.burton@arm.com
State New
Headers show
Series [1/2] bitbake.conf: don't force musl on mips to use classic sysv hashing | expand

Commit Message

Ross Burton Oct. 9, 2024, 10:47 a.m. UTC
We don't need to special-case musl-on-mips now that the link hash is the
correct type by default.

Signed-off-by: Ross Burton <ross.burton@arm.com>
---
 meta/classes-global/insane.bbclass | 2 --
 1 file changed, 2 deletions(-)
diff mbox series

Patch

diff --git a/meta/classes-global/insane.bbclass b/meta/classes-global/insane.bbclass
index 231d6390ff8..c6991a7a621 100644
--- a/meta/classes-global/insane.bbclass
+++ b/meta/classes-global/insane.bbclass
@@ -419,8 +419,6 @@  def package_qa_hash_style(path, name, d, elf):
             has_syms = True
         if "GNU_HASH" in line or "MIPS_XHASH" in line:
             sane = True
-        if ("[mips32]" in line or "[mips64]" in line) and d.getVar('TCLIBC') == "musl":
-            sane = True
     if has_syms and not sane:
         path = package_qa_clean_path(path, d, name)
         oe.qa.handle_error("ldflags", "File %s in package %s doesn't have GNU_HASH (didn't pass LDFLAGS?)" % (path, name), d)