From: Debian Qt/KDE Maintainers Date: Thu, 11 Dec 2025 10:02:24 +0000 (+0300) Subject: Enable compilation of PlatformAssembler_X86_64_SysV on GNU/Hurd X-Git-Tag: archive/raspbian/5.15.17+dfsg-4+rpi1^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=49068a6d0d50a782e28a6d78fe579a6c94b871ed;p=qtdeclarative-opensource-src.git Enable compilation of PlatformAssembler_X86_64_SysV on GNU/Hurd Origin: upstream, https://code.qt.io/cgit/qt/qtdeclarative.git/commit/?id=136bd72b35907e53 Last-Update: 2025-09-28 Otherwise jit fails to compile on x86_64 GNU/Hurd. Gbp-Pq: Name hurd_x86_64_jit.patch --- diff --git a/src/qml/jit/qv4assemblercommon_p.h b/src/qml/jit/qv4assemblercommon_p.h index c3b1eb34e..9f8179233 100644 --- a/src/qml/jit/qv4assemblercommon_p.h +++ b/src/qml/jit/qv4assemblercommon_p.h @@ -66,7 +66,7 @@ namespace QV4 { namespace JIT { #if defined(Q_PROCESSOR_X86_64) || defined(ENABLE_ALL_ASSEMBLERS_FOR_REFACTORING_PURPOSES) -#if defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD) || defined(Q_OS_DARWIN) +#if defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD) || defined(Q_OS_DARWIN) || defined(Q_OS_HURD) class PlatformAssembler_X86_64_SysV : public JSC::MacroAssembler {