https://git.reactos.org/?p=reactos.git;a=commitdiff;h=7100a24fc314f4fe0ae58520f405d2fb4f88f3e2

commit 7100a24fc314f4fe0ae58520f405d2fb4f88f3e2
Author:     Timo Kreuzer <[email protected]>
AuthorDate: Sat Jul 17 15:47:24 2021 +0200
Commit:     Timo Kreuzer <[email protected]>
CommitDate: Tue Jul 20 23:13:03 2021 +0200

    [CRT] Remove checkstk_ms from build (it was unused)
---
 sdk/lib/crt/except/except.cmake | 10 ----------
 1 file changed, 10 deletions(-)

diff --git a/sdk/lib/crt/except/except.cmake b/sdk/lib/crt/except/except.cmake
index 47ba7a43b88..7bc56b8078e 100644
--- a/sdk/lib/crt/except/except.cmake
+++ b/sdk/lib/crt/except/except.cmake
@@ -3,10 +3,6 @@ if(ARCH STREQUAL "i386")
     list(APPEND LIBCNTPR_EXCEPT_ASM_SOURCE
         except/i386/chkstk_asm.s
     )
-    if(NOT MSVC)
-        list(APPEND LIBCNTPR_EXCEPT_ASM_SOURCE
-            except/i386/chkstk_ms.s)
-    endif()
     list(APPEND CRT_EXCEPT_ASM_SOURCE
         except/i386/chkesp.s
         except/i386/prolog.s
@@ -65,16 +61,10 @@ list(APPEND CRT_EXCEPT_SOURCE
 
 if(ARCH STREQUAL "i386")
     list(APPEND CHKSTK_ASM_SOURCE except/i386/chkstk_asm.s)
-    if(NOT MSVC)
-        list(APPEND CHKSTK_ASM_SOURCE except/i386/chkstk_ms.s)
-    endif()
 elseif(ARCH STREQUAL "amd64")
     list(APPEND CHKSTK_ASM_SOURCE except/amd64/chkstk_ms.s)
 elseif(ARCH STREQUAL "arm")
     list(APPEND CHKSTK_ASM_SOURCE except/arm/chkstk_asm.s)
-    if(NOT MSVC)
-        list(APPEND CHKSTK_ASM_SOURCE except/arm/chkstk_ms.s)
-    endif()
 elseif(ARCH STREQUAL "powerpc")
     list(APPEND CHKSTK_ASM_SOURCE except/powerpc/chkstk_asm.s)
 endif()

Reply via email to