The branch, master has been updated
via 17456c553ebefb15e52ff1a11234098d173cda64 (commit)
from 3beaa2d70f99e6ec28c0120385ccd2abc922be25 (commit)
- Log -----------------------------------------------------------------
commit 17456c553ebefb15e52ff1a11234098d173cda64
Author: Kacper MichajÅow <[email protected]>
AuthorDate: Sun Nov 30 07:38:31 2025 +0100
Commit: Kacper MichajÅow <[email protected]>
CommitDate: Sun Nov 30 22:07:39 2025 +0000
tests/checkasm: fix check for 32-bit Windows build
With --disable-asm, ARCH_X86_32 is set to 0, but we still build the
checkasm binary. Update the check so it is config.h agnostic.
Signed-off-by: Kacper MichajÅow <[email protected]>
diff --git a/tests/checkasm/checkasm.h b/tests/checkasm/checkasm.h
index bd33aba263..05f74ca16b 100644
--- a/tests/checkasm/checkasm.h
+++ b/tests/checkasm/checkasm.h
@@ -44,7 +44,7 @@
#ifdef _WIN32
#include <windows.h>
-#if ARCH_X86_32
+#if defined(__i386__) || defined(_M_IX86)
#include <setjmp.h>
typedef jmp_buf checkasm_context;
#define checkasm_save_context()
checkasm_handle_signal(setjmp(checkasm_context_buf))
-----------------------------------------------------------------------
Summary of changes:
tests/checkasm/checkasm.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
hooks/post-receive
--
_______________________________________________
ffmpeg-cvslog mailing list -- [email protected]
To unsubscribe send an email to [email protected]