blastdb_version back to 4 pending a proper fix. Some things,
including in particular q2-feature-classifier, will still explicitly
request version 5, but everything else should be OK. (See #1077777.)
+ * debian/rules: Try disabling optimization altogether on sh4.
- -- Aaron M. Ucko <ucko@debian.org> Tue, 06 Aug 2024 21:37:01 -0400
+ -- Aaron M. Ucko <ucko@debian.org> Tue, 06 Aug 2024 21:42:28 -0400
ncbi-blast+ (2.16.0+ds-5) unstable; urgency=medium
include /usr/share/dpkg/buildflags.mk
-ifneq (,$(filter mips% sh4,$(DEB_HOST_ARCH)))
+ifneq (,$(filter mips%,$(DEB_HOST_ARCH)))
CXXFLAGS := $(CXXFLAGS:-O%=-O)
DEB_CONFIGURE_EXTRA_FLAGS += FAST_CXXFLAGS=-O
endif
+ifeq (sh4,$(DEB_HOST_ARCH))
+DEB_CONFIGURE_COMMON_FLAGS += --without-optimization
+endif
export CFLAGS CPPFLAGS CXXFLAGS LDFLAGS MAKE