diff options
author | Boyuan Yang <byang@debian.org> | 2020-10-30 23:02:24 -0400 |
---|---|---|
committer | Boyuan Yang <byang@debian.org> | 2020-10-30 23:02:24 -0400 |
commit | 50b8333eae258e9c8e94afa144e16c3752b2225d (patch) | |
tree | 654bd85dbf9fb3305e67cec1c2d1dc3c9117551d | |
parent | 28c2ad4b3db390d1ad468878a7d8b23846a0477b (diff) | |
download | libgav1-50b8333eae258e9c8e94afa144e16c3752b2225d.tar.gz libgav1-50b8333eae258e9c8e94afa144e16c3752b2225d.tar.bz2 libgav1-50b8333eae258e9c8e94afa144e16c3752b2225d.zip |
conform to Debian's ISA baseline requirement
-rwxr-xr-x | debian/rules | 23 |
1 files changed, 22 insertions, 1 deletions
diff --git a/debian/rules b/debian/rules index 6366686..b60e901 100755 --- a/debian/rules +++ b/debian/rules @@ -6,13 +6,34 @@ export DEB_BUILD_MAINT_OPTIONS = hardening=+all CXXFLAGS += $(CPPFLAGS) +EXTRA_CONFIG_FLAGS = + # try to fix FTBFS on mipsel ifneq (,$(filter $(DEB_HOST_ARCH), armel m68k mips mipsel powerpc powerpcspe sh4)) export DEB_LDFLAGS_MAINT_APPEND=-latomic 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 +endif + +ifneq (,$(filter $(DEB_HOST_ARCH), armel armhf)) + EXTRA_CONFIG_FLAGS += -DLIBGAV1_ENABLE_NEON=0 +endif + +ifneq (,$(filter $(DEB_HOST_ARCH), arm64)) + EXTRA_CONFIG_FLAGS += -DLIBGAV1_ENABLE_NEON=1 +endif + + + %: dh $@ override_dh_auto_configure: - dh_auto_configure -- -DBUILD_SHARED_LIBS=ON + dh_auto_configure -- + -DBUILD_SHARED_LIBS=ON \ + $(EXTRA_CONFIG_FLAGS) |