From 7100a24fc314f4fe0ae58520f405d2fb4f88f3e2 Mon Sep 17 00:00:00 2001 From: Timo Kreuzer Date: Sat, 17 Jul 2021 15:47:24 +0200 Subject: [PATCH] [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()