From: Mark Jansen Date: Sun, 18 Aug 2019 19:48:07 +0000 (+0200) Subject: [NTDLL_VISTA] Fix the build for arm X-Git-Tag: 0.4.14-dev~245 X-Git-Url: https://git.reactos.org/?p=reactos.git;a=commitdiff_plain;h=ca4b001544d0fdfc28cb0f69f0d4016c043b227d;hp=6872cef0da19596d39388b866190dd0c533cec2f [NTDLL_VISTA] Fix the build for arm --- diff --git a/dll/win32/ntdll_vista/CMakeLists.txt b/dll/win32/ntdll_vista/CMakeLists.txt index 4ec1c0ab70e..d0edd56c6c0 100644 --- a/dll/win32/ntdll_vista/CMakeLists.txt +++ b/dll/win32/ntdll_vista/CMakeLists.txt @@ -15,6 +15,9 @@ list(APPEND SOURCE add_library(ntdll_vista MODULE ${SOURCE}) set_module_type(ntdll_vista win32dll ENTRYPOINT DllMain 12) +if(ARCH STREQUAL "arm") + target_link_libraries(ntdll_vista chkstk) +endif() add_importlibs(ntdll_vista ntdll) add_dependencies(ntdll_vista psdk) add_cd_file(TARGET ntdll_vista DESTINATION reactos/system32 FOR all)