[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

Bug#1020631: svt-av1: Please build with -DCOMPILE_C_ONLY=ON on x32



Source: svt-av1
Version: 1.2.1+dfsg-1
Severity: normal
Tags: patch

Hello!

Like on i386, svt-av1 needs to be built with -DCOMPILE_C_ONLY=ON on
x32 in order to succeed:

--- debian/rules.orig   2022-08-26 14:50:39.000000000 +0200
+++ debian/rules        2022-09-24 13:48:52.115927410 +0200
@@ -7,7 +7,7 @@
 
 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 
-ifeq (i386,$(DEB_HOST_ARCH))
+ifneq (,$(filter i386 x32, $(DEB_HOST_ARCH)))
 CONFIG_ARGS += -DCOMPILE_C_ONLY=ON
 endif

Could implement the above change for the next upload?

Thanks,
Adrian

--
 .''`.  John Paul Adrian Glaubitz
: :' :  Debian Developer
`. `'   Physicist
  `-    GPG: 62FF 8A75 84E0 2956 9546  0006 7426 3B37 F5B5 F913
--- debian/rules.orig	2022-08-26 14:50:39.000000000 +0200
+++ debian/rules	2022-09-24 13:48:52.115927410 +0200
@@ -7,7 +7,7 @@
 
 DEB_HOST_ARCH ?= $(shell dpkg-architecture -qDEB_HOST_ARCH)
 
-ifeq (i386,$(DEB_HOST_ARCH))
+ifneq (,$(filter i386 x32, $(DEB_HOST_ARCH)))
 CONFIG_ARGS += -DCOMPILE_C_ONLY=ON
 endif
 

Reply to: