https://git.reactos.org/?p=reactos.git;a=commitdiff;h=724774505e0a2833de39f74966040aedd65f47a3
commit 724774505e0a2833de39f74966040aedd65f47a3 Author: Serge Gautherie <[email protected]> AuthorDate: Mon May 24 08:56:17 2021 +0200 Commit: Stanislav Motylkov <[email protected]> CommitDate: Tue Jan 11 20:52:34 2022 +0300 [CRT/arm64] Build wine/except_arm64.c Follow-up to 9efafd6 (0.4.14-dev-934). CORE-17518 --- sdk/lib/crt/wine/wine.cmake | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sdk/lib/crt/wine/wine.cmake b/sdk/lib/crt/wine/wine.cmake index 6a4346d64e3..d16da073c31 100644 --- a/sdk/lib/crt/wine/wine.cmake +++ b/sdk/lib/crt/wine/wine.cmake @@ -18,6 +18,10 @@ elseif(ARCH STREQUAL "arm") list(APPEND CRT_WINE_SOURCE wine/except_arm.c ) +elseif(ARCH STREQUAL "arm64") + list(APPEND CRT_WINE_SOURCE + wine/except_arm64.c + ) endif() # includes for wine code
