Comment 6 for bug 1489379

Revision history for this message
bugproxy (bugproxy) wrote : Comment bridged from LTC Bugzilla

------- Comment From <email address hidden> 2015-09-03 11:26 EDT-------
Fortunately enough, the *only* ELF (binary/shared-library) in the multipath-udeb that requires libgcc_s is... libchecktur.so
(C'mon.. otherwise we wouldn't be doing this :-)

$ dpkg-buildpackage
...
$ find debian/tmp-multipath-udeb/ \
| while read file; do \
file $file | grep -q ELF || continue
objdump -x $file | grep -q 'NEEDED.*libgcc_s' || continue
echo "$file needs libgcc_s"
done
debian/tmp-multipath-udeb/lib/multipath/libchecktur.so needs libgcc_s
$