From a644e7f5fd3064239928414803eda8748b911ee2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Herv=C3=A9=20Poussineau?= Date: Wed, 6 Jan 2021 16:36:48 +0100 Subject: [PATCH] [CRT/x64] Disable MSVCRT__setjmp function, which references non-existent function __wine_setjmpex _setjmp is already defined in sdk/lib/crt/setjmp/amd64/setjmp.s --- sdk/lib/crt/wine/except_x86_64.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/sdk/lib/crt/wine/except_x86_64.c b/sdk/lib/crt/wine/except_x86_64.c index e91b8628297..9e7676413de 100644 --- a/sdk/lib/crt/wine/except_x86_64.c +++ b/sdk/lib/crt/wine/except_x86_64.c @@ -674,11 +674,13 @@ unsigned int CDECL __CxxQueryExceptionSize(void) } +#ifndef __REACTOS__ /******************************************************************* * _setjmp (MSVCRT.@) */ __ASM_GLOBAL_FUNC( MSVCRT__setjmp, "jmp " __ASM_NAME("__wine_setjmpex") ); +#endif /******************************************************************* * longjmp (MSVCRT.@)