Hi,

If the flag MPQC_NEW_FEATURES is disabled, for mips and mipsel this issue does 
not appear.

I have created and attached a patch which disables MPQC_NEW_FEATURES for these 
arches.
Patch could be expanded to support other architectures(armhf, hppa, powerpc) 
with the same problem.

Regards,
Radovan
--- mpqc3-0.0~git20170114_orig/debian/rules	2017-01-20 22:19:14.000000000 +0000
+++ mpqc3-0.0~git20170114/debian/rules	2017-03-09 11:14:55.000000000 +0000
@@ -4,13 +4,20 @@
 export CXXFLAGS=-g -O2 -std=c++11
 export OMPI_MCA_orte_rsh_agent=/bin/false
 
+DEB_BUILD_ARCH ?= $(shell dpkg-architecture -qDEB_BUILD_ARCH)
+ifneq (,$(filter $(DEB_BUILD_ARCH),mips mipsel))
+	MPQC_FEATURES = 0
+else
+	MPQC_FEATURES = 1
+endif
+
 %:
 	dh $@ --buildsystem=cmake
 
 override_dh_auto_configure:
 	dh_auto_configure -- 		\
 		-DMPI_C_COMPILER=mpicc	\
-		-DMPQC_NEW_FEATURES=1	\
+		-DMPQC_NEW_FEATURES=$(MPQC_FEATURES)	\
 		-DBOOST=/usr
 
 override_dh_auto_install:

Reply via email to