Stephan Schreiber wrote:
block 730157 by 718047
thanks

This is likely bug#718047. Removing the --as-needed switch from the ld invoke is the tentative workaround for that.
I just tried to reproduce the issue on merulo and the package failed with a ld segfault but on a different file, I guess whether a given binary succeeds or fails to link is somewhat sensitive to the environment the compiler is running in.

Anyway I was able to disable --as-needed and get a successful build. Patch is attatched, no intent to NMU.
diff -ur kdepimlibs-4.11.3/debian/rules kdepimlibs-4.11.3.new/debian/rules
--- kdepimlibs-4.11.3/debian/rules	2013-11-06 17:42:55.000000000 +0000
+++ kdepimlibs-4.11.3.new/debian/rules	2013-11-23 23:18:16.000000000 +0000
@@ -1,5 +1,10 @@
 #!/usr/bin/make -f
 
+DEB_HOST_ARCH:=$(shell dpkg-architecture -qDEB_HOST_ARCH)
+ifeq ($(DEB_HOST_ARCH),ia64)
+  dqk_link_with_as_needed := no
+endif
+
 include /usr/share/pkg-kde-tools/qt-kde-team/2/debian-qt-kde.mk
 libpkgs_addsubst_allLibraries = kdepimlibs5-dev kdepimlibs-dbg
 libpkgs_gen_strict_local_shlibs = $(libpkgs_all_packages)

Reply via email to