[CRT] Remove checkstk_ms from build (it was unused)
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sat, 17 Jul 2021 13:47:24 +0000 (15:47 +0200)
committerTimo Kreuzer <timo.kreuzer@reactos.org>
Tue, 20 Jul 2021 21:13:03 +0000 (23:13 +0200)
sdk/lib/crt/except/except.cmake

index 47ba7a4..7bc56b8 100644 (file)
@@ -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()