This is an automated email from the git hooks/post-receive script. misterc-guest pushed a commit to branch experimental in repository seqan2.
commit 06b4aa44a3af711e7f050c512ac24a1ed95e29aa Author: Michael R. Crusoe <[email protected]> Date: Thu Jan 4 05:10:31 2018 -0800 enable asyncio everywhere & disable parallel building on powerpcspe --- debian/changelog | 7 +++++++ debian/rules | 12 ++++++------ 2 files changed, 13 insertions(+), 6 deletions(-) diff --git a/debian/changelog b/debian/changelog index 81b2e40..a935ce7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,10 @@ +seqan2 (2.3.2.001platform-issues10-6f85721+dfsg-2) experimental; urgency=medium + + * enable asyncio on all archs as a test + * disable parallel building on powerpcspe + + -- Michael R. Crusoe <[email protected]> Thu, 04 Jan 2018 05:11:43 -0800 + seqan2 (2.3.2.001platform-issues10-6f85721+dfsg-1) experimental; urgency=medium * Hopefully final update from upstream :-) diff --git a/debian/rules b/debian/rules index 962cf9e..7264f93 100755 --- a/debian/rules +++ b/debian/rules @@ -24,7 +24,7 @@ ifneq (,$(filter mips mipsel mips64el,$(DEB_BUILD_ARCH))) DEB_CXXFLAGS_MAINT_APPEND+=-mxgot endif # Disable parallel building on some build archs to save memory -ifneq (,$(filter armel armhf sh4 kfreebsd%,$(DEB_BUILD_ARCH))) +ifneq (,$(filter armel armhf sh4 kfreebsd% powerpcspe,$(DEB_BUILD_ARCH))) $(info $$DEB_BUILD_OPTIONS was [${DEB_BUILD_OPTIONS}]) TDBO := $(DEB_BUILD_OPTIONS) DEB_BUILD_OPTIONS=parallel=1,$(filter $(TDBO), parallel) @@ -32,11 +32,11 @@ ifneq (,$(filter armel armhf sh4 kfreebsd%,$(DEB_BUILD_ARCH))) endif $(info $$DEB_BUILD_OPTIONS is [${DEB_BUILD_OPTIONS}]) -ifneq (,$(filter mips64el ppc64el s390x alpha hppa powerpc ppc64 sparc64,$(DEB_HOST_ARCH))) -# Disable async io on certain target archs, as per upstream -# https://github.com/seqan/seqan/issues/1861#issuecomment-336484553 - DEB_CXXFLAGS_MAINT_APPEND+=-DSEQAN_ASYNC_IO=0 -endif +# ifneq (,$(filter mips64el ppc64el s390x alpha hppa powerpc ppc64 sparc64,$(DEB_HOST_ARCH))) +# # Disable async io on certain target archs, as per upstream +# # https://github.com/seqan/seqan/issues/1861#issuecomment-336484553 +# DEB_CXXFLAGS_MAINT_APPEND+=-DSEQAN_ASYNC_IO=0 +# endif # As per upstream's instructions DEB_CXXFLAGS_MAINT_APPEND+=-DNDEBUG -O3 -- Alioth's /usr/local/bin/git-commit-notice on /srv/git.debian.org/git/debian-med/seqan2.git _______________________________________________ debian-med-commit mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit
