aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoyuan Yang <byang@debian.org>2020-10-31 12:24:37 -0400
committerBoyuan Yang <byang@debian.org>2020-10-31 12:26:38 -0400
commit5fabf2142fa22544cc33bdf3d45b06af8c6c66a4 (patch)
treed57d6b685e63d0a140b1e190b7d0a720c204a781
parent381a6f76d6b357814caec3be7ff37a9507f0edb0 (diff)
downloadlibgav1-5fabf2142fa22544cc33bdf3d45b06af8c6c66a4.tar.gz
libgav1-5fabf2142fa22544cc33bdf3d45b06af8c6c66a4.tar.bz2
libgav1-5fabf2142fa22544cc33bdf3d45b06af8c6c66a4.zip
Prepare new upload.
-rw-r--r--debian/changelog4
-rwxr-xr-xdebian/rules4
2 files changed, 5 insertions, 3 deletions
diff --git a/debian/changelog b/debian/changelog
index 387e4e6..6476d02 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,8 +1,10 @@
libgav1 (0.16.0-4) unstable; urgency=medium
+ * Team upload.
* debian/libgav1-0.symbols: Try to distinguish by symbol bits.
+ * debian/rules: Also explicitly disable AVX2 per baseline.
- -- Boyuan Yang <byang@debian.org> Sat, 31 Oct 2020 12:20:46 -0400
+ -- Boyuan Yang <byang@debian.org> Sat, 31 Oct 2020 12:26:14 -0400
libgav1 (0.16.0-3) unstable; urgency=medium
diff --git a/debian/rules b/debian/rules
index a753071..216424e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -16,8 +16,8 @@ endif
# Conform to Debian's baseline requirement
# https://wiki.debian.org/ArchitectureSpecificsMemo
-ifneq (,$(filter $(DEB_HOST_ARCH), i386 amd64))
- EXTRA_CONFIG_FLAGS += -DLIBGAV1_ENABLE_SSE4_1=0
+ifneq (,$(filter $(DEB_HOST_ARCH), i386 amd64 x32))
+ EXTRA_CONFIG_FLAGS += -DLIBGAV1_ENABLE_SSE4_1=0 -DLIBGAV1_ENABLE_AVX2=0
endif
ifneq (,$(filter $(DEB_HOST_ARCH), armel armhf))