Source: pbcopper Version: 1.6.0+dfsg-1 Severity: serious Tags: patch ftbfs Justification: fails to build from source (but built successfully in the past)
Dear Maintainer, As can be seen on https://buildd.debian.org/status/logs.php?pkg=pbcopper&arch=ppc64el pbcopper currently ftbfs on pcp64el. I think this is a bug in simde: https://github.com/nemequ/simde/issues/325 but anyway, I'm attaching the workaround I just uploaded to Ubuntu. Cheers, mwh -- System Information: Debian Release: bullseye/sid APT prefers focal-updates APT policy: (500, 'focal-updates'), (500, 'focal-security'), (500, 'focal'), (400, 'focal-proposed'), (100, 'focal-backports') Architecture: amd64 (x86_64) Foreign Architectures: i386 Kernel: Linux 5.4.0-31-generic (SMP w/8 CPU cores) Kernel taint flags: TAINT_PROPRIETARY_MODULE, TAINT_OOT_MODULE Locale: LANG=en_US.UTF-8, LC_CTYPE=en_US.UTF-8 (charmap=UTF-8), LANGUAGE=en_US.UTF-8 (charmap=UTF-8) Shell: /bin/sh linked to /usr/bin/dash Init: systemd (via /run/systemd/system) LSM: AppArmor: enabled
--- a/src/align/cssw/ssw.c +++ b/src/align/cssw/ssw.c @@ -35,6 +35,9 @@ * */ +#ifdef __powerpc64__ +#define SIMDE_NO_NATIVE +#endif #define SIMDE_ENABLE_NATIVE_ALIASES #include "simde/x86/sse2.h" #include <stdint.h> --- a/src/align/cssw/ssw.h +++ b/src/align/cssw/ssw.h @@ -11,6 +11,9 @@ #ifndef SSW_H #define SSW_H +#ifdef __powerpc64__ +#define SIMDE_NO_NATIVE +#endif #define SIMDE_ENABLE_NATIVE_ALIASES #include "simde/x86/sse2.h" #include <stdint.h>