diff options
Diffstat (limited to 'debian')
-rw-r--r-- | debian/changelog | 4 | ||||
-rwxr-xr-x | debian/rules | 4 |
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)) |