From 3064d350e1cb234d67177d748f81663546fe950b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C5=81ukasz=20Matysiak?= Date: Wed, 11 Oct 2023 13:22:05 +0200 Subject: Enable compilation of PlatformAssembler_X86_64_SysV on VxWorks x86_64 VxWorks doesn't match any of the ifdefs conditions that guard PlatformAssembler_X86_64_SysV. Because of that, jit fails to compile. Solve the problem by adding VXWORKS as one of the supported systems. Task-number: QTBUG-115777 Change-Id: Ifb035dc54b9d15e585dd7a7f7480e051016be4ca Reviewed-by: Ulf Hermann --- src/qml/jit/qv4assemblercommon_p.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/qml/jit') diff --git a/src/qml/jit/qv4assemblercommon_p.h b/src/qml/jit/qv4assemblercommon_p.h index 0c94b4bf20..6840dab340 100644 --- a/src/qml/jit/qv4assemblercommon_p.h +++ b/src/qml/jit/qv4assemblercommon_p.h @@ -33,7 +33,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) || defined(Q_OS_SOLARIS) +#if defined(Q_OS_LINUX) || defined(Q_OS_QNX) || defined(Q_OS_FREEBSD) || defined(Q_OS_DARWIN) || defined(Q_OS_SOLARIS) || defined(Q_OS_VXWORKS) class PlatformAssembler_X86_64_SysV : public JSC::MacroAssembler { -- cgit v1.2.3