[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#433388: mklibs-readelf: Add support for STT_NOTYPE as needed for alpha



Package: mklibs
Version: 0.1.23
Severity: important
Tags: patch

Please apply attach patch soonest.
I understand this is the change needed to get mklibs working again for 
alpha so we will finally have working daily images again.

diff -Nru /tmp/ovTrMS7aP7/mklibs-0.1.23/debian/changelog /tmp/nNr4BdcWrq/mklibs-0.1.24/debian/changelog
--- /tmp/ovTrMS7aP7/mklibs-0.1.23/debian/changelog	2007-06-11 09:58:05.000000000 +0200
+++ /tmp/nNr4BdcWrq/mklibs-0.1.24/debian/changelog	2007-07-16 21:59:13.000000000 +0200
@@ -1,3 +1,9 @@
+mklibs (0.1.24) UNRELEASED; urgency=low
+
+  * mklibs-readelf: add support for STT_NOTYPE as required for alpha.
+
+ -- Frans Pop <fjp@debian.org>  Mon, 16 Jul 2007 21:58:23 +0200
+
 mklibs (0.1.23) unstable; urgency=low
 
   * Fix ld name detection.
diff -Nru /tmp/ovTrMS7aP7/mklibs-0.1.23/src/mklibs-readelf/main.cpp /tmp/nNr4BdcWrq/mklibs-0.1.24/src/mklibs-readelf/main.cpp
--- /tmp/ovTrMS7aP7/mklibs-0.1.23/src/mklibs-readelf/main.cpp	2007-06-06 09:56:43.000000000 +0200
+++ /tmp/nNr4BdcWrq/mklibs-0.1.24/src/mklibs-readelf/main.cpp	2007-07-16 21:58:14.000000000 +0200
@@ -72,7 +72,7 @@
     uint8_t type = symbol->get_type ();
     if (shndx == SHN_UNDEF || shndx == SHN_ABS)
       continue;
-    if (type == STT_OBJECT || type == STT_FUNC || type == STT_COMMON || type == STT_TLS)
+    if (type == STT_OBJECT || type == STT_FUNC || type == STT_COMMON || type == STT_TLS || type == STT_NOTYPE)
       std::cout << symbol->get_name_string () << ' ' << (bind == STB_WEAK ? "True" : "False") << '\n';
   }
 }

Attachment: pgpyxK4CLg8Wn.pgp
Description: PGP signature


Reply to: